WebM transcoding added
[vpproxy.git] / vlcclient / vlcmessages.py
index da8606c1d3ac578d47b3ae22ba105d5a8187d42a..d2ebe45a375eb22ce8dc4e1ac17ad7bb665981a9 100644 (file)
@@ -13,6 +13,9 @@ class VlcMessage(object):
             command = 'new "' + stream_name + '" broadcast input "' + input + '" output ' + (pre_access + ':' if pre_access else '#')
             if qtype=='mp4':
                 command = command + 'transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128}:'
+            elif qtype=='webm':
+                command = command + 'transcode{vcodec=VP80,acodec=vorbis,vb=512,ab=64}:'
+                muxer='ffmpeg{mux=webm}'
             command = command +'http{mux=' + muxer + ',dst=:' + \
                 str(out_port) + '/' + stream_name + '} option sout-keep option sout-all enabled' + \
                 "\r\n" + 'control "' + stream_name + '" play'