[ffmpeg] fix adding metadata when using m3u8_native(fixes #8350)
This commit is contained in:
		
							parent
							
								
									50e989e263
								
							
						
					
					
						commit
						cf57433bbd
					
				
					 1 changed files with 4 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -391,6 +391,10 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
 | 
			
		|||
        for (name, value) in metadata.items():
 | 
			
		||||
            options.extend(['-metadata', '%s=%s' % (name, value)])
 | 
			
		||||
 | 
			
		||||
        # https://github.com/rg3/youtube-dl/issues/8350
 | 
			
		||||
        if info['protocol'] == 'm3u8_native':
 | 
			
		||||
            options.extend(['-bsf:a', 'aac_adtstoasc'])
 | 
			
		||||
 | 
			
		||||
        self._downloader.to_screen('[ffmpeg] Adding metadata to \'%s\'' % filename)
 | 
			
		||||
        self.run_ffmpeg(filename, temp_filename, options)
 | 
			
		||||
        os.remove(encodeFilename(filename))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue