summaryrefslogtreecommitdiff
path: root/contrib/flumotion-components/muxers/mkv.py
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-01-29 12:40:03 +0100
committerChristian Pointner <equinox@spreadspace.org>2014-01-29 12:40:03 +0100
commit1302840af44224fc767a3df88df04d85ccdcca94 (patch)
treef3e8d9988568932b50bd71629afa4d5bb0f160f4 /contrib/flumotion-components/muxers/mkv.py
parentimproved parameter for vp8-encoder (diff)
added pipeline-consumer and rtmp example using it
Diffstat (limited to 'contrib/flumotion-components/muxers/mkv.py')
-rw-r--r--contrib/flumotion-components/muxers/mkv.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/contrib/flumotion-components/muxers/mkv.py b/contrib/flumotion-components/muxers/mkv.py
new file mode 100644
index 0000000..7b035c8
--- /dev/null
+++ b/contrib/flumotion-components/muxers/mkv.py
@@ -0,0 +1,32 @@
+# -*- Mode: Python -*-
+# vi:si:et:sw=4:sts=4:ts=4
+
+# Flumotion - a streaming media server
+# Copyright (C) 2004,2005,2006,2007,2008,2009 Fluendo, S.L.
+# Copyright (C) 2010,2011 Flumotion Services, S.A.
+# All rights reserved.
+#
+# This file may be distributed and/or modified under the terms of
+# the GNU Lesser General Public License version 2.1 as published by
+# the Free Software Foundation.
+# This file is distributed without any warranty; without even the implied
+# warranty of merchantability or fitness for a particular purpose.
+# See "LICENSE.LGPL" in the source distribution for more information.
+#
+# Headers in this file shall remain intact.
+
+from flumotion.common import messages
+from flumotion.common.i18n import N_, gettexter
+from flumotion.component import feedcomponent
+from flumotion.worker.checks import check
+
+__version__ = "$Rev$"
+T_ = gettexter()
+
+
+class MKV(feedcomponent.MuxerComponent):
+ checkTimestamp = True
+
+ def get_muxer_string(self, properties):
+ muxer = 'matroskamux name=muxer streamable=true'
+ return muxer