RafaG commited on
Commit
20945c0
·
verified ·
1 Parent(s): 61c6685

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -131,15 +131,7 @@ def generate_audio_from_file(file_path, modelo_de_voz, velocidade, tom, volume):
131
  os.makedirs(output_dir, exist_ok=True)
132
  output_file = os.path.join(output_dir, "new_audio.mp3")
133
 
134
- # Limpa o arquivo existente antes de gerar novo áudio
135
- if os.path.exists(output_file):
136
- try:
137
- os.remove(output_file)
138
- print(f"Arquivo anterior {output_file} removido com sucesso.")
139
- except Exception as e:
140
- print(f"Erro ao remover arquivo existente: {e}")
141
- return None
142
-
143
  cmd = [
144
  "edge-tts",
145
  "-f", file_path, # Certificar que o conteúdo do arquivo seja texto puro
 
131
  os.makedirs(output_dir, exist_ok=True)
132
  output_file = os.path.join(output_dir, "new_audio.mp3")
133
 
134
+ # Usar -f FILE para passar o caminho do arquivo de texto
 
 
 
 
 
 
 
 
135
  cmd = [
136
  "edge-tts",
137
  "-f", file_path, # Certificar que o conteúdo do arquivo seja texto puro