A replacement for gst-launch that allows seeks.
More...
Go to the source code of this file.
|
| | gstlal_launch.parser |
| |
|
| gstlal_launch.type |
| |
|
| gstlal_launch.help |
| |
|
| gstlal_launch.opts |
| |
|
| gstlal_launch.rest |
| |
|
| gstlal_launch.mainloop = GObject.MainLoop() |
| |
|
| gstlal_launch.pipeline = Gst.parse_launch(' '.join(rest)) |
| |
|
| gstlal_launch.start_seektype = Gst.SeekType.SET |
| |
|
int | gstlal_launch.start_ns = opts.start * 1e9 |
| |
|
| gstlal_launch.end_seektype = Gst.SeekType.SET |
| |
|
int | gstlal_launch.end_ns = opts.end * 1e9 |
| |
|
| gstlal_launch.handler = simplehandler.Handler(mainloop, pipeline) |
| |
A replacement for gst-launch that allows seeks.
Definition in file gstlal_launch.
◆ parser
Initial value:= OptionParser(version='%prog 1.0', usage='%prog [options]',
description=__doc__)
Definition at line 17 of file gstlal_launch.