Spaces:
Configuration error
Configuration error
Update views.py
Browse files- texttovoice/views.py +4 -4
texttovoice/views.py
CHANGED
@@ -15,8 +15,8 @@ from drf_yasg.utils import swagger_auto_schema
|
|
15 |
|
16 |
class TextToSpeechCreateView(CreateAPIView):
|
17 |
serializer_class = TextToSpeechSerializer
|
18 |
-
|
19 |
-
|
20 |
|
21 |
parser_classes = [MultiPartParser]
|
22 |
|
@@ -65,8 +65,8 @@ class TextToSpeechCreateView(CreateAPIView):
|
|
65 |
print("after creating the speaker file path",speaker_file_path)
|
66 |
|
67 |
# Generate speech using tts.tts_to_file
|
68 |
-
|
69 |
-
|
70 |
|
71 |
# Define a function to delete the output file
|
72 |
def file_iterator(file_name):
|
|
|
15 |
|
16 |
class TextToSpeechCreateView(CreateAPIView):
|
17 |
serializer_class = TextToSpeechSerializer
|
18 |
+
authentication_classes = [TokenAuthentication] # Apply token authentication
|
19 |
+
permission_classes = [IsAuthenticated] # Require authentication for this view
|
20 |
|
21 |
parser_classes = [MultiPartParser]
|
22 |
|
|
|
65 |
print("after creating the speaker file path",speaker_file_path)
|
66 |
|
67 |
# Generate speech using tts.tts_to_file
|
68 |
+
tts = TTS("tts_models/multilingual/multi-dataset/xtts_v2", gpu=False)
|
69 |
+
tts.tts_to_file(text=text, file_path=output_filename, speaker_wav=speaker_file_path, language=language)
|
70 |
|
71 |
# Define a function to delete the output file
|
72 |
def file_iterator(file_name):
|