[teamcoco] Extract duration
authorNaglis Jonaitis <njonaitis@gmail.com>
Thu, 9 Apr 2015 23:03:38 +0000 (02:03 +0300)
committerNaglis Jonaitis <njonaitis@gmail.com>
Thu, 9 Apr 2015 23:03:38 +0000 (02:03 +0300)
youtube_dl/extractor/teamcoco.py

index 41677503c7a3f5d1530d4a4d8b8e2fc8631e28a2..1caf08cb752d201066f0a1d4679efffc26598d1e 100644 (file)
@@ -21,6 +21,7 @@ class TeamcocoIE(InfoExtractor):
                 'ext': 'mp4',
                 'title': 'Conan Becomes A Mary Kay Beauty Consultant',
                 'description': 'Mary Kay is perhaps the most trusted name in female beauty, so of course Conan is a natural choice to sell their products.',
+                'duration': 504,
                 'age_limit': 0,
             }
         }, {
@@ -31,6 +32,7 @@ class TeamcocoIE(InfoExtractor):
                 'ext': 'mp4',
                 'description': 'Louis C.K. got starstruck by George W. Bush, so what? Part one.',
                 'title': 'Louis C.K. Interview Pt. 1 11/3/11',
+                'duration': 288,
                 'age_limit': 0,
             }
         }
@@ -93,5 +95,6 @@ class TeamcocoIE(InfoExtractor):
             'title': data['title'],
             'thumbnail': data.get('thumb', {}).get('href'),
             'description': data.get('teaser'),
+            'duration': data.get('duration'),
             'age_limit': self._family_friendly_search(webpage),
         }