Commit
·
080d626
1
Parent(s):
4a0b504
fix sound issues
Browse files- main.py +1 -1
- utils/subtitler.py +3 -2
main.py
CHANGED
@@ -10,7 +10,7 @@ from fastapi.responses import HTMLResponse, Response
|
|
10 |
from fastapi.security import HTTPBasic
|
11 |
from pydantic import BaseModel, field_validator
|
12 |
|
13 |
-
# TODO: fix
|
14 |
|
15 |
app = FastAPI()
|
16 |
security = HTTPBasic()
|
|
|
10 |
from fastapi.security import HTTPBasic
|
11 |
from pydantic import BaseModel, field_validator
|
12 |
|
13 |
+
# TODO: fix resizing issues when video comes from mobile.
|
14 |
|
15 |
app = FastAPI()
|
16 |
security = HTTPBasic()
|
utils/subtitler.py
CHANGED
@@ -42,7 +42,7 @@ def subtitler(video_file:str,
|
|
42 |
srt_path = os.path.abspath(srt_path)
|
43 |
output_file = os.path.abspath(output_file)
|
44 |
temp_dir = os.path.abspath(f"{'/'.join(os.path.normpath(video_file).split(os.path.sep)[:-1])}/")
|
45 |
-
temp_audiofile = os.path.join(temp_dir, "temp_audio_file.mp4")
|
46 |
clip = VideoFileClip(filename=video_file, target_resolution=None)
|
47 |
subtitles = parse_srt(srt_path)
|
48 |
subtitle_clips = []
|
@@ -58,4 +58,5 @@ def subtitler(video_file:str,
|
|
58 |
text_position = (subtitle_x_position, subtitle_y_position)
|
59 |
subtitle_clips.append(txt_clip.set_position(text_position))
|
60 |
video = CompositeVideoClip(size=None, clips=[clip] + subtitle_clips)
|
61 |
-
video.
|
|
|
|
42 |
srt_path = os.path.abspath(srt_path)
|
43 |
output_file = os.path.abspath(output_file)
|
44 |
temp_dir = os.path.abspath(f"{'/'.join(os.path.normpath(video_file).split(os.path.sep)[:-1])}/")
|
45 |
+
temp_audiofile = os.path.join(temp_dir, "temp_audio_file.mp4")
|
46 |
clip = VideoFileClip(filename=video_file, target_resolution=None)
|
47 |
subtitles = parse_srt(srt_path)
|
48 |
subtitle_clips = []
|
|
|
58 |
text_position = (subtitle_x_position, subtitle_y_position)
|
59 |
subtitle_clips.append(txt_clip.set_position(text_position))
|
60 |
video = CompositeVideoClip(size=None, clips=[clip] + subtitle_clips)
|
61 |
+
video.set_audio(temp_audiofile)
|
62 |
+
video.write_videofile(output_file, codec='libx264', audio_codec='aac')
|