alex commited on
Commit
80f7eb2
Β·
1 Parent(s): b530e65

tags added

Browse files
Files changed (2) hide show
  1. README.md +4 -0
  2. app.py +1 -1
README.md CHANGED
@@ -6,6 +6,10 @@ colorTo: red
6
  sdk: gradio
7
  sdk_version: 5.36.2
8
  app_file: app.py
 
 
 
 
9
  pinned: false
10
  short_description: Translate and Lipsync any video clips to English
11
  ---
 
6
  sdk: gradio
7
  sdk_version: 5.36.2
8
  app_file: app.py
9
+ tags:
10
+ - heygen
11
+ - translate
12
+ - lipsync
13
  pinned: false
14
  short_description: Translate and Lipsync any video clips to English
15
  ---
app.py CHANGED
@@ -1033,6 +1033,7 @@ with gr.Blocks(css=css) as demo:
1033
  label="OG Clip",
1034
  height=512
1035
  )
 
1036
 
1037
  with gr.Column(elem_id="step-column"):
1038
  gr.HTML("""
@@ -1043,7 +1044,6 @@ with gr.Blocks(css=css) as demo:
1043
 
1044
  video_output = gr.Video(label="Output", height=512)
1045
  lipsync = gr.Checkbox(label="Lipsync", value=False, visible=False)
1046
- duration = gr.Slider(5, 30, 30, step=1, label="Duration(s)")
1047
  translate_btn = gr.Button("πŸ€Ήβ€β™‚οΈ Translate")
1048
  translate_lipsync_btn = gr.Button("πŸ€Ήβ€β™‚οΈ Translate + πŸ’‹ Lipsync", variant='primary', elem_classes="button-gradient")
1049
 
 
1033
  label="OG Clip",
1034
  height=512
1035
  )
1036
+ duration = gr.Slider(5, 30, 10, step=1, label="Duration(s)")
1037
 
1038
  with gr.Column(elem_id="step-column"):
1039
  gr.HTML("""
 
1044
 
1045
  video_output = gr.Video(label="Output", height=512)
1046
  lipsync = gr.Checkbox(label="Lipsync", value=False, visible=False)
 
1047
  translate_btn = gr.Button("πŸ€Ήβ€β™‚οΈ Translate")
1048
  translate_lipsync_btn = gr.Button("πŸ€Ήβ€β™‚οΈ Translate + πŸ’‹ Lipsync", variant='primary', elem_classes="button-gradient")
1049