1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-05 02:32:44 +01:00

[dramafever] Extract episode number

This commit is contained in:
Sergey M․ 2016-01-05 01:17:33 +06:00
parent 1dcc38b233
commit 8f4c56f334

View File

@ -12,6 +12,7 @@
from ..utils import ( from ..utils import (
ExtractorError, ExtractorError,
clean_html, clean_html,
int_or_none,
sanitized_Request, sanitized_Request,
) )
@ -114,6 +115,7 @@ def _real_extract(self, url):
'ext': 'srt', 'ext': 'srt',
'url': subfile, 'url': subfile,
}) })
info['episode_number'] = int_or_none(v.get('number'))
break break
return info return info