youtube-dl

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

commit 3d8d44c7b1b4b4341554b22f9cde199c9fde71c0
parent 88839f4380106984304a7ba25ab3780f624e435e
Author: Remita Amine <remitamine@gmail.com>
Date:   Wed, 26 Oct 2016 16:46:28 +0100

[tvp] improve video id extraction(closes #10585)

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

diff --git a/youtube_dl/extractor/tvp.py b/youtube_dl/extractor/tvp.py @@ -69,7 +69,8 @@ class TVPIE(InfoExtractor): webpage = self._download_webpage(url, page_id) video_id = self._search_regex([ r'<iframe[^>]+src="[^"]*?object_id=(\d+)', - "object_id\s*:\s*'(\d+)'"], webpage, 'video id') + r"object_id\s*:\s*'(\d+)'", + r'data-video-id="(\d+)"'], webpage, 'video id', default=page_id) return { '_type': 'url_transparent', 'url': 'tvp:' + video_id,