X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fadultswim.py;h=34b8b01157bb930937f6f69c4950d8d01c39ed6e;hb=7862ad88b725daae957ad27ae60993e360c01e13;hp=e4c78a81c6c5f4bfc1081f7b579c7cbcff537220;hpb=f6735be4da1da24be3a2d90461069d192900838a;p=youtube-dl.git diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py index e4c78a81c..34b8b0115 100644 --- a/youtube_dl/extractor/adultswim.py +++ b/youtube_dl/extractor/adultswim.py @@ -7,6 +7,8 @@ import json from .common import InfoExtractor from ..utils import ( ExtractorError, + xpath_text, + float_or_none, ) @@ -16,7 +18,7 @@ class AdultSwimIE(InfoExtractor): _TESTS = [{ 'url': 'http://adultswim.com/videos/rick-and-morty/pilot', 'playlist': [ - { + { 'md5': '247572debc75c7652f253c8daa51a14d', 'info_dict': { 'id': 'rQxZvXQ4ROaSOqq-or2Mow-0', @@ -36,6 +38,7 @@ class AdultSwimIE(InfoExtractor): }, ], 'info_dict': { + 'id': 'rQxZvXQ4ROaSOqq-or2Mow', 'title': 'Rick and Morty - Pilot', 'description': "Rick moves in with his daughter's family and establishes himself as a bad influence on his grandson, Morty. " } @@ -53,6 +56,7 @@ class AdultSwimIE(InfoExtractor): } ], 'info_dict': { + 'id': '-t8CamQlQ2aYZ49ItZCFog', 'title': 'American Dad - Putting Francine Out of Business', 'description': 'Stan hatches a plan to get Francine out of the real estate business.Watch more American Dad on [adult swim].' }, @@ -128,7 +132,8 @@ class AdultSwimIE(InfoExtractor): segment_url, segment_title, 'Downloading segment information', 'Unable to download segment information') - segment_duration = idoc.find('.//trt').text.strip() + segment_duration = float_or_none( + xpath_text(idoc, './/trt', 'segment duration').strip()) formats = [] file_els = idoc.findall('.//files/file')