aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/lrt.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-27 12:16:55 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-27 12:16:55 +0600
commitf7e1d82d407ccb0be23999ba8af27ae2549d39aa (patch)
tree9297af2c450499708a016c6511fd8a56538c0083 /youtube_dl/extractor/lrt.py
parent339b1944e7c8c28d1fc7cc8721af73fd23937a1c (diff)
downloadyoutube-dl-f7e1d82d407ccb0be23999ba8af27ae2549d39aa.zip
youtube-dl-f7e1d82d407ccb0be23999ba8af27ae2549d39aa.tar.gz
youtube-dl-f7e1d82d407ccb0be23999ba8af27ae2549d39aa.tar.bz2
[lrt] Improve
Diffstat (limited to 'youtube_dl/extractor/lrt.py')
-rw-r--r--youtube_dl/extractor/lrt.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/youtube_dl/extractor/lrt.py b/youtube_dl/extractor/lrt.py
index 42e768c..f8d2759 100644
--- a/youtube_dl/extractor/lrt.py
+++ b/youtube_dl/extractor/lrt.py
@@ -30,13 +30,16 @@ class LRTIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
title = remove_end(self._og_search_title(webpage), ' - LRT')
+ m3u8_url = self._search_regex(
+ r'file\s*:\s*(["\'])(?P<url>.+?)\1\s*\+\s*location\.hash\.substring\(1\)',
+ webpage, 'm3u8 url', group='url')
+ formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4')
+
thumbnail = self._og_search_thumbnail(webpage)
description = self._og_search_description(webpage)
duration = parse_duration(self._search_regex(
- r"var record_len = '([0-9]+:[0-9]+:[0-9]+)';", webpage, 'record_len', fatal=False, default=None))
-
- link = self._search_regex(r'file: "(.*)" \+ location\.hash\.substring\(1\)', webpage, 'link to m3u8')
- formats = self._extract_m3u8_formats(link, video_id, "mp4")
+ r'var\s+record_len\s*=\s*(["\'])(?P<duration>[0-9]+:[0-9]+:[0-9]+)\1',
+ webpage, 'duration', default=None, group='duration'))
return {
'id': video_id,