Permalink
  • 2 commits
  • 16 files changed
  • 4 commit comments
  • 1 contributor
View
@@ -54,3 +54,6 @@ clean:
test: lint unittests integration clean
generate-frames:
python tests/integrationtests/generate_reference_frames.py
@@ -104,8 +104,8 @@ def running_tests_audio(self, tests):
self._running_tests_audio = tests
def new_test_video(self,
width=300,
height=200,
width=1280,
height=720,
pattern=None,
timeoverlay=False,
clockoverlay=False):
@@ -71,8 +71,8 @@ def __init__(
self,
port,
host='localhost',
width=300,
height=200,
width=1280,
height=720,
pattern=None,
timeoverlay=False,
clockoverlay=False):
@@ -310,8 +310,8 @@ class VideoSrc(object):
def __init__(
self,
port,
width=300,
height=200,
width=1280,
height=720,
pattern=None,
timeoverlay=False,
clockoverlay=False):
@@ -21,7 +21,7 @@
PATH = '/usr/bin/'
PATH = '../../tools/'
INTERVAL = 1.0
@@ -33,17 +33,17 @@
try:
s.run()
cmd_vid1 = PATH
cmd_vid2 = PATH
cmd_vid1 += """gst-launch-1.0 videotestsrc pattern=1 ! \
# cmd_vid1 = PATH
# cmd_vid2 = PATH
cmd_vid1 = """gst-launch-1.0 videotestsrc pattern=1 is-live=true ! \
video/x-raw, width=300, height=200 !\
gdppay !
tcpclientsink port={0}
""".format(v_port)
print cmd_vid1
cmd_vid2 += """gst-launch-1.0 videotestsrc ! \
video/x-raw, width=300, height=200 !\
cmd_vid2 = """gst-launch-1.0 videotestsrc is-live=true ! \
video/x-raw, width=300, height=200 ! \
gdppay !
tcpclientsink port={0}
""".format(v_port)
@@ -3,6 +3,10 @@
Usually should be run just once
"""
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(__file__, "../..")))
from integrationtests.compare import GenerateReferenceFrames
from integrationtests.test_controller import TestSetCompositeMode
from integrationtests.test_controller import TestAdjustPIP
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -70,8 +70,8 @@ class MockVideoSrc(object):
def __init__(self,
port,
width=300,
height=200,
width=1280,
height=720,
pattern=None,
timeoverlay=False,
clockoverlay=False):

Showing you all comments on commits in this comparison.

@mithro

This comment has been minimized.

Show comment
Hide comment
@mithro

mithro Jan 16, 2015

Collaborator

These should be taking information from the input right?

Collaborator

mithro commented on 2e8087d Jan 16, 2015

These should be taking information from the input right?

@mithro

This comment has been minimized.

Show comment
Hide comment
@mithro

mithro Jan 16, 2015

Collaborator

BTW The full caps information are found in run-demos.sh

VIDEO_CAPS="video/x-raw, format=(string)I420, pixel-aspect-ratio=(fraction)1/1, width=(int)300, height=(int)200, framerate=(fraction)25/1"
AUDIO_CAPS="audio/x-raw, rate=48000, channels=2, format=S16LE, layout=interleaved"
Collaborator

mithro commented on 2e8087d Jan 16, 2015

BTW The full caps information are found in run-demos.sh

VIDEO_CAPS="video/x-raw, format=(string)I420, pixel-aspect-ratio=(fraction)1/1, width=(int)300, height=(int)200, framerate=(fraction)25/1"
AUDIO_CAPS="audio/x-raw, rate=48000, channels=2, format=S16LE, layout=interleaved"
@mithro

This comment has been minimized.

Show comment
Hide comment
@mithro

mithro Jan 16, 2015

Collaborator

See above.

Collaborator

mithro commented on 2e8087d Jan 16, 2015

See above.

@hyades

This comment has been minimized.

Show comment
Hide comment
@hyades

hyades Jan 16, 2015

Owner

yea its wip. Have to modify pipelines for helpers

Owner

hyades commented on 2e8087d Jan 16, 2015

yea its wip. Have to modify pipelines for helpers