Update app.py
Browse files
app.py
CHANGED
@@ -3,15 +3,16 @@ import edge_tts
|
|
3 |
import subprocess
|
4 |
|
5 |
VOICE = "ml-IN-MidhunNeural"
|
|
|
|
|
|
|
|
|
6 |
|
7 |
async def text2video(text):
|
8 |
-
OUTPUT_FILE = "output.mp4"
|
9 |
-
WEBVTT_FILE = "output.vtt"
|
10 |
-
|
11 |
communicate = edge_tts.Communicate(text, VOICE)
|
12 |
submaker = edge_tts.SubMaker()
|
13 |
|
14 |
-
with open(
|
15 |
async for chunk in communicate.stream():
|
16 |
if chunk["type"] == "audio":
|
17 |
file.write(chunk["data"])
|
@@ -26,19 +27,19 @@ async def text2video(text):
|
|
26 |
"-y",
|
27 |
"-stream_loop", "1",
|
28 |
"-i", "background.mp4",
|
29 |
-
"-i",
|
30 |
-
"-vf", "subtitles=
|
31 |
"-shortest",
|
32 |
-
|
33 |
]
|
34 |
subprocess.run(ffmpeg_command)
|
35 |
|
36 |
-
return
|
37 |
|
38 |
interface = gradio.Interface(
|
39 |
fn=text2video,
|
40 |
inputs="text",
|
41 |
-
outputs=
|
42 |
)
|
43 |
|
44 |
interface.launch()
|
|
|
3 |
import subprocess
|
4 |
|
5 |
VOICE = "ml-IN-MidhunNeural"
|
6 |
+
VIDEO_FILE = "output.mp4"
|
7 |
+
AUDIO_FILE = "output.mp3"
|
8 |
+
WEBVTT_FILE = "output.vtt"
|
9 |
+
FONT_SIZE = 40
|
10 |
|
11 |
async def text2video(text):
|
|
|
|
|
|
|
12 |
communicate = edge_tts.Communicate(text, VOICE)
|
13 |
submaker = edge_tts.SubMaker()
|
14 |
|
15 |
+
with open(AUDIO_FILE, "wb") as file:
|
16 |
async for chunk in communicate.stream():
|
17 |
if chunk["type"] == "audio":
|
18 |
file.write(chunk["data"])
|
|
|
27 |
"-y",
|
28 |
"-stream_loop", "1",
|
29 |
"-i", "background.mp4",
|
30 |
+
"-i", AUDIO_FILE,
|
31 |
+
"-vf", f"subtitles={WEBVTT_FILE}:force_style='FontSize={FONT_SIZE}'",
|
32 |
"-shortest",
|
33 |
+
VIDEO_FILE
|
34 |
]
|
35 |
subprocess.run(ffmpeg_command)
|
36 |
|
37 |
+
return VIDEO_FILE
|
38 |
|
39 |
interface = gradio.Interface(
|
40 |
fn=text2video,
|
41 |
inputs="text",
|
42 |
+
outputs="video",
|
43 |
)
|
44 |
|
45 |
interface.launch()
|