Files
le-mystere-professeur-zacus/hardware/firmware/docs/hotline_tts/README.txt
T
Clément SAILLANT e2bdd8b66c Add SceneGyrophare effect implementation
- Introduced SceneGyrophareConfig structure for configuration parameters.
- Implemented SceneGyrophare class with methods for creating, destroying, and updating the gyrophare effect.
- Added rendering functions for background, beams, and warning triangle.
- Integrated timer for animation updates based on frame rate.
- Created a log file for ESP32 audio kit boot information.
2026-03-01 11:41:15 +01:00

63 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Organisation des fichiers TTS pour la hotline
Chaque scène dispose de ses fichiers TTS (text-to-speech) pour les différents états et situations.
Structure recommandée :
hotline_tts/
├── SCENE_U_SON_PROTO/
│ ├── indice_1.mp3
│ ├── indice_2.mp3
│ └── indice_3.mp3
├── SCENE_LA_DETECTOR/
│ ├── indice_1.mp3
│ ├── indice_2.mp3
│ └── indice_3.mp3
├── SCENE_WIN_ETAPE/
│ ├── attente_validation.mp3
│ ├── validation_ok.mp3
│ ├── validation_ko.mp3
├── SCENE_WARNING/
│ ├── indice_1.mp3
│ ├── indice_2.mp3
│ └── indice_3.mp3
├── SCENE_CREDITS/
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
├── SCENE_WIN_ETAPE1/
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
├── SCENE_WIN_ETAPE2/
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
│ ├── bravo_1.mp3
├── SCENE_QR_DETECTOR/
│ ├── indice_1.mp3
│ ├── indice_2.mp3
│ └── indice_3.mp3
├── SCENE_LEFOU_DETECTOR/
│ ├── indice_1.mp3
│ ├── indice_2.mp3
│ └── indice_3.mp3
├── SCENE_POLICE_CHASE_ARCADE/
│ ├── warning_1.mp3
│ ├── warning_2.mp3
│ └── warning_3.mp3
Pour chaque scène, prévoir :
- attente_validation.mp3
- validation_ok.mp3
- validation_ko.mp3
- indice_1.mp3, indice_2.mp3, indice_3.mp3 (si applicable)
Exemple de nommage :
SCENE_LA_DETECTOR/validation_ok.mp3
SCENE_WIN_ETAPE/indice_2.mp3
Tu peux adapter selon les besoins spécifiques de chaque scène.
Astuce : Ajoute un README.txt dans chaque dossier pour décrire le contenu et lusage des fichiers.