Parcourir la source

[external:ffmpeg] In test harness, limit to 10k download size

Otherwise, if you screw up a playlist test by including a playlist
dictionary key, you'll be there for eons while it downloads all the
files before erroring out.
John Hawkinson il y a 8 ans
Parent
commit
6d0fe752bf
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      youtube_dl/downloader/external.py

+ 4 - 0
youtube_dl/downloader/external.py

@@ -270,6 +270,10 @@ class FFmpegFD(ExternalFD):
                 args += ['-rtmp_live', 'live']
                 args += ['-rtmp_live', 'live']
 
 
         args += ['-i', url, '-c', 'copy']
         args += ['-i', url, '-c', 'copy']
+
+        if self.params.get('test', False):
+            args += ['-fs', compat_str(self._TEST_FILE_SIZE)] # -fs limit_size (output), expressed in bytes
+
         if protocol in ('m3u8', 'm3u8_native'):
         if protocol in ('m3u8', 'm3u8_native'):
             if self.params.get('hls_use_mpegts', False) or tmpfilename == '-':
             if self.params.get('hls_use_mpegts', False) or tmpfilename == '-':
                 args += ['-f', 'mpegts']
                 args += ['-f', 'mpegts']