summary refs log tree commit diff
diff options
context:
space:
mode:
authorRiCON <RiCON@nowhere>2016-02-19 17:52:56 +0000
committerRiCON <RiCON@nowhere>2016-02-19 19:38:28 +0000
commit8765151c8a026f1c57ed239bae15a443339572e3 (patch)
treece7742cfc9b48984efd5871b7232fa70abdaeae5
parent8ec64ac68354cdf9428cd58506481ef4476c47c9 (diff)
downloadyoutube-dl-8765151c8a026f1c57ed239bae15a443339572e3.tar.gz
youtube-dl-8765151c8a026f1c57ed239bae15a443339572e3.tar.xz
youtube-dl-8765151c8a026f1c57ed239bae15a443339572e3.zip
[mtv] Extract duration from each playlist item
RSS used instead of manifest files because it's exact to the millisecond
with the video I tested while in manifest it's only exact to the second.
-rw-r--r--youtube_dl/extractor/mtv.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py
index e8bb527b8..56ddcbbf3 100644
--- a/youtube_dl/extractor/mtv.py
+++ b/youtube_dl/extractor/mtv.py
@@ -11,6 +11,7 @@ from ..utils import (
     ExtractorError,
     find_xpath_attr,
     fix_xml_ampersands,
+    float_or_none,
     HEADRequest,
     sanitized_Request,
     unescapeHTML,
@@ -158,6 +159,9 @@ class MTVServicesInfoExtractor(InfoExtractor):
         if mtvn_id_node is not None:
             mtvn_id = mtvn_id_node.text
 
+        content_el = find_xpath_attr(itemdoc, self._xpath_ns('.//content', 'http://search.yahoo.com/mrss/'), 'duration')
+        duration = float_or_none(content_el.attrib.get('duration')) if content_el is not None else None
+
         return {
             'title': title,
             'formats': self._extract_video_formats(mediagen_doc, mtvn_id),
@@ -165,6 +169,7 @@ class MTVServicesInfoExtractor(InfoExtractor):
             'id': video_id,
             'thumbnail': self._get_thumbnail_url(uri, itemdoc),
             'description': description,
+            'duration': duration,
         }
 
     def _get_feed_query(self, uri):