1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#28 in #playback
26 downloads per month
Used in 5 crates
(4 directly)
1.5MB
11K
SLoC
Aloe Video
Welcome to the Aloe Video crate, a sophisticated Rust library engineered for seamless video playback control and management across multiple platforms.
Overview
Aloe Video provides a comprehensive component for handling video playback through the VideoComponent structure. It abstracts various operations such as loading from local files and URLs, asynchronous content loading, playback control (play, stop, pause), and video attribute queries like duration, size, and playback speed.
Key Features
- Multi-platform support: Windows, macOS, iOS, and Android.
- Asynchronous video loading and callbacks.
- Native or custom UI component integration.
- Rich video control methods: play, pause, stop, and speed adjustments.
- Query functions for current playback status and video properties.
Usage
To utilize Aloe Video in your project, implement the trait VideoComponentImplInterface
for custom video handling logic and integrate VideoComponent
into your application.
use aloe_video::{VideoComponent, VideoComponentImplInterface};
struct MyVideoComponent;
impl VideoComponentImplInterface for MyVideoComponent {}
fn main() {
let mut video = VideoComponent::new(true);
video.load_async("http://example.com/video.mp4", |url, result| {
match result {
Ok(_) => println!("Video loaded successfully from {url}"),
Err(_) => println!("Error loading video from {url}"),
}
});
video.play();
}
Detailed API Documentation
Aloe Video's extensive set of methods allows fine control and status checks:
load_file(&mut self, file: &File)
: Load from a local file.load_url(&mut self, url: &Url)
: Load video from a URL.play(&mut self)
: Start video playback.stop(&mut self)
: Stop video playback.set_play_speed(&mut self, new_speed: f64)
: Adjust playback speed.- More method details available in inline documentation.
Contributions
Aloe Video encourages contributions through its repository. Issues and pull requests are welcome.
Licensing
Licensed under GPL-3.0.
Disclaimer
This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~25–35MB
~595K SLoC