mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-24 20:41:00 +00:00
fmp4mux: specify the fragment duration unit
The fragment duration is expressed in nanoseconds. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1348>
This commit is contained in:
parent
4569b7eca6
commit
68c2d27e8d
2 changed files with 2 additions and 2 deletions
|
@ -1888,7 +1888,7 @@
|
|||
"writable": true
|
||||
},
|
||||
"fragment-duration": {
|
||||
"blurb": "Duration for each FMP4 fragment",
|
||||
"blurb": "Duration for each FMP4 fragment in nanoseconds",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
|
|
|
@ -2827,7 +2827,7 @@ impl ObjectImpl for FMP4Mux {
|
|||
vec![
|
||||
glib::ParamSpecUInt64::builder("fragment-duration")
|
||||
.nick("Fragment Duration")
|
||||
.blurb("Duration for each FMP4 fragment")
|
||||
.blurb("Duration for each FMP4 fragment in nanoseconds")
|
||||
.default_value(DEFAULT_FRAGMENT_DURATION.nseconds())
|
||||
.mutable_ready()
|
||||
.build(),
|
||||
|
|
Loading…
Reference in a new issue