You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the above code, play_args can override the default of ["paplay"], but it comes from the __init__() kwargs. Since self.config can't be accessed in a plugin until super().__init__() is called, it's not possible to pass this configuration from a plugin config.
Ideally the default would be the global player instead of hardcoded paplay to allow for other playback systems
The text was updated successfully, but these errors were encountered:
ovos-plugin-manager/ovos_plugin_manager/templates/tts.py
Line 821 in 8244ec5
In the above code,
play_args
can override the default of["paplay"]
, but it comes from the__init__()
kwargs. Sinceself.config
can't be accessed in a plugin untilsuper().__init__()
is called, it's not possible to pass this configuration from a plugin config.Ideally the default would be the global player instead of hardcoded
paplay
to allow for other playback systemsThe text was updated successfully, but these errors were encountered: