Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def encode_audio(audio_path):
|
|
82 |
print(f"Encoding error: {str(e)}")
|
83 |
return None, f"Error encoding audio: {str(e)}"
|
84 |
|
85 |
-
@spaces.GPU(duration=
|
86 |
def decode_tokens(token_file):
|
87 |
"""Decode tokens to audio"""
|
88 |
# Ensure the file exists and has content
|
@@ -179,7 +179,7 @@ def process_both(audio_path):
|
|
179 |
print(f"Processing error: {str(e)}")
|
180 |
return None, f"Error processing audio: {str(e)}"
|
181 |
|
182 |
-
@spaces.GPU(duration=
|
183 |
def stream_both(audio_path):
|
184 |
"""Encode and then stream decode the audio"""
|
185 |
try:
|
@@ -261,7 +261,7 @@ def stream_both(audio_path):
|
|
261 |
print(f"Streaming process error: {str(e)}")
|
262 |
yield None, f"Error processing audio: {str(e)}"
|
263 |
|
264 |
-
@spaces.GPU(duration=
|
265 |
def stream_decode_tokens(token_file):
|
266 |
"""Decode tokens to audio in streaming chunks"""
|
267 |
# Ensure the file exists and has content
|
|
|
82 |
print(f"Encoding error: {str(e)}")
|
83 |
return None, f"Error encoding audio: {str(e)}"
|
84 |
|
85 |
+
@spaces.GPU(duration=160)
|
86 |
def decode_tokens(token_file):
|
87 |
"""Decode tokens to audio"""
|
88 |
# Ensure the file exists and has content
|
|
|
179 |
print(f"Processing error: {str(e)}")
|
180 |
return None, f"Error processing audio: {str(e)}"
|
181 |
|
182 |
+
@spaces.GPU(duration=160)
|
183 |
def stream_both(audio_path):
|
184 |
"""Encode and then stream decode the audio"""
|
185 |
try:
|
|
|
261 |
print(f"Streaming process error: {str(e)}")
|
262 |
yield None, f"Error processing audio: {str(e)}"
|
263 |
|
264 |
+
@spaces.GPU(duration=160)
|
265 |
def stream_decode_tokens(token_file):
|
266 |
"""Decode tokens to audio in streaming chunks"""
|
267 |
# Ensure the file exists and has content
|