We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af05999 commit d6f0703Copy full SHA for d6f0703
src/pipeline.rs
@@ -350,7 +350,9 @@ fn make_pulsesrc_bin<'a>(device_names: impl IntoIterator<Item = &'a str>) -> Res
350
.property("provide-clock", false)
351
.property("do-timestamp", true)
352
.build()?;
353
- let audiorate = gst::ElementFactory::make("audiorate").build()?;
+ let audiorate = gst::ElementFactory::make("audiorate")
354
+ .property("skip-to-first", true)
355
+ .build()?;
356
357
bin.add_many([&pulsesrc, &audiorate])?;
358
pulsesrc.link_filtered(&audiorate, &pulsesrc_caps)?;
0 commit comments