mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-09 08:15:10 +01:00
[FFmpegVideoConvertor] Add gif to --recode-video
This commit is contained in:
parent
0b5546c723
commit
69f5fe45b9
2 changed files with 9 additions and 6 deletions
|
|
@ -538,7 +538,10 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
|
|||
|
||||
|
||||
class FFmpegVideoConvertorPP(FFmpegPostProcessor):
|
||||
SUPPORTED_EXTS = (*MEDIA_EXTENSIONS.common_video, *sorted(MEDIA_EXTENSIONS.common_audio + ('aac', 'vorbis')))
|
||||
SUPPORTED_EXTS = (
|
||||
*sorted((*MEDIA_EXTENSIONS.common_video, 'gif')),
|
||||
*sorted((*MEDIA_EXTENSIONS.common_audio, 'aac', 'vorbis')),
|
||||
)
|
||||
FORMAT_RE = create_mapping_re(SUPPORTED_EXTS)
|
||||
_ACTION = 'converting'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue