Skip to content

Commit

Permalink
Fix type-check failure
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec committed Aug 12, 2024
1 parent eb8b12b commit f828da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/subtitle_tutorial_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def main() -> None:
metadata_strings: List[str] = []
for i in range(len(langs)):
in_path = subtitles_path / f"{args.subtitles}.{langs[i]}.srt"
i_strings.extend(["-i", in_path])
i_strings.extend(["-i", str(in_path)])
map_strings.extend(["-map", str(i + 1)])
metadata_strings.extend([f"-metadata:s:s:{i}", f"language={langs[i]}"])
exec_command: List[str] = (
Expand Down

0 comments on commit f828da9

Please sign in to comment.