Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import torch
|
3 |
-
import torchaudio
|
4 |
import librosa
|
5 |
-
import numpy as np
|
6 |
|
7 |
def audio_to_pth(audio):
|
8 |
# 音声ファイル(ファイルパス)を読み込む
|
@@ -20,7 +18,7 @@ def audio_to_pth(audio):
|
|
20 |
# Gradio インターフェースの設定
|
21 |
iface = gr.Interface(
|
22 |
fn=audio_to_pth,
|
23 |
-
inputs=gr.
|
24 |
outputs="file",
|
25 |
title="Audio to .PTH Converter",
|
26 |
description="Upload an audio file to convert it to a .pth file containing audio features."
|
|
|
1 |
import gradio as gr
|
2 |
import torch
|
|
|
3 |
import librosa
|
|
|
4 |
|
5 |
def audio_to_pth(audio):
|
6 |
# 音声ファイル(ファイルパス)を読み込む
|
|
|
18 |
# Gradio インターフェースの設定
|
19 |
iface = gr.Interface(
|
20 |
fn=audio_to_pth,
|
21 |
+
inputs=gr.Audio(type="filepath"), # `source="upload"` は不要です
|
22 |
outputs="file",
|
23 |
title="Audio to .PTH Converter",
|
24 |
description="Upload an audio file to convert it to a .pth file containing audio features."
|