summaryrefslogtreecommitdiff
path: root/src/examples/audio.json
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2012-10-29 16:08:07 +0100
committerChristian Pointner <equinox@spreadspace.org>2012-10-29 16:08:07 +0100
commit8c3a5281580b679c5ce9b84eee62aa5a1fb479a9 (patch)
treeec3a3e2607a6f4aa5ddaae5d8028a397194d3ee6 /src/examples/audio.json
parentreverted few worker patch (diff)
moved example configs to examples di
Diffstat (limited to 'src/examples/audio.json')
-rw-r--r--src/examples/audio.json55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/examples/audio.json b/src/examples/audio.json
new file mode 100644
index 0000000..cdaa734
--- /dev/null
+++ b/src/examples/audio.json
@@ -0,0 +1,55 @@
+{
+ "globals":{
+ "templates": "default",
+ "version": "0.10.0",
+ "name": "audio-only",
+ "description": "Audio only test",
+ "domain": "spreadspace.org",
+ "rrd-dir": "/var/lib/flumotion/rrd",
+ "manager": {
+ "machine": "calypso",
+ "host": "89.106.215.48",
+ "port": 7531,
+ "transport": "ssl"
+ },
+ "formats": {
+ "ogg": { "muxer": "ogg", "audio": "vorbis" }
+ },
+ "profiles": {
+ "high": { "audio": 160 },
+ "medium": { "audio": 128 },
+ "low": { "audio": 96 }
+ },
+ "machines": {
+ "calypso": [ "input-alsa", "encoder-alsa-vorbis-160", "encoder-alsa-vorbis-128", "encoder-alsa-vorbis-96",
+ "muxer-audio-ogg-high", "muxer-audio-ogg-medium", "muxer-audio-ogg-low", "streamer-local1" ]
+ }
+ },
+ "input": {
+ "alsa": {
+ "type": "soundcard",
+ "master": true,
+ "properties": {
+ "samplerate": 48000,
+ "depth": 16,
+ "channels": 2
+ }
+ }
+ },
+ "mux": {
+ "audio": {
+ "audio": "alsa",
+ "formats": {
+ "ogg": [ "high", "medium", "low" ]
+ }
+ }
+ },
+ "stream": {
+ "streamer-local": {
+ "muxes": [ "audio" ],
+ "type": "http", "count": 1, "port": 8000,
+ "max-con": 5, "burst-on-connect": 5,
+ "hostname": "audio"
+ }
+ }
+}