mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-28 06:10:11 +09:00
use mp4 extension for patreon-hosted videos
This commit is contained in:
parent
456987e022
commit
271426aa58
@ -160,7 +160,8 @@ class PatreonIE(InfoExtractor):
|
|||||||
if post_file.get('name') == 'video':
|
if post_file.get('name') == 'video':
|
||||||
# single video embed
|
# single video embed
|
||||||
info.update({
|
info.update({
|
||||||
'url': post_file['url']
|
'ext': 'mp4',
|
||||||
|
'url': post_file['url'],
|
||||||
})
|
})
|
||||||
else:
|
else:
|
||||||
# video is attached as a file
|
# video is attached as a file
|
||||||
|
Loading…
Reference in New Issue
Block a user