github-account1111

Results 138 comments of github-account1111

I did 👍🏻 Just saying something as basic as playlists should probably be present in alpha builds, let alone version 1, let alone version 4.4.9.

> I'm sorry to inform you that this isn't a "basic" feature. You should be, because you're wrong. Playlists have been fundamental to music listening for ages.

I was the one that said basic in the first place. @enricocid just decided to reinterpret what I said for some reason.

It's all in the docs: https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst#extractorytdlmodule https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst#extractortwittervideos etc. For yt-dlp/youtube-dl, make sure you're using the Python module, not the exe.

According to https://github.com/mikf/gallery-dl/issues/462#issuecomment-548571035, Instagram is handled by youtube-dl/yt-dlp, and I'd imagine so do most sites that contain videos, but not sure. Why does that matter though?

The quality difference could be due to IG changing compression on their end (either using more aggressive algorithms on the original files or worse yet re-encoding the already compressed stuff)....

Postprocessors have the ability to utilize external tools to write metadata directly to files. https://github.com/mikf/gallery-dl/issues/374#issuecomment-945045349 explains nicely how to use Exiftool to achieve what you want, but for images, and...

Can this be done for videos too? Just generally all downloaded files? This is kinda what I was trying to achieve in #1884 - embed the post url into the...

@Hrxn this is insanely helpful! I tried: ``` "url-metadata": "gdl_file_url", "postprocessors": [ { "name" : "exec", "command": ["/path/to/exiftool-binary", "-overwrite_original", "-title={gdl_file_url}", "{_path[4:]}"] } ] ``` (had to use `{_path[4:]}` because it...

For some reason I assumed separators are customizable, but guess not. That's a pretty big bummer. I agree that this should be an option, but I'd go a step farther:...