mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[CinemassacreIE] Add live paramter to extracted info as a workaround
This commit is contained in:
parent
31366066bd
commit
0a43ddf320
1 changed files with 2 additions and 0 deletions
|
@ -65,6 +65,7 @@ def _real_extract(self, url):
|
|||
{
|
||||
'url': url,
|
||||
'play_path': 'mp4:' + sd_file,
|
||||
'live': True, # workaround
|
||||
'ext': 'flv',
|
||||
'format': 'sd',
|
||||
'format_id': 'sd',
|
||||
|
@ -72,6 +73,7 @@ def _real_extract(self, url):
|
|||
{
|
||||
'url': url,
|
||||
'play_path': 'mp4:' + hd_file,
|
||||
'live': True, # workaround
|
||||
'ext': 'flv',
|
||||
'format': 'hd',
|
||||
'format_id': 'hd',
|
||||
|
|
Loading…
Reference in a new issue