Skip to content

Commit

Permalink
Merge pull request #483 from Enzokot/master
Browse files Browse the repository at this point in the history
Добавлены настройки Алисы: "Адаптивная громкость" и "Кроссфейд"
  • Loading branch information
AlexxIT authored Apr 3, 2024
2 parents edaae2b + 3699713 commit 904a797
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -753,11 +753,11 @@ script:
change_settings:
alias: Изменение настроек Алисы
sequence:
- service: media_player.play_media
entity_id: media_player.yandex_station # замените на любую вашу колонку
data:
media_content_id: 'без лишних слов: да' # пробел после двоеточия
media_content_type: settings
- service: media_player.play_media
data:
entity_id: media_player.yandex_station # замените на любую вашу колонку
media_content_id: 'без лишних слов: да' # пробел после двоеточия
media_content_type: settings
```

Поддерживаемые значения:
Expand All @@ -773,6 +773,8 @@ script:
- `взрослый голос: умеренный/семейный/безопасный/без ограничений`
- `детский голос: безопасный/семейный`
- `имя: алиса/яндекс`
- `адаптивная громкость: да/нет`
- `кроссфейд: да/нет`

## Несколько TTS в конфиге

Expand Down
14 changes: 14 additions & 0 deletions custom_components/yandex_station/core/yandex_quasar.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,20 @@ async def set_account_config(self, key: str, value):
"key": "aliceProactivity", # /get_account_config
"values": BOOL_CONFIG,
},
"адаптивная громкость": {
"key": "aliceAdaptiveVolume", # /get_account_config
"values": {
"да": {"enabled": True},
"нет": {"enabled": False},
},
},
"кроссфейд": {
"key": "audio_player", # /get_account_config
"values": {
"да": {"crossfadeEnabled": True},
"нет": {"crossfadeEnabled": False},
},
},
"взрослый голос": {
"key": "contentAccess", # /get_account_config
"values": {
Expand Down

0 comments on commit 904a797

Please sign in to comment.