diff options
author | MaZderMind <github@mazdermind.de> | 2015-06-03 08:54:21 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-06-03 08:54:21 +0200 |
commit | c5206c70f027ac2183cd0716b24e45e31a952206 (patch) | |
tree | 975cc82ce58e23dcdf9ee0f173cbf3180f9ed31b /voctocore/scripts | |
parent | 5ecaea8562322570feac658cba5269c4285fe317 (diff) |
Fix Loop-Pipeline, fixes #1
Diffstat (limited to 'voctocore/scripts')
-rwxr-xr-x | voctocore/scripts/av-source-background-loop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/scripts/av-source-background-loop.py b/voctocore/scripts/av-source-background-loop.py index a4beede..bb54bbf 100755 --- a/voctocore/scripts/av-source-background-loop.py +++ b/voctocore/scripts/av-source-background-loop.py @@ -11,8 +11,8 @@ Gst.init([]) class LoopSource(object): def __init__(self): pipeline = """ - video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! uridecodebin name=src uri=http://c3voc.mazdermind.de/bg.ts ! + video/x-raw,format=I420,width=1900,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! matroskamux ! tcpclientsink host=localhost port=16000 """ |