mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-08-17 09:58:29 +00:00
AdobeTVVideoIE
This commit is contained in:
parent
1b12d01d11
commit
4b709baeac
@ -84,9 +84,10 @@ def _parse_video_data(self, video_data):
|
|||||||
|
|
||||||
|
|
||||||
class AdobeTVEmbedIE(AdobeTVBaseIE):
|
class AdobeTVEmbedIE(AdobeTVBaseIE):
|
||||||
|
_WORKING = False
|
||||||
IE_NAME = 'adobetv:embed'
|
IE_NAME = 'adobetv:embed'
|
||||||
_VALID_URL = r'https?://tv\.adobe\.com/embed/\d+/(?P<id>\d+)'
|
_VALID_URL = r'https?://tv\.adobe\.com/embed/\d+/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'https://tv.adobe.com/embed/22/4153',
|
'url': 'https://tv.adobe.com/embed/22/4153',
|
||||||
'md5': 'c8c0461bf04d54574fc2b4d07ac6783a',
|
'md5': 'c8c0461bf04d54574fc2b4d07ac6783a',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -94,12 +95,12 @@ class AdobeTVEmbedIE(AdobeTVBaseIE):
|
|||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'title': 'Creating Graphics Optimized for BlackBerry',
|
'title': 'Creating Graphics Optimized for BlackBerry',
|
||||||
'description': 'md5:eac6e8dced38bdaae51cd94447927459',
|
'description': 'md5:eac6e8dced38bdaae51cd94447927459',
|
||||||
'thumbnail': r're:https?://.*\.jpg$',
|
'thumbnail': r're:https?://.+\.jpg',
|
||||||
'upload_date': '20091109',
|
'upload_date': '20091109',
|
||||||
'duration': 377,
|
'duration': 377,
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
}
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
@ -110,10 +111,10 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
|
|
||||||
class AdobeTVIE(AdobeTVBaseIE):
|
class AdobeTVIE(AdobeTVBaseIE):
|
||||||
|
_WORKING = False
|
||||||
IE_NAME = 'adobetv'
|
IE_NAME = 'adobetv'
|
||||||
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?watch/(?P<show_urlname>[^/]+)/(?P<id>[^/]+)'
|
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?watch/(?P<show_urlname>[^/]+)/(?P<id>[^/]+)'
|
||||||
|
_TESTS = [{
|
||||||
_TEST = {
|
|
||||||
'url': 'http://tv.adobe.com/watch/the-complete-picture-with-julieanne-kost/quick-tip-how-to-draw-a-circle-around-an-object-in-photoshop/',
|
'url': 'http://tv.adobe.com/watch/the-complete-picture-with-julieanne-kost/quick-tip-how-to-draw-a-circle-around-an-object-in-photoshop/',
|
||||||
'md5': '9bc5727bcdd55251f35ad311ca74fa1e',
|
'md5': '9bc5727bcdd55251f35ad311ca74fa1e',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -121,12 +122,12 @@ class AdobeTVIE(AdobeTVBaseIE):
|
|||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Quick Tip - How to Draw a Circle Around an Object in Photoshop',
|
'title': 'Quick Tip - How to Draw a Circle Around an Object in Photoshop',
|
||||||
'description': 'md5:99ec318dc909d7ba2a1f2b038f7d2311',
|
'description': 'md5:99ec318dc909d7ba2a1f2b038f7d2311',
|
||||||
'thumbnail': r're:https?://.*\.jpg$',
|
'thumbnail': r're:https?://.+\.jpg',
|
||||||
'upload_date': '20110914',
|
'upload_date': '20110914',
|
||||||
'duration': 60,
|
'duration': 60,
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
}
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
language, show_urlname, urlname = self._match_valid_url(url).groups()
|
language, show_urlname, urlname = self._match_valid_url(url).groups()
|
||||||
@ -159,10 +160,10 @@ def _extract_playlist_entries(self, display_id, query):
|
|||||||
|
|
||||||
|
|
||||||
class AdobeTVShowIE(AdobeTVPlaylistBaseIE):
|
class AdobeTVShowIE(AdobeTVPlaylistBaseIE):
|
||||||
|
_WORKING = False
|
||||||
IE_NAME = 'adobetv:show'
|
IE_NAME = 'adobetv:show'
|
||||||
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?show/(?P<id>[^/]+)'
|
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?show/(?P<id>[^/]+)'
|
||||||
|
_TESTS = [{
|
||||||
_TEST = {
|
|
||||||
'url': 'http://tv.adobe.com/show/the-complete-picture-with-julieanne-kost',
|
'url': 'http://tv.adobe.com/show/the-complete-picture-with-julieanne-kost',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '36',
|
'id': '36',
|
||||||
@ -170,7 +171,7 @@ class AdobeTVShowIE(AdobeTVPlaylistBaseIE):
|
|||||||
'description': 'md5:fa50867102dcd1aa0ddf2ab039311b27',
|
'description': 'md5:fa50867102dcd1aa0ddf2ab039311b27',
|
||||||
},
|
},
|
||||||
'playlist_mincount': 136,
|
'playlist_mincount': 136,
|
||||||
}
|
}]
|
||||||
_RESOURCE = 'episode'
|
_RESOURCE = 'episode'
|
||||||
_process_data = AdobeTVBaseIE._parse_video_data
|
_process_data = AdobeTVBaseIE._parse_video_data
|
||||||
|
|
||||||
@ -195,16 +196,16 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
|
|
||||||
class AdobeTVChannelIE(AdobeTVPlaylistBaseIE):
|
class AdobeTVChannelIE(AdobeTVPlaylistBaseIE):
|
||||||
|
_WORKING = False
|
||||||
IE_NAME = 'adobetv:channel'
|
IE_NAME = 'adobetv:channel'
|
||||||
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?channel/(?P<id>[^/]+)(?:/(?P<category_urlname>[^/]+))?'
|
_VALID_URL = r'https?://tv\.adobe\.com/(?:(?P<language>fr|de|es|jp)/)?channel/(?P<id>[^/]+)(?:/(?P<category_urlname>[^/]+))?'
|
||||||
|
_TESTS = [{
|
||||||
_TEST = {
|
|
||||||
'url': 'http://tv.adobe.com/channel/development',
|
'url': 'http://tv.adobe.com/channel/development',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'development',
|
'id': 'development',
|
||||||
},
|
},
|
||||||
'playlist_mincount': 96,
|
'playlist_mincount': 96,
|
||||||
}
|
}]
|
||||||
_RESOURCE = 'show'
|
_RESOURCE = 'show'
|
||||||
|
|
||||||
def _process_data(self, show_data):
|
def _process_data(self, show_data):
|
||||||
@ -231,8 +232,7 @@ class AdobeTVVideoIE(AdobeTVBaseIE):
|
|||||||
IE_NAME = 'adobetv:video'
|
IE_NAME = 'adobetv:video'
|
||||||
_VALID_URL = r'https?://video\.tv\.adobe\.com/v/(?P<id>\d+)'
|
_VALID_URL = r'https?://video\.tv\.adobe\.com/v/(?P<id>\d+)'
|
||||||
_EMBED_REGEX = [r'<iframe[^>]+src=[\'"](?P<url>(?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]']
|
_EMBED_REGEX = [r'<iframe[^>]+src=[\'"](?P<url>(?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]']
|
||||||
|
_TESTS = [{
|
||||||
_TEST = {
|
|
||||||
# From https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners
|
# From https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners
|
||||||
'url': 'https://video.tv.adobe.com/v/2456/',
|
'url': 'https://video.tv.adobe.com/v/2456/',
|
||||||
'md5': '43662b577c018ad707a63766462b1e87',
|
'md5': '43662b577c018ad707a63766462b1e87',
|
||||||
@ -240,10 +240,22 @@ class AdobeTVVideoIE(AdobeTVBaseIE):
|
|||||||
'id': '2456',
|
'id': '2456',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'New experience with Acrobat DC',
|
'title': 'New experience with Acrobat DC',
|
||||||
'description': 'New experience with Acrobat DC',
|
'description': 'md5:e07ac2ad55635b4c227298ab0fed89df',
|
||||||
'duration': 248.667,
|
'duration': 248.667,
|
||||||
|
'thumbnail': r're:https?://images-tv\.adobe\.com/.+\.jpg',
|
||||||
},
|
},
|
||||||
}
|
}]
|
||||||
|
_WEBPAGE_TESTS = [{
|
||||||
|
'url': 'https://www.adobe.com/learn/acrobat/web/customize-toolbar',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '3463980',
|
||||||
|
'ext': 'm3u8',
|
||||||
|
'title': 'Adobe Acrobat: How to Customize the Toolbar for Faster PDF Editing',
|
||||||
|
'description': 'md5:94368ab95ae24f9c1bee0cb346e03dc3',
|
||||||
|
'duration': 97.557,
|
||||||
|
},
|
||||||
|
'skip': 'IE fix required; invalid extension',
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
@ -559,16 +559,6 @@ class GenericIE(InfoExtractor):
|
|||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
'add_ie': ['Youtube'],
|
'add_ie': ['Youtube'],
|
||||||
}, {
|
|
||||||
# 🔧44
|
|
||||||
# AdobeTVEmbedIE
|
|
||||||
'url': 'https://www.adobe.com/learn/acrobat/web/customize-toolbar',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '3463980',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Adobe Acrobat: How to Customize the Toolbar for Faster PDF Editing',
|
|
||||||
},
|
|
||||||
'skip': 'IE fix required; invalid extension',
|
|
||||||
}, {
|
}, {
|
||||||
# 🔍62
|
# 🔍62
|
||||||
# FacebookIE; iframe embed
|
# FacebookIE; iframe embed
|
||||||
|
Loading…
Reference in New Issue
Block a user