]> jfr.im git - yt-dlp.git/blame - youtube_dlc/postprocessor/ffmpeg.py
Merge pull request #57 from insaneracist/youtube-mix-fix
[yt-dlp.git] / youtube_dlc / postprocessor / ffmpeg.py
CommitLineData
3aa578ca
PH
1from __future__ import unicode_literals
2
e9fade72 3import io
496c1923
PH
4import os
5import subprocess
496c1923 6import time
fa2a36d9 7import re
496c1923
PH
8
9
10from .common import AudioConversionError, PostProcessor
11
8c25f81b 12from ..utils import (
f07b74fc 13 encodeArgument,
496c1923 14 encodeFilename,
95807118 15 get_exe_version,
48844745 16 is_outdated_version,
496c1923
PH
17 PostProcessingError,
18 prepend_extension,
19 shell_quote,
20 subtitles_filename,
bf6427d2 21 dfxp2srt,
39672624 22 ISO639Utils,
fa2a36d9 23 replace_extension,
496c1923
PH
24)
25
26
a755f825 27EXT_TO_OUT_FORMATS = {
21bfcd3d
PH
28 'aac': 'adts',
29 'flac': 'flac',
30 'm4a': 'ipod',
31 'mka': 'matroska',
32 'mkv': 'matroska',
33 'mpg': 'mpeg',
34 'ogv': 'ogg',
35 'ts': 'mpegts',
36 'wma': 'asf',
37 'wmv': 'asf',
38}
39ACODECS = {
40 'mp3': 'libmp3lame',
41 'aac': 'aac',
42 'flac': 'flac',
43 'm4a': 'aac',
d2ae7e24 44 'opus': 'libopus',
21bfcd3d
PH
45 'vorbis': 'libvorbis',
46 'wav': None,
a755f825 47}
48
49
496c1923
PH
50class FFmpegPostProcessorError(PostProcessingError):
51 pass
52
d799b47b 53
496c1923 54class FFmpegPostProcessor(PostProcessor):
d47aeb22 55 def __init__(self, downloader=None):
496c1923 56 PostProcessor.__init__(self, downloader)
73fac4e9 57 self._determine_executables()
496c1923 58
48844745 59 def check_version(self):
f740fae2 60 if not self.available:
3aa578ca 61 raise FFmpegPostProcessorError('ffmpeg or avconv not found. Please install one.')
48844745 62
65bf37ef 63 required_version = '10-0' if self.basename == 'avconv' else '1.0'
48844745 64 if is_outdated_version(
73fac4e9 65 self._versions[self.basename], required_version):
3aa578ca 66 warning = 'Your copy of %s is outdated, update %s to version %s or newer if you encounter any errors.' % (
73fac4e9 67 self.basename, self.basename, required_version)
6194bb14
PH
68 if self._downloader:
69 self._downloader.report_warning(warning)
48844745 70
496c1923 71 @staticmethod
73fac4e9
PH
72 def get_versions(downloader=None):
73 return FFmpegPostProcessor(downloader)._versions
6271f1ca 74
73fac4e9
PH
75 def _determine_executables(self):
76 programs = ['avprobe', 'avconv', 'ffmpeg', 'ffprobe']
d4a24f40 77 prefer_ffmpeg = True
73fac4e9 78
a64646e4
RA
79 def get_ffmpeg_version(path):
80 ver = get_exe_version(path, args=['-version'])
81 if ver:
82 regexs = [
cbdc688c 83 r'(?:\d+:)?([0-9.]+)-[0-9]+ubuntu[0-9.]+$', # Ubuntu, see [1]
5caa531a 84 r'n([0-9.]+)$', # Arch Linux
cbdc688c 85 # 1. http://www.ducea.com/2006/06/17/ubuntu-package-version-naming-explanation/
a64646e4
RA
86 ]
87 for regex in regexs:
88 mobj = re.match(regex, ver)
89 if mobj:
90 ver = mobj.group(1)
91 return ver
92
73fac4e9
PH
93 self.basename = None
94 self.probe_basename = None
95
96 self._paths = None
97 self._versions = None
98 if self._downloader:
d4a24f40 99 prefer_ffmpeg = self._downloader.params.get('prefer_ffmpeg', True)
73fac4e9
PH
100 location = self._downloader.params.get('ffmpeg_location')
101 if location is not None:
102 if not os.path.exists(location):
103 self._downloader.report_warning(
104 'ffmpeg-location %s does not exist! '
105 'Continuing without avconv/ffmpeg.' % (location))
106 self._versions = {}
107 return
108 elif not os.path.isdir(location):
109 basename = os.path.splitext(os.path.basename(location))[0]
110 if basename not in programs:
111 self._downloader.report_warning(
112 'Cannot identify executable %s, its basename should be one of %s. '
113 'Continuing without avconv/ffmpeg.' %
114 (location, ', '.join(programs)))
115 self._versions = {}
116 return None
117 location = os.path.dirname(os.path.abspath(location))
118 if basename in ('ffmpeg', 'ffprobe'):
119 prefer_ffmpeg = True
120
121 self._paths = dict(
122 (p, os.path.join(location, p)) for p in programs)
123 self._versions = dict(
a64646e4 124 (p, get_ffmpeg_version(self._paths[p])) for p in programs)
73fac4e9
PH
125 if self._versions is None:
126 self._versions = dict(
a64646e4 127 (p, get_ffmpeg_version(p)) for p in programs)
73fac4e9
PH
128 self._paths = dict((p, p) for p in programs)
129
d4a24f40 130 if prefer_ffmpeg is False:
d28b5171 131 prefs = ('avconv', 'ffmpeg')
d4a24f40
S
132 else:
133 prefs = ('ffmpeg', 'avconv')
d28b5171
PH
134 for p in prefs:
135 if self._versions[p]:
73fac4e9
PH
136 self.basename = p
137 break
76b1bd67 138
d4a24f40 139 if prefer_ffmpeg is False:
1a253e13 140 prefs = ('avprobe', 'ffprobe')
d4a24f40
S
141 else:
142 prefs = ('ffprobe', 'avprobe')
1a253e13
PH
143 for p in prefs:
144 if self._versions[p]:
73fac4e9
PH
145 self.probe_basename = p
146 break
147
f740fae2 148 @property
73fac4e9
PH
149 def available(self):
150 return self.basename is not None
1a253e13 151
73fac4e9
PH
152 @property
153 def executable(self):
154 return self._paths[self.basename]
155
3da4b313
JMF
156 @property
157 def probe_available(self):
158 return self.probe_basename is not None
159
73fac4e9
PH
160 @property
161 def probe_executable(self):
162 return self._paths[self.probe_basename]
76b1bd67 163
30d9e209 164 def get_audio_codec(self, path):
eb35b163
RA
165 if not self.probe_available and not self.available:
166 raise PostProcessingError('ffprobe/avprobe and ffmpeg/avconv not found. Please install one.')
30d9e209 167 try:
eb35b163
RA
168 if self.probe_available:
169 cmd = [
170 encodeFilename(self.probe_executable, True),
171 encodeArgument('-show_streams')]
172 else:
173 cmd = [
174 encodeFilename(self.executable, True),
175 encodeArgument('-i')]
176 cmd.append(encodeFilename(self._ffmpeg_filename_argument(path), True))
30d9e209 177 if self._downloader.params.get('verbose', False):
eb35b163
RA
178 self._downloader.to_screen(
179 '[debug] %s command line: %s' % (self.basename, shell_quote(cmd)))
180 handle = subprocess.Popen(
181 cmd, stderr=subprocess.PIPE,
182 stdout=subprocess.PIPE, stdin=subprocess.PIPE)
183 stdout_data, stderr_data = handle.communicate()
184 expected_ret = 0 if self.probe_available else 1
185 if handle.wait() != expected_ret:
30d9e209
RA
186 return None
187 except (IOError, OSError):
188 return None
eb35b163
RA
189 output = (stdout_data if self.probe_available else stderr_data).decode('ascii', 'ignore')
190 if self.probe_available:
191 audio_codec = None
192 for line in output.split('\n'):
193 if line.startswith('codec_name='):
194 audio_codec = line.split('=')[1].strip()
195 elif line.strip() == 'codec_type=audio' and audio_codec is not None:
196 return audio_codec
197 else:
198 # Stream #FILE_INDEX:STREAM_INDEX[STREAM_ID](LANGUAGE): CODEC_TYPE: CODEC_NAME
199 mobj = re.search(
200 r'Stream\s*#\d+:\d+(?:\[0x[0-9a-f]+\])?(?:\([a-z]{3}\))?:\s*Audio:\s*([0-9a-z]+)',
201 output)
202 if mobj:
203 return mobj.group(1)
30d9e209
RA
204 return None
205
496c1923 206 def run_ffmpeg_multiple_files(self, input_paths, out_path, opts):
48844745 207 self.check_version()
496c1923 208
52afb2ac
PH
209 oldest_mtime = min(
210 os.stat(encodeFilename(path)).st_mtime for path in input_paths)
43bc8890 211
15006fed
S
212 opts += self._configuration_args()
213
496c1923
PH
214 files_cmd = []
215 for path in input_paths:
8a7bbd16
JMF
216 files_cmd.extend([
217 encodeArgument('-i'),
218 encodeFilename(self._ffmpeg_filename_argument(path), True)
219 ])
ce52c7c1
S
220 cmd = [encodeFilename(self.executable, True), encodeArgument('-y')]
221 # avconv does not have repeat option
222 if self.basename == 'ffmpeg':
223 cmd += [encodeArgument('-loglevel'), encodeArgument('repeat+info')]
3089bc74
S
224 cmd += (files_cmd
225 + [encodeArgument(o) for o in opts]
226 + [encodeFilename(self._ffmpeg_filename_argument(out_path), True)])
496c1923
PH
227
228 if self._downloader.params.get('verbose', False):
3aa578ca 229 self._downloader.to_screen('[debug] ffmpeg command line: %s' % shell_quote(cmd))
cffcbc02 230 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
62fec3b2 231 stdout, stderr = p.communicate()
496c1923
PH
232 if p.returncode != 0:
233 stderr = stderr.decode('utf-8', 'replace')
234 msg = stderr.strip().split('\n')[-1]
235 raise FFmpegPostProcessorError(msg)
dd29eb7f 236 self.try_utime(out_path, oldest_mtime, oldest_mtime)
cc55d088 237
496c1923
PH
238 def run_ffmpeg(self, path, out_path, opts):
239 self.run_ffmpeg_multiple_files([path], out_path, opts)
240
241 def _ffmpeg_filename_argument(self, fn):
8a7bbd16
JMF
242 # Always use 'file:' because the filename may contain ':' (ffmpeg
243 # interprets that as a protocol) or can start with '-' (-- is broken in
244 # ffmpeg, see https://ffmpeg.org/trac/ffmpeg/ticket/2127 for details)
b9f2fdd3 245 # Also leave '-' intact in order not to break streaming to stdout.
d868f43c 246 return 'file:' + fn if fn != '-' else fn
496c1923
PH
247
248
249class FFmpegExtractAudioPP(FFmpegPostProcessor):
250 def __init__(self, downloader=None, preferredcodec=None, preferredquality=None, nopostoverwrites=False):
251 FFmpegPostProcessor.__init__(self, downloader)
252 if preferredcodec is None:
253 preferredcodec = 'best'
254 self._preferredcodec = preferredcodec
255 self._preferredquality = preferredquality
256 self._nopostoverwrites = nopostoverwrites
257
496c1923 258 def run_ffmpeg(self, path, out_path, codec, more_opts):
496c1923
PH
259 if codec is None:
260 acodec_opts = []
261 else:
262 acodec_opts = ['-acodec', codec]
263 opts = ['-vn'] + acodec_opts + more_opts
264 try:
265 FFmpegPostProcessor.run_ffmpeg(self, path, out_path, opts)
266 except FFmpegPostProcessorError as err:
267 raise AudioConversionError(err.msg)
268
269 def run(self, information):
270 path = information['filepath']
271
272 filecodec = self.get_audio_codec(path)
273 if filecodec is None:
3aa578ca 274 raise PostProcessingError('WARNING: unable to obtain file audio codec with ffprobe')
496c1923
PH
275
276 more_opts = []
277 if self._preferredcodec == 'best' or self._preferredcodec == filecodec or (self._preferredcodec == 'm4a' and filecodec == 'aac'):
278 if filecodec == 'aac' and self._preferredcodec in ['m4a', 'best']:
279 # Lossless, but in another container
280 acodec = 'copy'
281 extension = 'm4a'
467d3c9a 282 more_opts = ['-bsf:a', 'aac_adtstoasc']
21bfcd3d 283 elif filecodec in ['aac', 'flac', 'mp3', 'vorbis', 'opus']:
496c1923
PH
284 # Lossless if possible
285 acodec = 'copy'
286 extension = filecodec
287 if filecodec == 'aac':
288 more_opts = ['-f', 'adts']
289 if filecodec == 'vorbis':
290 extension = 'ogg'
291 else:
292 # MP3 otherwise.
293 acodec = 'libmp3lame'
294 extension = 'mp3'
295 more_opts = []
296 if self._preferredquality is not None:
297 if int(self._preferredquality) < 10:
467d3c9a 298 more_opts += ['-q:a', self._preferredquality]
496c1923 299 else:
467d3c9a 300 more_opts += ['-b:a', self._preferredquality + 'k']
496c1923 301 else:
21bfcd3d
PH
302 # We convert the audio (lossy if codec is lossy)
303 acodec = ACODECS[self._preferredcodec]
496c1923
PH
304 extension = self._preferredcodec
305 more_opts = []
306 if self._preferredquality is not None:
307 # The opus codec doesn't support the -aq option
308 if int(self._preferredquality) < 10 and extension != 'opus':
467d3c9a 309 more_opts += ['-q:a', self._preferredquality]
496c1923 310 else:
467d3c9a 311 more_opts += ['-b:a', self._preferredquality + 'k']
496c1923
PH
312 if self._preferredcodec == 'aac':
313 more_opts += ['-f', 'adts']
314 if self._preferredcodec == 'm4a':
467d3c9a 315 more_opts += ['-bsf:a', 'aac_adtstoasc']
496c1923
PH
316 if self._preferredcodec == 'vorbis':
317 extension = 'ogg'
318 if self._preferredcodec == 'wav':
319 extension = 'wav'
320 more_opts += ['-f', 'wav']
321
3aa578ca 322 prefix, sep, ext = path.rpartition('.') # not os.path.splitext, since the latter does not work on unicode in all setups
496c1923 323 new_path = prefix + sep + extension
0b94dbb1 324
2273e2c5
PM
325 information['filepath'] = new_path
326 information['ext'] = extension
496c1923
PH
327
328 # If we download foo.mp3 and convert it to... foo.mp3, then don't delete foo.mp3, silly.
3089bc74
S
329 if (new_path == path
330 or (self._nopostoverwrites and os.path.exists(encodeFilename(new_path)))):
9750e7d7 331 self._downloader.to_screen('[ffmpeg] Post-process file %s exists, skipping' % new_path)
592e97e8 332 return [], information
496c1923
PH
333
334 try:
deb85c32 335 self._downloader.to_screen('[ffmpeg] Destination: ' + new_path)
ce81b141 336 self.run_ffmpeg(path, new_path, acodec, more_opts)
70a1165b
JMF
337 except AudioConversionError as e:
338 raise PostProcessingError(
339 'audio conversion failed: ' + e.msg)
340 except Exception:
341 raise PostProcessingError('error running ' + self.basename)
496c1923
PH
342
343 # Try to update the date time for extracted audio file.
344 if information.get('filetime') is not None:
dd29eb7f
S
345 self.try_utime(
346 new_path, time.time(), information['filetime'],
347 errnote='Cannot update utime of audio file')
496c1923 348
592e97e8 349 return [path], information
496c1923
PH
350
351
efe87a10
FS
352class FFmpegVideoRemuxerPP(FFmpegPostProcessor):
353 def __init__(self, downloader=None, preferedformat=None):
354 super(FFmpegVideoRemuxerPP, self).__init__(downloader)
355 self._preferedformat = preferedformat
356
357 def run(self, information):
358 path = information['filepath']
359 if information['ext'] == self._preferedformat:
360 self._downloader.to_screen('[ffmpeg] Not remuxing video file %s - already is in target format %s' % (path, self._preferedformat))
361 return [], information
362 options = ['-c', 'copy']
363 prefix, sep, ext = path.rpartition('.')
364 outpath = prefix + sep + self._preferedformat
365 self._downloader.to_screen('[' + 'ffmpeg' + '] Remuxing video from %s to %s, Destination: ' % (information['ext'], self._preferedformat) + outpath)
366 self.run_ffmpeg(path, outpath, options)
367 information['filepath'] = outpath
368 information['format'] = self._preferedformat
369 information['ext'] = self._preferedformat
370 return [path], information
371
372
4f026faf 373class FFmpegVideoConvertorPP(FFmpegPostProcessor):
5f6a1245 374 def __init__(self, downloader=None, preferedformat=None):
4f026faf 375 super(FFmpegVideoConvertorPP, self).__init__(downloader)
5f6a1245 376 self._preferedformat = preferedformat
496c1923
PH
377
378 def run(self, information):
379 path = information['filepath']
496c1923 380 if information['ext'] == self._preferedformat:
3aa578ca 381 self._downloader.to_screen('[ffmpeg] Not converting video file %s - already is in target format %s' % (path, self._preferedformat))
592e97e8 382 return [], information
15006fed
S
383 options = []
384 if self._preferedformat == 'avi':
385 options.extend(['-c:v', 'libxvid', '-vtag', 'XVID'])
386 prefix, sep, ext = path.rpartition('.')
387 outpath = prefix + sep + self._preferedformat
3aa578ca 388 self._downloader.to_screen('[' + 'ffmpeg' + '] Converting video from %s to %s, Destination: ' % (information['ext'], self._preferedformat) + outpath)
d84f1d14 389 self.run_ffmpeg(path, outpath, options)
496c1923
PH
390 information['filepath'] = outpath
391 information['format'] = self._preferedformat
f72b0a60 392 information['ext'] = self._preferedformat
592e97e8 393 return [path], information
496c1923
PH
394
395
396class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
496c1923 397 def run(self, information):
40025ee2
S
398 if information['ext'] not in ('mp4', 'webm', 'mkv'):
399 self._downloader.to_screen('[ffmpeg] Subtitles can only be embedded in mp4, webm or mkv files')
592e97e8 400 return [], information
c84dd8a9
JMF
401 subtitles = information.get('requested_subtitles')
402 if not subtitles:
3aa578ca 403 self._downloader.to_screen('[ffmpeg] There aren\'t any subtitles to embed')
592e97e8 404 return [], information
496c1923 405
496c1923 406 filename = information['filepath']
40025ee2
S
407
408 ext = information['ext']
409 sub_langs = []
410 sub_filenames = []
411 webm_vtt_warn = False
412
413 for lang, sub_info in subtitles.items():
414 sub_ext = sub_info['ext']
415 if ext != 'webm' or ext == 'webm' and sub_ext == 'vtt':
416 sub_langs.append(lang)
824fa511 417 sub_filenames.append(subtitles_filename(filename, lang, sub_ext, ext))
40025ee2
S
418 else:
419 if not webm_vtt_warn and ext == 'webm' and sub_ext != 'vtt':
420 webm_vtt_warn = True
421 self._downloader.to_screen('[ffmpeg] Only WebVTT subtitles can be embedded in webm files')
422
423 if not sub_langs:
424 return [], information
425
14523ed9 426 input_files = [filename] + sub_filenames
496c1923 427
e205db3b 428 opts = [
23495d6a
YCH
429 '-map', '0',
430 '-c', 'copy',
e205db3b
JMF
431 # Don't copy the existing subtitles, we may be running the
432 # postprocessor a second time
433 '-map', '-0:s',
7f903dd8
T
434 # Don't copy Apple TV chapters track, bin_data (see #19042, #19024,
435 # https://trac.ffmpeg.org/ticket/6016)
436 '-map', '-0:d',
e205db3b 437 ]
083c1bb9
N
438 if information['ext'] == 'mp4':
439 opts += ['-c:s', 'mov_text']
496c1923 440 for (i, lang) in enumerate(sub_langs):
2875cf01 441 opts.extend(['-map', '%d:0' % (i + 1)])
04fb6928
S
442 lang_code = ISO639Utils.short2long(lang) or lang
443 opts.extend(['-metadata:s:s:%d' % i, 'language=%s' % lang_code])
496c1923 444
2875cf01 445 temp_filename = prepend_extension(filename, 'temp')
3aa578ca 446 self._downloader.to_screen('[ffmpeg] Embedding subtitles in \'%s\'' % filename)
496c1923
PH
447 self.run_ffmpeg_multiple_files(input_files, temp_filename, opts)
448 os.remove(encodeFilename(filename))
449 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
450
14523ed9 451 return sub_filenames, information
496c1923
PH
452
453
454class FFmpegMetadataPP(FFmpegPostProcessor):
455 def run(self, info):
456 metadata = {}
4bd143a3
S
457
458 def add(meta_list, info_list=None):
459 if not info_list:
460 info_list = meta_list
461 if not isinstance(meta_list, (list, tuple)):
462 meta_list = (meta_list,)
463 if not isinstance(info_list, (list, tuple)):
464 info_list = (info_list,)
465 for info_f in info_list:
466 if info.get(info_f) is not None:
467 for meta_f in meta_list:
468 metadata[meta_f] = info[info_f]
469 break
470
2791e80b
S
471 # See [1-4] for some info on media metadata/metadata supported
472 # by ffmpeg.
473 # 1. https://kdenlive.org/en/project/adding-meta-data-to-mp4-video/
474 # 2. https://wiki.multimedia.cx/index.php/FFmpeg_Metadata
475 # 3. https://kodi.wiki/view/Video_file_tagging
476 # 4. http://atomicparsley.sourceforge.net/mpeg-4files.html
477
4bd143a3
S
478 add('title', ('track', 'title'))
479 add('date', 'upload_date')
480 add(('description', 'comment'), 'description')
481 add('purl', 'webpage_url')
482 add('track', 'track_number')
483 add('artist', ('artist', 'creator', 'uploader', 'uploader_id'))
484 add('genre')
485 add('album')
486 add('album_artist')
487 add('disc', 'disc_number')
2791e80b
S
488 add('show', 'series')
489 add('season_number')
490 add('episode_id', ('episode', 'episode_id'))
491 add('episode_sort', 'episode_number')
496c1923
PH
492
493 if not metadata:
3aa578ca 494 self._downloader.to_screen('[ffmpeg] There isn\'t any metadata to add')
592e97e8 495 return [], info
496c1923
PH
496
497 filename = info['filepath']
498 temp_filename = prepend_extension(filename, 'temp')
fa2a36d9 499 in_filenames = [filename]
d03cfdce 500 options = ['-map', '0']
496c1923 501
3aa578ca 502 if info['ext'] == 'm4a':
fa2a36d9 503 options.extend(['-vn', '-acodec', 'copy'])
39c68260 504 else:
fa2a36d9 505 options.extend(['-c', 'copy'])
39c68260 506
496c1923
PH
507 for (name, value) in metadata.items():
508 options.extend(['-metadata', '%s=%s' % (name, value)])
509
fa2a36d9 510 chapters = info.get('chapters', [])
511 if chapters:
5192ee17 512 metadata_filename = replace_extension(filename, 'meta')
fa2a36d9 513 with io.open(metadata_filename, 'wt', encoding='utf-8') as f:
514 def ffmpeg_escape(text):
515 return re.sub(r'(=|;|#|\\|\n)', r'\\\1', text)
516
517 metadata_file_content = ';FFMETADATA1\n'
518 for chapter in chapters:
519 metadata_file_content += '[CHAPTER]\nTIMEBASE=1/1000\n'
520 metadata_file_content += 'START=%d\n' % (chapter['start_time'] * 1000)
521 metadata_file_content += 'END=%d\n' % (chapter['end_time'] * 1000)
522 chapter_title = chapter.get('title')
523 if chapter_title:
524 metadata_file_content += 'title=%s\n' % ffmpeg_escape(chapter_title)
525 f.write(metadata_file_content)
526 in_filenames.append(metadata_filename)
527 options.extend(['-map_metadata', '1'])
528
3aa578ca 529 self._downloader.to_screen('[ffmpeg] Adding metadata to \'%s\'' % filename)
fa2a36d9 530 self.run_ffmpeg_multiple_files(in_filenames, temp_filename, options)
531 if chapters:
532 os.remove(metadata_filename)
496c1923
PH
533 os.remove(encodeFilename(filename))
534 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
592e97e8 535 return [], info
496c1923
PH
536
537
538class FFmpegMergerPP(FFmpegPostProcessor):
539 def run(self, info):
540 filename = info['filepath']
5b5fbc08 541 temp_filename = prepend_extension(filename, 'temp')
d03cfdce 542 args = ['-c', 'copy']
543 for (i, fmt) in enumerate(info['requested_formats']):
544 if fmt.get('acodec') != 'none':
545 args.extend(['-map', '%u:a:0' % (i)])
546 if fmt.get('vcodec') != 'none':
547 args.extend(['-map', '%u:v:0' % (i)])
3aa578ca 548 self._downloader.to_screen('[ffmpeg] Merging formats into "%s"' % filename)
5b5fbc08
JMF
549 self.run_ffmpeg_multiple_files(info['__files_to_merge'], temp_filename, args)
550 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
d47aeb22 551 return info['__files_to_merge'], info
496c1923 552
13763ce5
S
553 def can_merge(self):
554 # TODO: figure out merge-capable ffmpeg version
555 if self.basename != 'avconv':
556 return True
557
558 required_version = '10-0'
559 if is_outdated_version(
560 self._versions[self.basename], required_version):
561 warning = ('Your copy of %s is outdated and unable to properly mux separate video and audio files, '
cefecac1 562 'youtube-dlc will download single file media. '
13763ce5
S
563 'Update %s to version %s or newer to fix this.') % (
564 self.basename, self.basename, required_version)
565 if self._downloader:
566 self._downloader.report_warning(warning)
567 return False
568 return True
569
0c14e2fb 570
6271f1ca
PH
571class FFmpegFixupStretchedPP(FFmpegPostProcessor):
572 def run(self, info):
573 stretched_ratio = info.get('stretched_ratio')
574 if stretched_ratio is None or stretched_ratio == 1:
592e97e8 575 return [], info
6271f1ca
PH
576
577 filename = info['filepath']
578 temp_filename = prepend_extension(filename, 'temp')
579
580 options = ['-c', 'copy', '-aspect', '%f' % stretched_ratio]
581 self._downloader.to_screen('[ffmpeg] Fixing aspect ratio in "%s"' % filename)
582 self.run_ffmpeg(filename, temp_filename, options)
583
584 os.remove(encodeFilename(filename))
585 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
586
592e97e8 587 return [], info
62cd676c
PH
588
589
590class FFmpegFixupM4aPP(FFmpegPostProcessor):
591 def run(self, info):
592 if info.get('container') != 'm4a_dash':
592e97e8 593 return [], info
62cd676c
PH
594
595 filename = info['filepath']
596 temp_filename = prepend_extension(filename, 'temp')
597
598 options = ['-c', 'copy', '-f', 'mp4']
599 self._downloader.to_screen('[ffmpeg] Correcting container in "%s"' % filename)
600 self.run_ffmpeg(filename, temp_filename, options)
601
602 os.remove(encodeFilename(filename))
603 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
604
592e97e8 605 return [], info
e9fade72
JMF
606
607
f17f8651 608class FFmpegFixupM3u8PP(FFmpegPostProcessor):
609 def run(self, info):
610 filename = info['filepath']
30d9e209
RA
611 if self.get_audio_codec(filename) == 'aac':
612 temp_filename = prepend_extension(filename, 'temp')
f17f8651 613
30d9e209 614 options = ['-c', 'copy', '-f', 'mp4', '-bsf:a', 'aac_adtstoasc']
a02682fd 615 self._downloader.to_screen('[ffmpeg] Fixing malformed AAC bitstream in "%s"' % filename)
30d9e209 616 self.run_ffmpeg(filename, temp_filename, options)
f17f8651 617
30d9e209
RA
618 os.remove(encodeFilename(filename))
619 os.rename(encodeFilename(temp_filename), encodeFilename(filename))
f17f8651 620 return [], info
621
622
e9fade72
JMF
623class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor):
624 def __init__(self, downloader=None, format=None):
625 super(FFmpegSubtitlesConvertorPP, self).__init__(downloader)
626 self.format = format
627
628 def run(self, info):
629 subs = info.get('requested_subtitles')
630 filename = info['filepath']
631 new_ext = self.format
632 new_format = new_ext
633 if new_format == 'vtt':
634 new_format = 'webvtt'
635 if subs is None:
636 self._downloader.to_screen('[ffmpeg] There aren\'t any subtitles to convert')
592e97e8 637 return [], info
e9fade72 638 self._downloader.to_screen('[ffmpeg] Converting subtitles')
e04398e3 639 sub_filenames = []
e9fade72
JMF
640 for lang, sub in subs.items():
641 ext = sub['ext']
642 if ext == new_ext:
643 self._downloader.to_screen(
0f57447d 644 '[ffmpeg] Subtitle file for %s is already in the requested format' % new_ext)
e9fade72 645 continue
824fa511 646 old_file = subtitles_filename(filename, lang, ext, info.get('ext'))
e04398e3 647 sub_filenames.append(old_file)
824fa511 648 new_file = subtitles_filename(filename, lang, new_ext, info.get('ext'))
bf6427d2 649
40fcba5e 650 if ext in ('dfxp', 'ttml', 'tt'):
bf6427d2
YCH
651 self._downloader.report_warning(
652 'You have requested to convert dfxp (TTML) subtitles into another format, '
653 'which results in style information loss')
654
e04398e3 655 dfxp_file = old_file
824fa511 656 srt_file = subtitles_filename(filename, lang, 'srt', info.get('ext'))
bf6427d2 657
3869028f 658 with open(dfxp_file, 'rb') as f:
bf6427d2
YCH
659 srt_data = dfxp2srt(f.read())
660
661 with io.open(srt_file, 'wt', encoding='utf-8') as f:
662 f.write(srt_data)
7e62c2eb 663 old_file = srt_file
bf6427d2 664
bf6427d2
YCH
665 subs[lang] = {
666 'ext': 'srt',
667 'data': srt_data
668 }
669
670 if new_ext == 'srt':
671 continue
7b8b007c
JMF
672 else:
673 sub_filenames.append(srt_file)
bf6427d2 674
e04398e3 675 self.run_ffmpeg(old_file, new_file, ['-f', new_format])
e9fade72
JMF
676
677 with io.open(new_file, 'rt', encoding='utf-8') as f:
678 subs[lang] = {
3547d265 679 'ext': new_ext,
e9fade72
JMF
680 'data': f.read(),
681 }
682
e04398e3 683 return sub_filenames, info