summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-10-09 17:54:46 +0200
committerChristian Pointner <equinox@spreadspace.org>2014-10-09 17:54:46 +0200
commited6d2cc989df520d7397f4f949f0b5b0c28eaf33 (patch)
treef58cc86d72d06dcea6f81e77c68029bf0b50f662 /src
parentdisabled nonstandard vp8enc parameter (diff)
added missing templates and a new minimal example
Diffstat (limited to 'src')
-rw-r--r--src/examples/avminimal.json64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/examples/avminimal.json b/src/examples/avminimal.json
new file mode 100644
index 0000000..a3e8f76
--- /dev/null
+++ b/src/examples/avminimal.json
@@ -0,0 +1,64 @@
+{
+ "globals":{
+ "templates": "default",
+ "version": "0.10.1",
+ "name": "avminimal",
+ "description": "flufigut example",
+ "domain": "spreadspace.org",
+ "rrd-dir": "/var/lib/flumotion/rrd",
+ "manager": {
+ "machine": "localhost",
+ "host": "127.0.0.1",
+ "port": 7531,
+ "transport": "ssl"
+ },
+ "resolutions": {
+ "360p25": { "width": 640, "height": 360, "rate": "25/1" }
+ },
+ "formats": {
+ "webm": { "muxer": "webm", "video": "vp8", "audio": "vorbis" }
+ },
+ "profiles": {
+ "low": { "video": "360p25", "audio": 96 }
+ },
+ "bitrates": {
+ "vp8": { "720p25": 2048, "480p25": 1024, "360p25": 600 }
+ },
+ "machines": {
+ "localhost": [ "input-video", "input-audio", "encoder-video-vp8-360p25", "encoder-audio-vorbis-96", "muxer-av-webm-low", "streamer-local1" ]
+ }
+ },
+ "input": {
+ "audio": {
+ "type": "audiotest",
+ "master": true,
+ "properties": {
+ "samplerate": 48000
+ }
+ },
+ "video": {
+ "type": "videotest",
+ "master": false,
+ "properties": {
+ "resolution": "360p25"
+ }
+ }
+ },
+ "mux": {
+ "av": {
+ "video": "video",
+ "audio": "audio",
+ "formats": {
+ "webm": [ "low" ]
+ }
+ }
+ },
+ "stream": {
+ "streamer-local": {
+ "muxes": [ "av" ],
+ "type": "http", "count": 1, "port": 8000,
+ "max-con": 5, "burst-on-connect": 5,
+ "hostname": "flufigut"
+ }
+ }
+}