Niansuh commited on
Commit
c1d9f4f
·
verified ·
1 Parent(s): 7fb83d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -4,6 +4,7 @@ from io import BytesIO
4
  from pathlib import Path
5
  from typing import List
6
  import re
 
7
  from flask import Flask, request, render_template, send_file
8
 
9
  app = Flask(__name__)
@@ -34,7 +35,8 @@ class ElevenlabsTTS:
34
  def __init__(self):
35
  self.session = requests.Session()
36
  self.session.headers.update({"User-Agent": "Mozilla/5.0"})
37
- self.cache_dir = Path("./audio_cache")
 
38
  self.all_voices = {
39
  "Brian": "nPczCjzI2devNBz1zQrb",
40
  "Alice": "Xb7hH8MSUJpSbSDYk0k2",
@@ -46,7 +48,7 @@ class ElevenlabsTTS:
46
  if voice not in self.all_voices:
47
  raise ValueError(f"Voice '{voice}' not available")
48
 
49
- filename = self.cache_dir / f"{int(time.time())}.mp3"
50
  sentences = split_sentences(text)
51
 
52
  audio_chunks = {}
@@ -61,7 +63,7 @@ class ElevenlabsTTS:
61
  response.raise_for_status()
62
  audio_chunks[i] = response.content
63
 
64
- self.cache_dir.mkdir(parents=True, exist_ok=True)
65
  combined_audio = BytesIO()
66
  for i in sorted(audio_chunks.keys()):
67
  combined_audio.write(audio_chunks[i])
 
4
  from pathlib import Path
5
  from typing import List
6
  import re
7
+ import tempfile
8
  from flask import Flask, request, render_template, send_file
9
 
10
  app = Flask(__name__)
 
35
  def __init__(self):
36
  self.session = requests.Session()
37
  self.session.headers.update({"User-Agent": "Mozilla/5.0"})
38
+ # Use temporary directory instead of fixed cache_dir
39
+ self.cache_dir = Path(tempfile.gettempdir())
40
  self.all_voices = {
41
  "Brian": "nPczCjzI2devNBz1zQrb",
42
  "Alice": "Xb7hH8MSUJpSbSDYk0k2",
 
48
  if voice not in self.all_voices:
49
  raise ValueError(f"Voice '{voice}' not available")
50
 
51
+ filename = self.cache_dir / f"tts_{int(time.time())}.mp3"
52
  sentences = split_sentences(text)
53
 
54
  audio_chunks = {}
 
63
  response.raise_for_status()
64
  audio_chunks[i] = response.content
65
 
66
+ # No need to create directory as tempfile.gettempdir() already exists
67
  combined_audio = BytesIO()
68
  for i in sorted(audio_chunks.keys()):
69
  combined_audio.write(audio_chunks[i])