Skip to content

Commit

Permalink
[tenplay] Fix formats and modernize (Closes #5806)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed May 24, 2015
1 parent 4b4e1af commit d41ebe1
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions youtube_dl/extractor/tenplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
from __future__ import unicode_literals

from .common import InfoExtractor
from ..utils import (
int_or_none,
float_or_none,
)


class TenPlayIE(InfoExtractor):
Expand Down Expand Up @@ -49,18 +53,23 @@ def _real_extract(self, url):
if protocol == 'rtmp':
url = url.replace('&mp4:', '')

tbr = int_or_none(rendition.get('encodingRate'), 1000)

formats.append({
'format_id': '_'.join(['rtmp', rendition['videoContainer'].lower(), rendition['videoCodec'].lower()]),
'width': rendition['frameWidth'],
'height': rendition['frameHeight'],
'tbr': rendition['encodingRate'] / 1024,
'filesize': rendition['size'],
'format_id': '_'.join(
['rtmp', rendition['videoContainer'].lower(),
rendition['videoCodec'].lower(), '%sk' % tbr]),
'width': int_or_none(rendition['frameWidth']),
'height': int_or_none(rendition['frameHeight']),
'tbr': tbr,
'filesize': int_or_none(rendition['size']),
'protocol': protocol,
'ext': ext,
'vcodec': rendition['videoCodec'].lower(),
'container': rendition['videoContainer'].lower(),
'url': url,
})
self._sort_formats(formats)

return {
'id': video_id,
Expand All @@ -74,8 +83,8 @@ def _real_extract(self, url):
'url': json['thumbnailURL']
}],
'thumbnail': json['videoStillURL'],
'duration': json['length'] / 1000,
'timestamp': float(json['creationDate']) / 1000,
'uploader': json['customFields']['production_company_distributor'] if 'production_company_distributor' in json['customFields'] else 'TENplay',
'view_count': json['playsTotal']
'duration': float_or_none(json.get('length'), 1000),
'timestamp': float_or_none(json.get('creationDate'), 1000),
'uploader': json.get('customFields', {}).get('production_company_distributor') or 'TENplay',
'view_count': int_or_none(json.get('playsTotal')),
}

0 comments on commit d41ebe1

Please sign in to comment.