Skip to content

Commit 7c6c483

Browse files
authored
Add files via upload
1 parent 016abf5 commit 7c6c483

File tree

1 file changed

+3
-19
lines changed

1 file changed

+3
-19
lines changed

linux/autosrt.py

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@
2626
from pathlib import Path
2727
import shlex
2828

29-
VERSION = "1.3.2"
29+
VERSION = "1.3.3"
30+
3031

3132
#======================================================== ffmpeg_progress_yield ========================================================#
3233

34+
3335
import re
3436
#import subprocess
3537
from typing import Any, Callable, Iterator, List, Optional, Union
@@ -1670,24 +1672,6 @@ def __call__(self, media_filepath):
16701672
raise Exception("Dependency not found: ffmpeg")
16711673

16721674
try:
1673-
'''
1674-
ffmpeg_command = [
1675-
"ffmpeg",
1676-
"-y",
1677-
"-i", media_filepath,
1678-
"-vf", f"subtitles={shlex.quote(self.subtitle_path)}",
1679-
"-c:a",
1680-
"copy",
1681-
"-c:v",
1682-
"libx264",
1683-
"-crf",
1684-
"23",
1685-
"-preset",
1686-
"veryslow",
1687-
self.output_path
1688-
]
1689-
'''
1690-
16911675
ffmpeg_command = [
16921676
"ffmpeg",
16931677
"-y",

0 commit comments

Comments
 (0)