- video_id = self._match_id(url)
- webpage = self._download_webpage(url, video_id)
+ display_id = self._match_id(url)
+ webpage = self._download_webpage(url, display_id)
+
+ if re.search(r'Fişierul nu este disponibil pentru vizionare în ţara dumneavoastră', webpage):
+ raise ExtractorError(
+ 'This video is not available in your country.', expected=True)
+ elif re.search('Fişierul poate fi accesat doar de către prietenii lui', webpage):
+ raise ExtractorError('This video is private.', expected=True)
+
+ flashvars_str = self._search_regex(
+ r'block_flash_vars\s*=\s*(\{[^\}]+\})', webpage, 'flashvars', fatal=False, default=None)