logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: e51752754d0dfe3e6597634c0c0f65508c55bcb8
parent 0645be49cb06f54135a9b92556207c1c468853ee
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 12 Jun 2018 01:50:43 +0700

[tvnet] Improve video id extraction

Diffstat:

Myoutube_dl/extractor/tvnet.py17++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git 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):