summaryrefslogtreecommitdiff
path: root/example-scripts
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2016-01-28 11:19:43 +0100
committerMaZderMind <git@mazdermind.de>2016-02-02 16:05:56 +0100
commit6bc0e4f5733c2abb6aaf85bb3e0ec2cab4322a7c (patch)
tree4e171236ed132eae58942c9c84477e6e0fe8b198 /example-scripts
parent757572f64d10172341b60191dcbfe7ba280bd286 (diff)
remove unnecessary slashes
Diffstat (limited to 'example-scripts')
-rwxr-xr-xexample-scripts/gstreamer/source-videotestsrc-as-cam1-with-networktime.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/example-scripts/gstreamer/source-videotestsrc-as-cam1-with-networktime.py b/example-scripts/gstreamer/source-videotestsrc-as-cam1-with-networktime.py
index cf3870c..63ee180 100755
--- a/example-scripts/gstreamer/source-videotestsrc-as-cam1-with-networktime.py
+++ b/example-scripts/gstreamer/source-videotestsrc-as-cam1-with-networktime.py
@@ -12,16 +12,16 @@ class Source(object):
def __init__(self):
# it works much better with a local file
pipeline = """
- videotestsrc pattern=ball foreground-color=0x00ff0000 background-color=0x00440000 !\
+ videotestsrc pattern=ball foreground-color=0x00ff0000 background-color=0x00440000 !
timeoverlay !
- video/x-raw,format=I420,width=192,height=108,framerate=25/1,pixel-aspect-ratio=1/1 !\
- mux. \
- \
- audiotestsrc freq=330 !\
- audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !\
- mux. \
- \
- matroskamux name=mux !\
+ video/x-raw,format=I420,width=192,height=108,framerate=25/1,pixel-aspect-ratio=1/1 !
+ mux.
+
+ audiotestsrc freq=330 !
+ audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !
+ mux.
+
+ matroskamux name=mux !
tcpclientsink host=127.0.0.1 port=10000
"""