youtube-dl

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

commit 3811c567e734f38f830e8c2e0a45afa7c48cbf12
parent 054fe3cc40cc0feaa69e21b31946c568a749eb76
Author: Naglis Jonaitis <njonaitis@gmail.com>
Date:   Wed, 11 Feb 2015 15:47:19 +0200

[teamcoco] Fix video id extraction

Diffstat:
Myoutube_dl/extractor/teamcoco.py | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py @@ -30,6 +30,11 @@ class TeamcocoIE(InfoExtractor): } } ] + _VIDEO_ID_REGEXES = ( + r'"eVar42"\s*:\s*(\d+)', + r'Ginger\.TeamCoco\.openInApp\("video",\s*"([^"]+)"', + r'"id_not"\s*:\s*(\d+)' + ) def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) @@ -40,8 +45,7 @@ class TeamcocoIE(InfoExtractor): video_id = mobj.group("video_id") if not video_id: video_id = self._html_search_regex( - r'<div\s+class="player".*?data-id="(\d+?)"', - webpage, 'video id') + self._VIDEO_ID_REGEXES, webpage, 'video id') data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id data = self._download_xml(