mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
1b036156af
Using from gst import ges did not make much sense
14 lines
425 B
Python
14 lines
425 B
Python
import glib
|
|
import gst
|
|
|
|
from common import TestCase
|
|
import ges
|
|
|
|
class TimelinePipeline(TestCase):
|
|
|
|
def testTimelinePipeline(self):
|
|
stgs = gst.pbutils.EncodingAudioProfile(gst.Caps("video/x-dirac"), "test", gst.caps_new_any(), 0)
|
|
ppln = ges.TimelinePipeline()
|
|
tl = ges.Timeline()
|
|
assert (ppln.add_timeline (tl) == True)
|
|
assert (ppln.set_mode("TIMELINE_MODE_PREVIEW_AUDIO") == True)
|