aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/cliphunter.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-29 06:22:54 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-29 06:22:54 +0200
commit80bcefcd77415eff62b722c0a432e5c217a1d64f (patch)
tree6d12180c8138a4f6e83ccfc8c060ce994a42945a /youtube_dl/extractor/cliphunter.py
parent8c23945c727dab01eabbc6e134cbb80db34d3120 (diff)
downloadyoutube-dl-80bcefcd77415eff62b722c0a432e5c217a1d64f.tar.xz
[cliphunter] Remove duration
Diffstat (limited to 'youtube_dl/extractor/cliphunter.py')
-rw-r--r--youtube_dl/extractor/cliphunter.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/youtube_dl/extractor/cliphunter.py b/youtube_dl/extractor/cliphunter.py
index 65c12136a..d4227e6eb 100644
--- a/youtube_dl/extractor/cliphunter.py
+++ b/youtube_dl/extractor/cliphunter.py
@@ -35,7 +35,6 @@ class CliphunterIE(InfoExtractor):
'title': 'Fun Jynx Maze solo',
'thumbnail': 're:^https?://.*\.jpg$',
'age_limit': 18,
- 'duration': 1317,
}
}
@@ -86,14 +85,11 @@ class CliphunterIE(InfoExtractor):
thumbnail = self._search_regex(
r"var\s+mov_thumb\s*=\s*'([^']+)';",
webpage, 'thumbnail', fatal=False)
- duration = int_or_none(self._search_regex(
- r'pl_dur\s*=\s*([0-9]+)', webpage, 'duration', fatal=False))
return {
'id': video_id,
'title': video_title,
'formats': formats,
- 'duration': duration,
'age_limit': self._rta_search(webpage),
'thumbnail': thumbnail,
}