Skip to content

Commit 889e01a

Browse files
committed
Further fix imports for "caption is valid" func
1 parent e883508 commit 889e01a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cdp_backend/utils/file_utils.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,7 @@
1414
import fireo
1515
import fsspec
1616
import requests
17-
import webvtt
1817
from fsspec.core import url_to_fs
19-
from webvtt.exceptions import (
20-
InvalidCaptionsError,
21-
MalformedCaptionError,
22-
MalformedFileError,
23-
)
2418

2519
from ..database import models as db_models
2620

@@ -658,6 +652,12 @@ def caption_is_valid(video_uri: str, caption_uri: str) -> bool:
658652
The caption file is accepted if the durations differ by no more than 20%.
659653
"""
660654
import ffmpeg
655+
import webvtt
656+
from webvtt.exceptions import (
657+
InvalidCaptionsError,
658+
MalformedCaptionError,
659+
MalformedFileError,
660+
)
661661

662662
try:
663663
ffprobe = ffmpeg.probe(video_uri)

0 commit comments

Comments
 (0)