aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/utils.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-04-29 07:18:36 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-04-29 07:39:33 +0530
commit1d485a1a799bbeeb2faea0595676ca7d4c0f3716 (patch)
tree17e1f06c8a4e3a1fa8083c2017812988e6acc8f5 /yt_dlp/utils.py
parent0a41f331cc3e06007b8d1abe104da196c565b505 (diff)
downloadhypervideo-pre-1d485a1a799bbeeb2faea0595676ca7d4c0f3716.tar.lz
hypervideo-pre-1d485a1a799bbeeb2faea0595676ca7d4c0f3716.tar.xz
hypervideo-pre-1d485a1a799bbeeb2faea0595676ca7d4c0f3716.zip
[cleanup] Misc fixes
Closes #3565, https://github.com/yt-dlp/yt-dlp/issues/3514#issuecomment-1105944364
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r--yt_dlp/utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py
index 0612139e0..35426568b 100644
--- a/yt_dlp/utils.py
+++ b/yt_dlp/utils.py
@@ -245,6 +245,8 @@ DATE_FORMATS_MONTH_FIRST.extend([
PACKED_CODES_RE = r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)"
JSON_LD_RE = r'(?is)<script[^>]+type=(["\']?)application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>'
+NUMBER_RE = r'\d+(?:\.\d+)?'
+
def preferredencoding():
"""Get preferred encoding.
@@ -3427,7 +3429,7 @@ def parse_dfxp_time_expr(time_expr):
if not time_expr:
return
- mobj = re.match(r'^(?P<time_offset>\d+(?:\.\d+)?)s?$', time_expr)
+ mobj = re.match(rf'^(?P<time_offset>{NUMBER_RE})s?$', time_expr)
if mobj:
return float(mobj.group('time_offset'))