mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-21 05:44:02 -07:00
use mp4 extension for patreon-hosted videos
This commit is contained in:
parent
456987e022
commit
271426aa58
1 changed files with 2 additions and 1 deletions
|
@ -160,7 +160,8 @@ class PatreonIE(InfoExtractor):
|
|||
if post_file.get('name') == 'video':
|
||||
# single video embed
|
||||
info.update({
|
||||
'url': post_file['url']
|
||||
'ext': 'mp4',
|
||||
'url': post_file['url'],
|
||||
})
|
||||
else:
|
||||
# video is attached as a file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue