This commit is contained in:
Nicolas Mowen 2026-02-03 07:21:19 -07:00
parent a8cccaaf1c
commit 5a395b4699

View File

@ -129,7 +129,9 @@ def get_ffmpeg_arg_list(arg: Any) -> list:
return arg if isinstance(arg, list) else shlex.split(arg) return arg if isinstance(arg, list) else shlex.split(arg)
def load_labels(path: Optional[str], encoding="utf-8", prefill=91, indexed: bool | None = None): def load_labels(
path: Optional[str], encoding="utf-8", prefill=91, indexed: bool | None = None
):
"""Loads labels from file (with or without index numbers). """Loads labels from file (with or without index numbers).
Args: Args:
path: path to label file. path: path to label file.