Spaces:
Runtime error
Runtime error
Update vc.py
Browse files
vc.py
CHANGED
@@ -69,7 +69,7 @@ with gr.Blocks() as app:
|
|
69 |
start_time = gr.Textbox(label = "Start", value = "0:00", placeholder = "0:23")
|
70 |
end_time = gr.Textbox(label = "End", value = "0:01", placeholder = "1:12")
|
71 |
trim_clip_btn = gr.Button("Trim Clip")
|
72 |
-
trim_aud = gr.Audio(label = 'Trimmed Audio Source',
|
73 |
with gr.Column():
|
74 |
in_aud_yt = gr.Textbox(label="YouTube URL")
|
75 |
load_yt_btn = gr.Button("Load URL")
|
@@ -77,9 +77,9 @@ with gr.Blocks() as app:
|
|
77 |
|
78 |
|
79 |
|
80 |
-
in_aud_file.change(pre_aud,in_aud_file,aud_file)
|
81 |
load_yt_btn.click(load_video_yt, in_aud_yt, [yt_vid,in_aud_file,aud_file])
|
82 |
-
trim_clip_btn.click(trim_clip,[aud_file, start_time, end_time],trim_aud)
|
83 |
-
alt_go_btn.click(custom_bark, [in_text,in_aud_file
|
84 |
|
85 |
app.launch()
|
|
|
69 |
start_time = gr.Textbox(label = "Start", value = "0:00", placeholder = "0:23")
|
70 |
end_time = gr.Textbox(label = "End", value = "0:01", placeholder = "1:12")
|
71 |
trim_clip_btn = gr.Button("Trim Clip")
|
72 |
+
#trim_aud = gr.Audio(label = 'Trimmed Audio Source', sources='upload', interactive = False)
|
73 |
with gr.Column():
|
74 |
in_aud_yt = gr.Textbox(label="YouTube URL")
|
75 |
load_yt_btn = gr.Button("Load URL")
|
|
|
77 |
|
78 |
|
79 |
|
80 |
+
#in_aud_file.change(pre_aud,in_aud_file,aud_file)
|
81 |
load_yt_btn.click(load_video_yt, in_aud_yt, [yt_vid,in_aud_file,aud_file])
|
82 |
+
#trim_clip_btn.click(trim_clip,[aud_file, start_time, end_time],trim_aud)
|
83 |
+
alt_go_btn.click(custom_bark, [in_text,in_aud_file], out_audio)
|
84 |
|
85 |
app.launch()
|