-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump OPM needs OpenVoiceOS/ovos-plugin-manager#207 * 🎉 latest OCP . --------- Co-authored-by: JarbasAi <[email protected]>
- Loading branch information
1 parent
5fc613d
commit a19edd4
Showing
15 changed files
with
152 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
recursive-include ovos_audio_plugin_simple/ * | ||
recursive-include ovos_media_plugin_simple/ * | ||
recursive-include requirements/ * | ||
include CHANGELOG.md | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ovos-media-plugin-simple | ||
|
||
simple plugin for [ovos-media](https://github.com/OpenVoiceOS/ovos-media) | ||
|
||
tries to use the best command line utility available to play audio, `sox` is recommended | ||
|
||
## Install | ||
|
||
`pip install ovos-media-plugin-simple` | ||
|
||
## Configuration | ||
|
||
|
||
```javascript | ||
{ | ||
"media": { | ||
|
||
// keys are the strings defined in "audio_players" | ||
"preferred_audio_services": ["mplayer", "vlc", "simple"], | ||
|
||
// PlaybackType.AUDIO handlers | ||
"audio_players": { | ||
// simple player uses a slave simple instance to handle uris | ||
"simple": { | ||
// the plugin name | ||
"module": "ovos-media-audio-plugin-simple", | ||
|
||
// users may request specific handlers in the utterance | ||
// using these aliases | ||
"aliases": ["Simple Player", "Command line"], | ||
|
||
// deactivate a plugin by setting to false | ||
"active": true | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
ovos-plugin-manager | ||
ovos_plugin_common_play | ||
ovos-plugin-manager>=0.0.26a5 |
Oops, something went wrong.