mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
transcriberbin: Set start-time-selection=first to cea608mux
We don't want to modify running time of caption stream Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1155>
This commit is contained in:
parent
4000d60305
commit
8576af247b
1 changed files with 3 additions and 1 deletions
|
@ -130,7 +130,9 @@ impl TranscriberBin {
|
||||||
.property("max-size-time", 5_000_000_000u64)
|
.property("max-size-time", 5_000_000_000u64)
|
||||||
.property_from_str("leaky", "downstream")
|
.property_from_str("leaky", "downstream")
|
||||||
.build()?;
|
.build()?;
|
||||||
let ccmux = gst::ElementFactory::make("cea608mux").build()?;
|
let ccmux = gst::ElementFactory::make("cea608mux")
|
||||||
|
.property_from_str("start-time-selection", "first")
|
||||||
|
.build()?;
|
||||||
let ccconverter = gst::ElementFactory::make("ccconverter").build()?;
|
let ccconverter = gst::ElementFactory::make("ccconverter").build()?;
|
||||||
|
|
||||||
state.transcription_bin.add_many([
|
state.transcription_bin.add_many([
|
||||||
|
|
Loading…
Reference in a new issue