mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
7508e35b7e
A scenario correspond to a suite of action to execute on a pipeline, for the time being, we only support seeking the pipeline, but in the future we can imagine doing some queries, setting pipeline state, etc... The scenario can be loaded thanks to the GST_QA_SCENARIO environment variable, making it usable with any existant application, in case, the application can be used interactively, the user should either, not load any scenario or let the application run without interacting with it.
13 lines
612 B
XML
13 lines
612 B
XML
<xml>
|
|
<seeks>
|
|
<seek name='First seek' seeking_time="1000000000" format="time"
|
|
rate="1.0" flags="accurate+flush" start_type="set"
|
|
start="2000000000" stop_type="set" stop="-1" />
|
|
<seek name='Second seek' seeking_time="3000000000" format="time"
|
|
rate="1.0" flags="accurate+flush" start_type="set"
|
|
start="0" stop_type="set" stop="-1" />
|
|
<seek name='Third seek' seeking_time="1000000000" format="time"
|
|
rate="1.0" flags="accurate+flush" start_type="set"
|
|
start="2000000000" stop_type="set" stop="3000000000" />
|
|
</seeks>
|
|
<xml>
|