Switch around act and episode title (makes -t nicer)
This commit is contained in:
parent
fedf9f3902
commit
46c8c43266
|
@ -3116,12 +3116,12 @@ class ComedyCentralIE(InfoExtractor):
|
||||||
self._downloader.increment_downloads()
|
self._downloader.increment_downloads()
|
||||||
actTitle = 'act' + str(actNum+1)
|
actTitle = 'act' + str(actNum+1)
|
||||||
info = {
|
info = {
|
||||||
'id': epTitle,
|
'id': actTitle,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'uploader': 'NA',
|
'uploader': 'NA',
|
||||||
'upload_date': 'NA',
|
'upload_date': 'NA',
|
||||||
'title': actTitle,
|
'title': epTitle,
|
||||||
'stitle': self._simplify_title(actTitle),
|
'stitle': self._simplify_title(epTitle),
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'format': format,
|
'format': format,
|
||||||
'thumbnail': None,
|
'thumbnail': None,
|
||||||
|
|
Loading…
Reference in New Issue