From 1e076a166f4ae7069385ea956eb45a73252506a1 Mon Sep 17 00:00:00 2001 From: nilaoda Date: Mon, 19 Sep 2022 12:33:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96vtt=E7=B2=BE=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/N_m3u8DL-RE.Common/Entity/WebVttSub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/N_m3u8DL-RE.Common/Entity/WebVttSub.cs b/src/N_m3u8DL-RE.Common/Entity/WebVttSub.cs index 1e915ce..b23a88f 100644 --- a/src/N_m3u8DL-RE.Common/Entity/WebVttSub.cs +++ b/src/N_m3u8DL-RE.Common/Entity/WebVttSub.cs @@ -156,7 +156,7 @@ namespace N_m3u8DL_RE.Common.Entity var time = 0L + ms; for (int i = 0; i < t.Count(); i++) { - time += (int)Math.Pow(60, i) * Convert.ToInt32(t[i]) * 1000; + time += (long)Math.Pow(60, i) * Convert.ToInt32(t[i]) * 1000; } return TimeSpan.FromMilliseconds(time); }