Browse Source

Merge remote-tracking branch 'pishposhmcgee/patch-2'

rtmp_test
Philipp Hagemeister 11 years ago
parent
commit
09eeb75130
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/teamcoco.py

+ 1
- 1
youtube_dl/extractor/teamcoco.py View File

@ -33,7 +33,7 @@ class TeamcocoIE(InfoExtractor):
data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id
data = self._download_webpage(data_url, video_id, 'Downloading data webpage')
video_url = self._html_search_regex(r'<file type="high".*?>(.*?)</file>',
video_url = self._html_search_regex(r'<file [^>]*type="high".*?>(.*?)</file>',
data, u'video URL')
return [{


Loading…
Cancel
Save