Pārlūkot izejas kodu

[vk] Detect geo restriction

aviperes 6 gadi atpakaļ
vecāks
revīzija
a640c4d226
1 mainītis faili ar 9 papildinājumiem un 2 dzēšanām
  1. 9 2
      youtube_dl/extractor/vk.py

+ 9 - 2
youtube_dl/extractor/vk.py

@@ -293,8 +293,12 @@ class VKIE(VKBaseIE):
             # This video is no longer available, because its author has been blocked.
             # This video is no longer available, because its author has been blocked.
             'url': 'https://vk.com/video-10639516_456240611',
             'url': 'https://vk.com/video-10639516_456240611',
             'only_matching': True,
             'only_matching': True,
-        }
-    ]
+        },
+        {
+            # The video is not available in your region.
+            'url': 'https://vk.com/video-51812607_171445436',
+            'only_matching': True,
+        }]
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
         mobj = re.match(self._VALID_URL, url)
@@ -354,6 +358,9 @@ class VKIE(VKBaseIE):
 
 
             r'<!>This video is no longer available, because it has been deleted.':
             r'<!>This video is no longer available, because it has been deleted.':
             'Video %s is no longer available, because it has been deleted.',
             'Video %s is no longer available, because it has been deleted.',
+
+            r'<!>The video .+? is not available in your region.':
+            'Video %s is not available in your region.',
         }
         }
 
 
         for error_re, error_msg in ERRORS.items():
         for error_re, error_msg in ERRORS.items():