Stream or play video in your Bevy app!
```rust use bevy::prelude::; use bevy_video::prelude::;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(VideoPlugin) .addstartupsystem(setup) .addsystem(pushframe) .run(); }
fn setup(
mut commands: Commands,
mut images: ResMut
// decoder
commands.spawn(video_decoder);
// ...
}
fn pushframe(
decoders: Query<&VideoDecoder>,
mut materials: ResMut
for decoder in decoders.iter() {
decoder.add_video_packet(/* Vec<u8> representing an H.264 packet */);
// Note: packets are decoded asynchronously in another thread
// The Images will update automatically
}
} ```