1
0
Fork 0

[ie/vevo] Restore extractors (#14203)

Partially reverts 6f4c1bb593

Authored by: seproDev
This commit is contained in:
sepro 2025-08-31 00:41:52 +02:00 committed by GitHub
commit d925e92b71
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 365 additions and 1 deletions

View file

@ -90,6 +90,10 @@ class DisneyIE(InfoExtractor):
webpage, 'embed data'), video_id)
video_data = page_data['video']
for external in video_data.get('externals', []):
if external.get('source') == 'vevo':
return self.url_result('vevo:' + external['data_id'], 'Vevo')
video_id = video_data['id']
title = video_data['title']