owiedotch commited on
Commit
059f475
·
verified ·
1 Parent(s): 49098ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=340)
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=360)
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=360)
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