mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 10:17:07 -05:00 
			
		
		
		
	Detect already merged videos
Without the '--keep-video' option the two files would be downloaded again and even using the option, ffmpeg would be run again, which for some videos can take a long time. We use a temporary file with ffmpeg so that the final file only exists if it success
This commit is contained in:
		@@ -580,9 +580,11 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
 | 
			
		||||
class FFmpegMergerPP(FFmpegPostProcessor):
 | 
			
		||||
    def run(self, info):
 | 
			
		||||
        filename = info['filepath']
 | 
			
		||||
        temp_filename = prepend_extension(filename, 'temp')
 | 
			
		||||
        args = ['-c', 'copy', '-map', '0:v:0', '-map', '1:a:0']
 | 
			
		||||
        self._downloader.to_screen('[ffmpeg] Merging formats into "%s"' % filename)
 | 
			
		||||
        self.run_ffmpeg_multiple_files(info['__files_to_merge'], filename, args)
 | 
			
		||||
        self.run_ffmpeg_multiple_files(info['__files_to_merge'], temp_filename, args)
 | 
			
		||||
        os.rename(encodeFilename(temp_filename), encodeFilename(filename))
 | 
			
		||||
        return info['__files_to_merge'], info
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user