-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.py
273 lines (246 loc) · 8.37 KB
/
ui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import multiprocessing as mp
import flet as ft
from TikTokLive import TikTokLiveClient
from TikTokLive.events import ConnectEvent, CommentEvent
import threading
import gtts.lang
import pyttsx3
from gtts import gTTS
from pygame import mixer
import random
import os, tempfile, gtts, subprocess, gtts
import time
import asyncio
class TK:
def __init__(self) -> None:
self.client: TikTokLiveClient = None
def on_connect(self, event: ConnectEvent):
print(f'Conectado como: {event.unique_id}, (Room ID: {self.client.room_id})')
def on_comment(self, event: CommentEvent):
print(f"{event.user.nickname} -> {event.comment}")
tts.hablar(event.comment, cts.voice_dropdown.value)
cts.chat.controls.append(ft.Text(f"{event.user.nickname} -> {event.comment}"))
ui.update()
def connect_tiktok_live(self):
'''
Conecta a tiktok live
'''
if not self.client:
self.client = TikTokLiveClient(unique_id=cts.unique_id_input.value)
ui.save_storage(data={'key':'uniqueId', 'value':cts.unique_id_input.value})
@self.client.on(ConnectEvent)
async def on_connect_wrapper(event: ConnectEvent):
self.on_connect(event)
self.client.add_listener(CommentEvent, self.on_comment)
try:
self.client.run()
print('Conectado a chat')
except Exception as e:
cts.botao_iniciar.visible = True
cts.unique_id_input.visible = True
cts.unique_id_input.value = None
print('Error al conectar')
ui._page.update()
def connect_tiktok_live_thread(self):
threading.Thread(target=self.connect_tiktok_live).start()
def enviar_mensaje_tunel(mensaje: dict):
if mensaje["tipo"] == "mensaje":
# Añadir el mensaje al chat
cts.chat.controls.append(
ft.Text(
f"{mensaje['usuario']}: {mensaje['texto']}"
)
)
else:
cts.chat.controls.append(
ft.Text(
f"{mensaje['usuario']} ha entrado al chat",
size=12,
italic=True,
color=ft.colors.ORANGE_500
)
)
ui.update()
class TTS:
def __init__(self):
'''
Clase para tener la utilidades de gTTS.
'''
self.data = None
def get_available_voices(self):
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.stop()
#print("Available voices:")
voice_names = []
for voice in voices:
voice_names.append(voice.name)
#print(f" - Name: {voice.name}, ID: {voice.id}, Languages: {voice.languages}")
return voice_names
def hablar(self, mensaje, lang1):
# Usar libreria gTTS
volume = 1
tts = gTTS(mensaje, lang="es" if lang1 is None else lang1, slow=False)
ran = random.randint(0,9999)
filename = 'Temp' + format(ran) + '.mp3'
tts.save(filename)
mixer.init()
mixer.music.load(filename)
mixer.music.set_volume(volume)
mixer.music.play()
while mixer.music.get_busy():
time.sleep(0.3)
mixer.quit()
os.remove(filename)
class COMPONETS:
def __init__(self):
'''
Clase para tener los componentes UI.
'''
self.userTemp = ''
self.title = ft.Text("Available Text-to-Speech Voices")
self.texto = ft.Text("TiktokLive")
self.chat = ft.Column(
scroll="auto",
height=400,
visible=False
)
self.option = [
ft.dropdown.Option(
key=lang,
text=lang
) for lang in gtts.lang.tts_langs()
]
self.voice_dropdown = ft.Dropdown(
on_change=self.dropdown_changed,
width=300,
options=self.option
)
self.unique_id_input = ft.TextField(
label="Escribe UniqueId" ,
hint_text='coloca usuario',
value=None
)
self.campo_mensaje = ft.TextField(
label="Escribe un mensaje",
on_submit=self.enviar_mensaje,
visible=False
)
self.botao_enviar_mensaje = ft.ElevatedButton(
"Enviar",
on_click=self.enviar_mensaje,
visible=False
)
self.popup = ft.AlertDialog(
open=False,
modal=True,
title=ft.Text("Escribe UniqueId para conectar"),
content=self.unique_id_input,
actions=[ft.ElevatedButton("Entrar", on_click=self.entrar_popup)],
)
self.botao_iniciar = ft.ElevatedButton("Iniciar chat", on_click=self.entrar_chat)
self.list_elements = [
self.title,
self.voice_dropdown,
self.texto,
self.botao_iniciar,
self.unique_id_input,
self.chat,
self.campo_mensaje,
self.botao_enviar_mensaje
]
self.content = ft.Column(
self.list_elements
)
self.window = ft.Container(
content=self.content
)
def entrar_chat(self, evento):
tk.connect_tiktok_live_thread()
ui._page.add(self.chat)
# ui._page.remove(self.botao_iniciar)
self.botao_iniciar.visible = False
# ui._page.remove(self.texto)
self.texto.visible = False
self.unique_id_input.visible = False
ui._page.title = f'TTS - Tiktok - {self.unique_id_input.value}'
self.userTemp = self.unique_id_input.value
self.campo_mensaje.visible = True
self.botao_enviar_mensaje.visible = True
self.chat.visible = True
ui._page.update()
def entrar_popup(self, evento):
ui._page.pubsub.send_all({"usuario": self.unique_id_input.value, "tipo": "entrada"})
# Añadir el chat
ui._page.add(self.chat)
# Cerrar el popup
self.popup.open = False
# Quitar el botón de iniciar chat
ui._page.remove(self.botao_iniciar)
ui._page.remove(self.texto)
# Crear el campo de mensaje del usuario
# Crear el botón de enviar mensaje del usuario
ui._page.add(ft.Row(
[self.campo_mensaje, self.botao_enviar_mensaje]
))
ui._page.update()
def enviar_mensaje(self, evento):
ui._page.pubsub.send_all(
{"texto": self.userTemp,
"usuario": self.unique_id_input.value,
"tipo": "mensaje"}
)
# Limpiar el campo de mensaje
self.chat.controls.append(ft.Text(f"{self.userTemp}: {self.campo_mensaje.value}"))
self.campo_mensaje.value = ""
ui._page.update()
def dropdown_changed(self, e):
self.texto.value = f"Dropdown cambiado a {self.voice_dropdown.value}"
tts.hablar(self.voice_dropdown.value, self.voice_dropdown.value)
e.page.update()
class UI:
def __init__(self):
'''
Clase la cual se encarga de iniciar flet y organizar la ventana.
'''
self._page = None
def __call__(self, flet_page: ft.Page):
self._page = flet_page
self._page.title = 'TTS - Tiktok'
self._page.theme_mode = ft.ThemeMode.DARK
self.initial()
self._page.add(
cts.window
)
def get_uniqueId_storage(self) -> str:
'''
Devuelve el uniqueId del almacenamiento del cliente.
'''
try:
uniqueId = self._page.client_storage.get('uniqueId') or None
return uniqueId
except TimeoutError:
uniqueId = None
print("Error al acceder al almacenamiento del cliente")
return uniqueId
def save_storage(self, data: dict):
'''
Guarda datos en la session del cliente, recibe un diccionaro:
```
data = {
'key': 'Mi Clave',
'value': 'Valor de la Clase'
}
```
'''
self._page.client_storage.set(key=data['key'], value=data['value'])
def initial(self):
cts.unique_id_input.value = self.get_uniqueId_storage()
def update(self):
self._page.update()
if __name__ == '__main__':
tk = TK()
tts = TTS()
cts = COMPONETS()
ui = UI()
ft.app(target=ui, assets_dir="static")