I’ve used this path and made the folders in the root (media is in the same map als WWW). But no files are appearing. What log do I need to check exacly?
If there are no messages or error logs, it usually means the recording file has been saved successfully. Please carefully check if there is a file in your folder.
Alternatively, you can share screenshot of your configuration.
Also, you don’t need to create a folder manually. The integration will automatically create a folder based on the path you’ve set. If your path starts with /media, it will create the folder under the media directory. If the path doesn’t start with /media, it will create the folder under /homeassistant.
If your configured path is www, it will be saved in /homeassistant/www. If the path is www/your_dir, it will be saved in /homeassistant/www/your_dir.
Thank you for your effort, I did everything… I got no errors, I got file saved notification, but cannot find the file in the directory, may be I miss something or what to do please
Actually I can see the recorded files from inside Home assistant (file editor), but when browsing from file explorer I can not find the recorded files.
everything is working fine. I can now send an announcement to my home ![]()
Thank you ![]()
Hi
nice job done for this add!
Reverting to have only the mic icone should be wonderful (possibility to hide the drop-down menu!)
Thanks
Had some trouble figuring this out so putting reference for others.
Configured Voice Recorder output file path to /media/voice_recordings
Then for media_content_id I had to put /media/local/voice_recordings/{{ trigger.event.data.filename }} .
I tried first with just {{ trigger.event.data.path }} but that would not work. It would be nice if the integration could output the “local” path as well.
alias: play voice notification
description: ""
triggers:
- trigger: event
event_type: voice_recorder_saved
conditions: []
actions:
- action: media_player.play_media
target:
entity_id: media_player.announcement_speakers
data:
media_content_id: "/media/local/voice_recordings/{{ trigger.event.data.filename }}"
media_content_type: music
mode: single


