[ie/vevo] Restore extractors (#14203)
Partially reverts 6f4c1bb593
Authored by: seproDev
This commit is contained in:
parent
ed24640943
commit
d925e92b71
4 changed files with 365 additions and 1 deletions
|
|
@ -111,8 +111,12 @@ class MySpaceIE(InfoExtractor):
|
|||
search_data('stream-url'), search_data('hls-stream-url'),
|
||||
search_data('http-stream-url'))
|
||||
if not formats:
|
||||
vevo_id = search_data('vevo-id')
|
||||
youtube_id = search_data('youtube-id')
|
||||
if youtube_id:
|
||||
if vevo_id:
|
||||
self.to_screen(f'Vevo video detected: {vevo_id}')
|
||||
return self.url_result(f'vevo:{vevo_id}', ie='Vevo')
|
||||
elif youtube_id:
|
||||
self.to_screen(f'Youtube video detected: {youtube_id}')
|
||||
return self.url_result(youtube_id, ie='Youtube')
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue