Browse Source

[shahid] raise ExtractorError instead of warning

totalwebcasting
remitamine 9 years ago
parent
commit
02c126a7c2
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      youtube_dl/extractor/shahid.py

+ 5
- 2
youtube_dl/extractor/shahid.py View File

@ -1,5 +1,8 @@
from .common import InfoExtractor
from ..utils import get_element_by_id
from ..utils import (
get_element_by_id,
ExtractorError,
}
class ShahidIE(InfoExtractor):
_VALID_URL = r'https?://shahid\.mbc\.net/ar/episode/(?P<id>\d+)/?'
@ -43,7 +46,7 @@ class ShahidIE(InfoExtractor):
m3u8_url = player_json_data['url']
else:
for error in json_data['error'].values():
self.report_warning(error)
raise ExtractorError(error)
return
formats = self._extract_m3u8_formats(m3u8_url, video_id)
return {


Loading…
Cancel
Save