aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/fivemin.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-02-12 21:05:27 -0500
committerJesús <heckyel@hyperbola.info>2022-02-12 21:05:27 -0500
commitaf4847e22e81d05177f92c712983ab3f2f20184b (patch)
tree6b749333494ffe379df3e1a060660e4b1afcdf85 /yt_dlp/extractor/fivemin.py
parentc4b763b19f54ed5dfc2fd408adb9ed74126f6740 (diff)
parent29448350808619262d6a9ddd393a2c28df1720fe (diff)
downloadhypervideo-pre-af4847e22e81d05177f92c712983ab3f2f20184b.tar.lz
hypervideo-pre-af4847e22e81d05177f92c712983ab3f2f20184b.tar.xz
hypervideo-pre-af4847e22e81d05177f92c712983ab3f2f20184b.zip
updated from upstream | 12/02/2022 at 21:05
Diffstat (limited to 'yt_dlp/extractor/fivemin.py')
-rw-r--r--yt_dlp/extractor/fivemin.py54
1 files changed, 0 insertions, 54 deletions
diff --git a/yt_dlp/extractor/fivemin.py b/yt_dlp/extractor/fivemin.py
deleted file mode 100644
index f3f876ecd..000000000
--- a/yt_dlp/extractor/fivemin.py
+++ /dev/null
@@ -1,54 +0,0 @@
-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)