You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
l1ving_youtube-dl/youtube_dl/postprocessor
Yen Chi Hsuan 23495d6a39
Revert "[ffmpeg] Fix embedding subtitles (#9063)"
This reverts commit ccff2c404d.

Fixes #10081.

The new approach breaks embedding subtitles into video-only or
audio-only files. FFMpeg provides a trick: add '?' after the argument of
'-map' so that a missing stream is ignored. For example:

opts = [
    '-map', '0:v?',
    '-c:v', 'copy',
    '-map', '0:a?',
    '-c:a', 'copy',
    # other options...
]

Unfortunately, such a format is not implemented in avconv, either.
I guess adding '-ignore_unknown' if self.basename == 'ffmpeg' is the
best solution. However, the example mentioned in #9063 no longer serves
problematic files, so I can't test it. I'll reopen #9063 and wait for
another example so that I can test '-ignore_unknown'.
8 years ago
..
__init__.py Add fixup for media files produced by HlsNative downloader(fixes #4776) 8 years ago
common.py [postprocessor/common] Use 'self._downloader.params' instead of 'self.params' 9 years ago
embedthumbnail.py [postprocessor/embedthumbnail] Allow mkv to embed thumbnails 8 years ago
execafterdownload.py [compat] Rename shlex_quote and remove unused subprocess_check_output 8 years ago
ffmpeg.py Revert "[ffmpeg] Fix embedding subtitles (#9063)" 8 years ago
metadatafromtitle.py [refactor] Single quotes consistency 8 years ago
xattrpp.py [jython] Introduce compat_os_name 8 years ago