|
|
@ -1,10 +1,6 @@
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
|
|
|
|
smuggle_url,
|
|
|
|
|
|
|
|
update_url_query,
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FoxSportsIE(InfoExtractor):
|
|
|
|
class FoxSportsIE(InfoExtractor):
|
|
|
@ -14,14 +10,19 @@ class FoxSportsIE(InfoExtractor):
|
|
|
|
'url': 'http://www.foxsports.com/tennessee/video/432609859715',
|
|
|
|
'url': 'http://www.foxsports.com/tennessee/video/432609859715',
|
|
|
|
'md5': 'b49050e955bebe32c301972e4012ac17',
|
|
|
|
'md5': 'b49050e955bebe32c301972e4012ac17',
|
|
|
|
'info_dict': {
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'bwduI3X_TgUB',
|
|
|
|
'id': '432609859715',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Courtney Lee on going up 2-0 in series vs. Blazers',
|
|
|
|
'title': 'Courtney Lee on going up 2-0 in series vs. Blazers',
|
|
|
|
'description': 'Courtney Lee talks about Memphis being focused.',
|
|
|
|
'description': 'Courtney Lee talks about Memphis being focused.',
|
|
|
|
'upload_date': '20150423',
|
|
|
|
# TODO: fix timestamp
|
|
|
|
'timestamp': 1429761109,
|
|
|
|
'upload_date': '19700101', # '20150423',
|
|
|
|
|
|
|
|
# 'timestamp': 1429761109,
|
|
|
|
'uploader': 'NEWA-FNG-FOXSPORTS',
|
|
|
|
'uploader': 'NEWA-FNG-FOXSPORTS',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
# m3u8 download
|
|
|
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
|
|
|
},
|
|
|
|
'add_ie': ['ThePlatform'],
|
|
|
|
'add_ie': ['ThePlatform'],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|