Metadata-Version: 2.4
Name: ovos-media-plugin-simple
Version: 0.1.0a1
Summary: simple OCP plugin for ovos
Author-email: JarbasAi <jarbasai@mailfence.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/OpenVoiceOS/ovos-media-plugin-simple
Keywords: ovos,audio,OCP,plugin
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ovos-plugin-manager<3.0.0,>=2.1.0
Dynamic: license-file

# 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
        }
    }
}
```
