Skip to content

Commit

Permalink
[subtitles] Use self._download_webpage for extracting the subtitles
Browse files Browse the repository at this point in the history
It raises ExtractorError for the same exceptions we have to catch.
  • Loading branch information
jaimeMF committed Sep 11, 2013
1 parent d82134c commit 7fad1c6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 18 deletions.
10 changes: 4 additions & 6 deletions youtube_dl/extractor/dailymotion.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import re
import json
import itertools
import socket

from .common import InfoExtractor
from .subtitles import SubtitlesInfoExtractor

from ..utils import (
compat_http_client,
compat_urllib_error,
compat_urllib_request,
compat_str,
get_element_by_attribute,
Expand Down Expand Up @@ -98,10 +95,11 @@ def _real_extract(self, url):
}]

def _get_available_subtitles(self, video_id):
request = compat_urllib_request.Request('https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id)
try:
sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
sub_list = self._download_webpage(
'https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id,
video_id, note=False)
except ExtractorError as err:
self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
return {}
info = json.loads(sub_list)
Expand Down
12 changes: 3 additions & 9 deletions youtube_dl/extractor/subtitles.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import socket

from .common import InfoExtractor

from ..utils import (
compat_http_client,
compat_urllib_error,
compat_urllib_request,
compat_str,
ExtractorError,
)


Expand Down Expand Up @@ -52,8 +48,8 @@ def _extract_subtitles(self, video_id):
def _request_subtitle_url(self, sub_lang, url):
""" makes the http request for the subtitle """
try:
sub = compat_urllib_request.urlopen(url).read().decode('utf-8')
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
sub = self._download_webpage(url, None, note=False)
except ExtractorError as err:
self._downloader.report_warning(u'unable to download video subtitles for %s: %s' % (sub_lang, compat_str(err)))
return
if not sub:
Expand Down Expand Up @@ -88,5 +84,3 @@ def extract_subtitles(self, video_id, video_webpage=None):
elif self._downloader.params.get('writeautomaticsub', False):
video_subtitles = self._request_automatic_caption(video_id, video_webpage)
return video_subtitles


7 changes: 4 additions & 3 deletions youtube_dl/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,11 @@ def _decrypt_signature_age_gate(self, s):
return self._decrypt_signature(s)

def _get_available_subtitles(self, video_id):
request = compat_urllib_request.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id)
try:
sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
sub_list = self._download_webpage(
'http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
video_id, note=False)
except ExtractorError as err:
self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
return {}
lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
Expand Down

0 comments on commit 7fad1c6

Please sign in to comment.