You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gallery-dl downloads youtube videos from tweets even when option twitter.videos is set to false. --filter "extension != 'mp4'" also doesn't work.
So i had to add this to config: "image-filter": "extension == 'jpg' or extension == 'png'", but it skips gifs.
Please add special option to skip yt vids, if possible.
The text was updated successfully, but these errors were encountered:
Skyofflad
changed the title
Twitter downloads youtube videos even when forbidden
[Twitter] Please add option to skip youtube videos
Mar 31, 2021
Youtube videos or links to other video platforms only come from Twitter cards and get downloaded with youtube-dl when cards is enabled. ebd142e changes that to only download those when videos is also enabled. (cards can include images like here)
"image-filter": "extension == 'jpg' or extension == 'png'", but it skips gifs.
How about "extension == 'jpg' or extension == 'png' or extension == 'gif'" to also include gifs? Or "extension in ('jpg', 'png', 'gif')" in short?
Gallery-dl downloads youtube videos from tweets even when option
twitter.videos
is set to false.--filter "extension != 'mp4'"
also doesn't work.So i had to add this to config:
"image-filter": "extension == 'jpg' or extension == 'png'"
, but it skips gifs.Please add special option to skip yt vids, if possible.
The text was updated successfully, but these errors were encountered: