firofame commited on
Commit
118e149
·
verified ·
1 Parent(s): d733c6e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -9
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("output.mp3", "wb") as file:
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", "output.mp3",
30
- "-vf", "subtitles=output.vtt",
31
  "-shortest",
32
- OUTPUT_FILE
33
  ]
34
  subprocess.run(ffmpeg_command)
35
 
36
- return OUTPUT_FILE
37
 
38
  interface = gradio.Interface(
39
  fn=text2video,
40
  inputs="text",
41
- outputs=["video"],
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()