diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-06-12 01:50:43 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-06-12 01:50:43 +0700 |
commit | e51752754d0dfe3e6597634c0c0f65508c55bcb8 (patch) | |
tree | 12d7d5c439c225836c102ef3cf86cb080248beed /youtube_dl/extractor/tvnet.py | |
parent | 0645be49cb06f54135a9b92556207c1c468853ee (diff) |
[tvnet] Improve video id extraction
Diffstat (limited to 'youtube_dl/extractor/tvnet.py')
-rw-r--r-- | youtube_dl/extractor/tvnet.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tvnet.py b/youtube_dl/extractor/tvnet.py index 0ec2da4da..1083d2730 100644 --- a/youtube_dl/extractor/tvnet.py +++ b/youtube_dl/extractor/tvnet.py @@ -12,7 +12,7 @@ from ..utils import ( class TVNetIE(InfoExtractor): - _VALID_URL = r'https?://(?:[^/]+)\.tvnet\.gov\.vn/[^/]+/(?P<id>[0-9]+)' + _VALID_URL = r'https?://(?:[^/]+)\.tvnet\.gov\.vn/[^/]+/(?:\d+/)?(?P<id>[0-9]+)/' _TESTS = [{ # video 'url': 'http://de.tvnet.gov.vn/video/109788/vtv1---bac-tuyet-tai-lao-cai-va-ha-giang/tin-nong-24h', @@ -37,6 +37,18 @@ class TVNetIE(InfoExtractor): 'is_live': False, }, }, { + 'url': 'http://us.tvnet.gov.vn/video/118023/129999/ngay-0705', + 'info_dict': { + 'id': '129999', + 'ext': 'mp4', + 'title': 'VTV1 - Quốc hội với cử tri (11/06/2018)', + 'thumbnail': r're:(?i)https?://.*\.(?:jpg|png)', + 'is_live': False, + }, + 'params': { + 'skip_download': True, + }, + }, { # live stream 'url': 'http://us.tvnet.gov.vn/kenh-truyen-hinh/1011/vtv1', 'info_dict': { @@ -62,6 +74,9 @@ class TVNetIE(InfoExtractor): 'params': { 'skip_download': True, }, + }, { + 'url': 'http://us.tvnet.gov.vn/phim/6136/25510/vtv3---ca-mot-doi-an-oan-tap-1-50/phim-truyen-hinh', + 'only_matching': True, }] def _real_extract(self, url): |