diff options
Diffstat (limited to 'youtube_dl/extractor/lrt.py')
| -rw-r--r-- | youtube_dl/extractor/lrt.py | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/lrt.py b/youtube_dl/extractor/lrt.py index fca0bfef0..d72d470aa 100644 --- a/youtube_dl/extractor/lrt.py +++ b/youtube_dl/extractor/lrt.py @@ -22,7 +22,7 @@ class LRTIE(InfoExtractor):              'id': '54391',              'ext': 'mp4',              'title': 'Septynios Kauno dienos', -            'description': 'Kauno miesto ir apskrities naujienos', +            'description': 'md5:24d84534c7dc76581e59f5689462411a',              'duration': 1783,          },          'params': { @@ -32,9 +32,7 @@ class LRTIE(InfoExtractor):      }      def _real_extract(self, url): -        mobj = re.match(self._VALID_URL, url) -        video_id = mobj.group('id') - +        video_id = self._match_id(url)          webpage = self._download_webpage(url, video_id)          title = remove_end(self._og_search_title(webpage), ' - LRT')  | 
