We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The tts platform asks the media_player.mpd to play the mp3 file that google_translate generated.
I'm using the nginx addon, and I have certificates from ssl-for-free.
The platform gives a URI to the media_player of the form "https://my.public.dns/tts_proxy/something.mp3"
When mpd attempts to get the file, the attempt fails, I think because the mopidy addon does not trust the certificates of the HA web server.
Is there a way to either:
I found this that could be part of 2) From https://stackoverflow.com/a/33717517/1695680
To make python requests use the system ca-certificates bundle, it needs to be told to use it over its own embedded bundle
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt Requests embeds its bundles here, for reference:
/usr/local/lib/python2.7/site-packages/requests/cacert.pem /usr/lib/python3/dist-packages/requests/cacert.pem
The text was updated successfully, but these errors were encountered:
Folks says, we should use mopidy from https://github.com/assada/hassio-addons instead
Sorry, something went wrong.
I did not see that one, so I cloned this repo ( to https://github.com/kentloving/hassio-addons ) and made it work.
No branches or pull requests
The tts platform asks the media_player.mpd to play the mp3 file that google_translate generated.
I'm using the nginx addon, and I have certificates from ssl-for-free.
The platform gives a URI to the media_player of the form "https://my.public.dns/tts_proxy/something.mp3"
When mpd attempts to get the file, the attempt fails, I think because the mopidy addon does not trust the certificates of the HA web server.
Is there a way to either:
I found this that could be part of 2)
From https://stackoverflow.com/a/33717517/1695680
To make python requests use the system ca-certificates bundle, it needs to be told to use it over its own embedded bundle
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
Requests embeds its bundles here, for reference:
/usr/local/lib/python2.7/site-packages/requests/cacert.pem
/usr/lib/python3/dist-packages/requests/cacert.pem
The text was updated successfully, but these errors were encountered: