summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-12-13 18:42:29 +0600
committerSergey M․ <dstftw@gmail.com>2014-12-13 18:42:29 +0600
commit8085fc15ccb161d96eee607bf21dfdb36b890b20 (patch)
tree045f0c661d87004c4518a54a5955f4012985877d
parent2f15832f569834a37ac3ee6140a3b997407c04cd (diff)
downloadyoutube-dl-8085fc15ccb161d96eee607bf21dfdb36b890b20.tar.gz
youtube-dl-8085fc15ccb161d96eee607bf21dfdb36b890b20.tar.xz
youtube-dl-8085fc15ccb161d96eee607bf21dfdb36b890b20.zip
[adultswim] Improve segment duration extraction
-rw-r--r--youtube_dl/extractor/adultswim.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py
index 39e4ca296..502a9c25a 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,
 )
 
 
@@ -128,7 +130,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')