about summary refs log tree commit diff
path: root/youtube_dl/extractor/theplatform.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-18 21:08:25 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-18 21:08:25 +0600
commitcae21032ab38f404a9959e6b28984b960e579fb5 (patch)
tree551c44d67a70c8ac1a8497661184d25fa1d4074f /youtube_dl/extractor/theplatform.py
parent61870915323abd126f5440282b1fd5734ee1ce6f (diff)
downloadyoutube-dl-cae21032ab38f404a9959e6b28984b960e579fb5.tar.gz
youtube-dl-cae21032ab38f404a9959e6b28984b960e579fb5.tar.xz
youtube-dl-cae21032ab38f404a9959e6b28984b960e579fb5.zip
[theplatform] Improve geo restriction detection
Diffstat (limited to 'youtube_dl/extractor/theplatform.py')
-rw-r--r--youtube_dl/extractor/theplatform.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py
index 2230dfe02..863914299 100644
--- a/youtube_dl/extractor/theplatform.py
+++ b/youtube_dl/extractor/theplatform.py
@@ -31,10 +31,9 @@ _x = lambda p: xpath_with_ns(p, {'smil': default_ns})
 class ThePlatformBaseIE(OnceIE):
     def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
         meta = self._download_xml(smil_url, video_id, note=note, query={'format': 'SMIL'})
-        error_element = find_xpath_attr(
-            meta, _x('.//smil:ref'), 'src',
-            'http://link.theplatform.com/s/errorFiles/Unavailable.mp4')
-        if error_element is not None:
+        error_element = find_xpath_attr(meta, _x('.//smil:ref'), 'src')
+        if error_element is not None and error_element.attrib['src'].startswith(
+                'http://link.theplatform.com/s/errorFiles/Unavailable.'):
             raise ExtractorError(error_element.attrib['abstract'], expected=True)
 
         smil_formats = self._parse_smil_formats(