[vk] Detect geo restriction
authoraviperes <avipr24@gmail.com>
Sat, 17 Nov 2018 13:59:13 +0000 (15:59 +0200)
committerSergey M <dstftw@gmail.com>
Sat, 17 Nov 2018 13:59:13 +0000 (20:59 +0700)
youtube_dl/extractor/vk.py

index ef8b9bcb7b610c25925ed2725a8bb43d8f3a6d1c..b52d15ac6f0709dce8a60c2f42d690b49a56d391 100644 (file)
@@ -293,8 +293,12 @@ class VKIE(VKBaseIE):
             # This video is no longer available, because its author has been blocked.
             'url': 'https://vk.com/video-10639516_456240611',
             '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):
         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.':
             '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():