Open sangheonEN opened 1 day ago
I am using version 1.9.5 of pvporcupine. This was the last free version before they went commercial.
1.9.5 of pvporcupine, can I use the keyword I want to wake up with for free?
I don't have a model created, so I don't know how to create a model.
No, you can only select from a predefined list of keywords with this version.
wakeword_backend: str = "pvporcupine",
If you look at the contents of https://pypi.org/project/pvporcupine/,
Create an instance of the engine
import pvporcupine
access_key = "${ACCESS_KEY}" # AccessKey obtained from Picovoice Console (https://console.picovoice.ai/)
handle = pvporcupine.create(access_key=access_key, keywords=['picovoice'])
When creating a model, access_key is required.
However, in the wakeword_test.py code of RealTimeSTT, access_key is not assigned when creating as shown below.
Are you providing a free version of the model yourself?
from RealtimeSTT import AudioToTextRecorder import logging
if name == 'main':