-
from mycroft.skills.audioservice import AudioService what is the name of the ovos library? Not listed in the docs |
Beta Was this translation helpful? Give feedback.
Answered by
JarbasAl
Mar 2, 2024
Replies: 1 comment
-
If you share your skill we can give better advice, but the direct replacement is this works a bit differently under OVOS, while in mycroft this was the only way to play audio, in OVOS this is a subsystem of the media handling framework, it's strongly recommended to move to I'm still working in OCP docs and will post a link here later. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JarbasAl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you share your skill we can give better advice, but the direct replacement is
from ovos_bus_client.apis.ocp import OCPAudioServiceInterface
this works a bit differently under OVOS, while in mycroft this was the only way to play audio, in OVOS this is a subsystem of the media handling framework, it's strongly recommended to move to
OCPInterface
instead.I'm still working in OCP docs and will post a link here later.