mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[ffmpeg] fix adding metadata when using --hls-prefer-native(#8350)
This commit is contained in:
parent
1df4141196
commit
6fba62c87a
@ -392,7 +392,7 @@ def run(self, info):
|
||||
options.extend(['-metadata', '%s=%s' % (name, value)])
|
||||
|
||||
# https://github.com/rg3/youtube-dl/issues/8350
|
||||
if info['protocol'] == 'm3u8_native':
|
||||
if info['protocol'] == 'm3u8_native' or self._downloader.params.get('hls_prefer_native', False):
|
||||
options.extend(['-bsf:a', 'aac_adtstoasc'])
|
||||
|
||||
self._downloader.to_screen('[ffmpeg] Adding metadata to \'%s\'' % filename)
|
||||
|
Loading…
Reference in New Issue
Block a user