diff options
author | Unknown <blackjack4494@web.de> | 2020-09-02 23:33:41 +0200 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-09-02 23:33:41 +0200 |
commit | 3ca3f77f9ce9dd504dc6af4ef605c245c31ff860 (patch) | |
tree | 6bd9c9352327148a78b8c46227c8d526f1447b03 /youtube_dl/extractor/fivemin.py | |
parent | 4cd6add62b54721eeb3bf76bd9c0b4d676dc4d68 (diff) | |
download | hypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.tar.lz hypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.tar.xz hypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.zip |
[skip travis] adding automerge support
basically copying content of youtube_dl folder to youtube_dlc and excluding the youtube_dl folder when compiling
Diffstat (limited to 'youtube_dl/extractor/fivemin.py')
-rw-r--r-- | youtube_dl/extractor/fivemin.py | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/youtube_dl/extractor/fivemin.py b/youtube_dl/extractor/fivemin.py new file mode 100644 index 000000000..f3f876ecd --- /dev/null +++ b/youtube_dl/extractor/fivemin.py @@ -0,0 +1,54 @@ +from __future__ import unicode_literals + +from .common import InfoExtractor + + +class FiveMinIE(InfoExtractor): + IE_NAME = '5min' + _VALID_URL = r'(?:5min:|https?://(?:[^/]*?5min\.com/|delivery\.vidible\.tv/aol)(?:(?:Scripts/PlayerSeed\.js|playerseed/?)?\?.*?playList=)?)(?P<id>\d+)' + + _TESTS = [ + { + # From http://www.engadget.com/2013/11/15/ipad-mini-retina-display-review/ + 'url': 'http://pshared.5min.com/Scripts/PlayerSeed.js?sid=281&width=560&height=345&playList=518013791', + 'md5': '4f7b0b79bf1a470e5004f7112385941d', + 'info_dict': { + 'id': '518013791', + 'ext': 'mp4', + 'title': 'iPad Mini with Retina Display Review', + 'description': 'iPad mini with Retina Display review', + 'duration': 177, + 'uploader': 'engadget', + 'upload_date': '20131115', + 'timestamp': 1384515288, + }, + 'params': { + # m3u8 download + 'skip_download': True, + } + }, + { + # From http://on.aol.com/video/how-to-make-a-next-level-fruit-salad-518086247 + 'url': '5min:518086247', + 'md5': 'e539a9dd682c288ef5a498898009f69e', + 'info_dict': { + 'id': '518086247', + 'ext': 'mp4', + 'title': 'How to Make a Next-Level Fruit Salad', + 'duration': 184, + }, + 'skip': 'no longer available', + }, + { + 'url': 'http://embed.5min.com/518726732/', + 'only_matching': True, + }, + { + 'url': 'http://delivery.vidible.tv/aol?playList=518013791', + 'only_matching': True, + } + ] + + def _real_extract(self, url): + video_id = self._match_id(url) + return self.url_result('aol-video:%s' % video_id) |