aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-12-31 20:06:21 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-12-31 20:06:21 +0100
commit69f85952568def9ce13f71f3e8bac65f0c5f5f36 (patch)
treeb14c390092b57baee120760697c2dda97dccc409
parent930087f2f69d887d768f234c5dc4563c5ad86ad6 (diff)
downloadyoutube-dl-69f85952568def9ce13f71f3e8bac65f0c5f5f36.zip
youtube-dl-69f85952568def9ce13f71f3e8bac65f0c5f5f36.tar.gz
youtube-dl-69f85952568def9ce13f71f3e8bac65f0c5f5f36.tar.bz2
[espn] Extract better titles
-rw-r--r--youtube_dl/extractor/espn.py18
1 files changed, 13 insertions, 5 deletions
diff --git a/youtube_dl/extractor/espn.py b/youtube_dl/extractor/espn.py
index 0a917f9..3762d87 100644
--- a/youtube_dl/extractor/espn.py
+++ b/youtube_dl/extractor/espn.py
@@ -1,6 +1,7 @@
from __future__ import unicode_literals
from .common import InfoExtractor
+from ..utils import remove_end
class ESPNIE(InfoExtractor):
@@ -10,7 +11,7 @@ class ESPNIE(InfoExtractor):
'info_dict': {
'id': 'FkYWtmazr6Ed8xmvILvKLWjd4QvYZpzG',
'ext': 'mp4',
- 'title': 'dm_140128_30for30Shorts___JudgingJewellv2',
+ 'title': '30 for 30 Shorts: Judging Jewell',
'description': None,
},
'params': {
@@ -23,7 +24,7 @@ class ESPNIE(InfoExtractor):
'info_dict': {
'id': '50NDFkeTqRHB0nXBOK-RGdSG5YQPuxHg',
'ext': 'mp4',
- 'title': 'int_151206_Must_See_Moments_Best_of_MLS_2015_season',
+ 'title': 'Must-See Moments: Best of the MLS season',
},
'params': {
# m3u8 download
@@ -65,6 +66,13 @@ class ESPNIE(InfoExtractor):
pcode = self._search_regex(
r'["\']pcode=([^"\']+)["\']', player, 'pcode')
- return self.url_result(
- 'ooyalaexternal:%s:%s:%s' % (cms, video_id, pcode),
- 'OoyalaExternal')
+ title = remove_end(
+ self._og_search_title(webpage),
+ '- ESPN Video').strip()
+
+ return {
+ '_type': 'url_transparent',
+ 'url': 'ooyalaexternal:%s:%s:%s' % (cms, video_id, pcode),
+ 'ie_key': 'OoyalaExternal',
+ 'title': title,
+ }