youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a292cba256c1adca354d4ed59ef30a62aeb8606e
parent 982e518a96be4659ae621b5bcafe3bbb1b9ca6fc
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Fri, 22 Apr 2016 00:05:48 +0800

[mgtv] Fix _VALID_URL and add localized name

Diffstat:
Myoutube_dl/extractor/mgtv.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/mgtv.py b/youtube_dl/extractor/mgtv.py @@ -6,7 +6,8 @@ from ..utils import int_or_none class MGTVIE(InfoExtractor): - _VALID_URL = r'https?://www\.mgtv\.com/v/(?:[^/]+/)*(?P<id>\d+).html' + _VALID_URL = r'https?://www\.mgtv\.com/v/(?:[^/]+/)*(?P<id>\d+)\.html' + IE_DESC = '芒果TV' _TEST = { 'url': 'http://www.mgtv.com/v/1/290525/f/3116640.html',