From 15b356c687a8fc5a18dd5603edb2f9c0d7d083d7 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 9 Oct 2014 17:52:52 +0200 Subject: disabled nonstandard vp8enc parameter --- src/flufigut.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/flufigut.py b/src/flufigut.py index 582f07e..31a2262 100755 --- a/src/flufigut.py +++ b/src/flufigut.py @@ -384,7 +384,10 @@ if output_format == 'flumotion': } for prop in record[recorder]: if prop != 'muxes': - flow['recorder'][name]['properties'][prop] = record[recorder][prop] + if prop == 'filename': + flow['recorder'][name]['properties'][prop] = record[recorder][prop] + else: + flow['recorder'][name]['properties'][prop] = record[recorder][prop] ### sanity checks, cont'd ####################################### @@ -472,6 +475,15 @@ elif output_format == 'player': ### end stream player configuration generator ################### +elif output_format == 'stats': + + ### init rrd statistic script generator ######################### + + ## tba... + print "nothing here!" + + ### en rrd statistic script generator ########################### + else: raise SystemExit("OUTPUT FORMAT: unknown format '%s'" % output_format) -- cgit v1.2.3