jpjp9292 commited on
Commit
7241525
Β·
verified Β·
1 Parent(s): f6cf6f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -93,14 +93,11 @@ def mp4_to_mp3_converter(video_file):
93
  # Gradio μΈν„°νŽ˜μ΄μŠ€ μ„€μ •
94
  iface = gr.Interface(
95
  fn=mp4_to_mp3_converter,
96
- inputs=[
97
- gr.File(label="λΉ„λ””μ˜€ 파일 μ—…λ‘œλ“œ"), # λΉ„λ””μ˜€ 파일 μ—…λ‘œλ“œ
98
- gr.File(label="이미지 파일 μ—…λ‘œλ“œ") # 이미지 파일 μ—…λ‘œλ“œ
99
- ],
100
- # inputs=gr.File(label="λΉ„λ””μ˜€ 파일 μ—…λ‘œλ“œ"),
101
  outputs=[gr.Markdown(), gr.File(label="λ‹€μš΄λ‘œλ“œ MP3")], # μƒνƒœ λ©”μ‹œμ§€μ™€ λ‹€μš΄λ‘œλ“œ κ°€λŠ₯ν•œ 파일 좜λ ₯
102
  title="λΉ„λ””μ˜€μ—μ„œ μŒμ„± 파일둜 λ³€ν™˜κΈ°",
103
- description="λΉ„λ””μ˜€ νŒŒμΌμ„ μ—…λ‘œλ“œν•˜μ—¬ MP3 ν˜•μ‹μœΌλ‘œ λ³€ν™˜ν•©λ‹ˆλ‹€. μ—…λ‘œλ“œ μ‹œκ°„μ€ μ½˜μ†”μ— ν‘œμ‹œλ©λ‹ˆλ‹€.",
104
  allow_flagging=False,
105
  )
106
 
 
93
  # Gradio μΈν„°νŽ˜μ΄μŠ€ μ„€μ •
94
  iface = gr.Interface(
95
  fn=mp4_to_mp3_converter,
96
+
97
+ inputs=gr.File(label="λΉ„λ””μ˜€ 파일 μ—…λ‘œλ“œ"),
 
 
 
98
  outputs=[gr.Markdown(), gr.File(label="λ‹€μš΄λ‘œλ“œ MP3")], # μƒνƒœ λ©”μ‹œμ§€μ™€ λ‹€μš΄λ‘œλ“œ κ°€λŠ₯ν•œ 파일 좜λ ₯
99
  title="λΉ„λ””μ˜€μ—μ„œ μŒμ„± 파일둜 λ³€ν™˜κΈ°",
100
+ description="λΉ„λ””μ˜€ νŒŒμΌμ„ MP3 ν˜•μ‹μœΌλ‘œ λ³€ν™˜ν•©λ‹ˆλ‹€.",
101
  allow_flagging=False,
102
  )
103