跳到主要內容

發表文章

目前顯示的是 2023的文章

解決Homepod mini升級16.4後無法TTS的問題

  【】 homepod mini升級到16.4後,delay時間由4秒變為7秒 【解決步驟】 open ha cli then type login it should give you a prompt # type: docker exec -it $(docker ps -f name=homeassistant -q) bash now you should be inside the homeassistant container open the pyatv file: vi /usr/local/lib/python3.10/site-packages/pyatv/support/http.py change the timeout from 4 to 10 before: async with async_timeout.timeout(4): after: async with async_timeout.timeout(10): restart your homeassistant and you should be good to go! 【參考文章】 https://github.com/home-assistant/core/issues/88014