Sergey M․
6 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
6 additions and
0 deletions
-
youtube_dl/extractor/carambatv.py
|
|
@ -82,6 +82,12 @@ class CarambaTVPageIE(InfoExtractor): |
|
|
|
webpage = self._download_webpage(url, video_id) |
|
|
|
|
|
|
|
videomore_url = VideomoreIE._extract_url(webpage) |
|
|
|
if not videomore_url: |
|
|
|
videomore_id = self._search_regex( |
|
|
|
r'getVMCode\s*\(\s*["\']?(\d+)', webpage, 'videomore id', |
|
|
|
default=None) |
|
|
|
if videomore_id: |
|
|
|
videomore_url = 'videomore:%s' % videomore_id |
|
|
|
if videomore_url: |
|
|
|
title = self._og_search_title(webpage) |
|
|
|
return { |
|
|
|