mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-27 03:03:01 +00:00
[adultswim] Improve segment duration extraction
This commit is contained in:
parent
2f15832f56
commit
8085fc15cc
1 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,8 @@
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
|
xpath_text,
|
||||||
|
float_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -128,7 +130,8 @@ def _real_extract(self, url):
|
||||||
segment_url, segment_title,
|
segment_url, segment_title,
|
||||||
'Downloading segment information', 'Unable to download segment information')
|
'Downloading segment information', 'Unable to download segment information')
|
||||||
|
|
||||||
segment_duration = idoc.find('.//trt').text.strip()
|
segment_duration = float_or_none(
|
||||||
|
xpath_text(idoc, './/trt', 'segment duration').strip())
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
file_els = idoc.findall('.//files/file')
|
file_els = idoc.findall('.//files/file')
|
||||||
|
|
Loading…
Reference in a new issue