diff --git a/src/rtsp/stream.rs b/src/rtsp/stream.rs index f351b77e..b1cf85c6 100644 --- a/src/rtsp/stream.rs +++ b/src/rtsp/stream.rs @@ -792,6 +792,12 @@ async fn send_to_appsrc> + Unpin>( appsrc.set_state(gstreamer::State::Playing).unwrap(); buffer_inited = true; log::info!("Playing state on {}", appsrc.name()); + } else if !buffer_inited { + log::info!( + "{} of {}", + appsrc.current_level_bytes(), + (appsrc.max_bytes() * 3 / 2) + ); } } AnyResult::Ok(())