fmp4: define minBufferTime in example mpd

Required to validate the manifest with https://beta.conformance.dashif.org/

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1196>
This commit is contained in:
Guillaume Desmottes 2023-04-27 14:16:40 +02:00
parent 05ee55d617
commit 76c8279101

View file

@ -261,6 +261,7 @@ fn main() -> Result<(), Error> {
profiles: Some("urn:mpeg:dash:profile:isoff-on-demand:2011".to_string()),
periods: vec![period],
mediaPresentationDuration: Some(std::time::Duration::from_millis(duration)),
minBufferTime: Some(std::time::Duration::from_secs(1)),
..Default::default()
};