diff options
| author | remitamine <remitamine@gmail.com> | 2015-12-04 16:18:02 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2015-12-04 16:18:02 +0100 | 
| commit | 53e06b25070580b8b0dab7dd54ddff82f3bd2583 (patch) | |
| tree | adbda5cd892cab8ffb77dc01043a3626b4f578aa /youtube_dl/extractor/generic.py | |
| parent | b80d4bebf307a18ea0e4991503f91ef601cb2091 (diff) | |
[ooyala] fix duration scale
Diffstat (limited to 'youtube_dl/extractor/generic.py')
| -rw-r--r-- | youtube_dl/extractor/generic.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index b60684f98..e3bdff2d8 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -339,7 +339,7 @@ class GenericIE(InfoExtractor):                  'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',                  'ext': 'mp4',                  'title': '2cc213299525360.mov',  # that's what we get -                'duration': 238231, +                'duration': 238.231,              },              'add_ie': ['Ooyala'],          }, @@ -351,7 +351,7 @@ class GenericIE(InfoExtractor):                  'ext': 'mp4',                  'title': '"Steve Jobs: Man in the Machine" trailer',                  'description': 'The first trailer for the Alex Gibney documentary "Steve Jobs: Man in the Machine."', -                'duration': 135427, +                'duration': 135.427,              },              'params': {                  'skip_download': True, @@ -964,7 +964,7 @@ class GenericIE(InfoExtractor):                  'ext': 'mp4',                  'description': 'VIDEO: INDEX/MATCH versus VLOOKUP.',                  'title': 'This is what separates the Excel masters from the wannabes', -                'duration': 191933, +                'duration': 191.933,              },              'params': {                  # m3u8 downloads  | 
