Crates.io | api_video |
lib.rs | api_video |
version | 0.2.0 |
source | src |
created_at | 2024-04-14 16:48:03.685828 |
updated_at | 2024-10-01 08:45:37.607302 |
description | This is unofficial client for api.video written in Rust |
homepage | |
repository | https://github.com/Satyam1Vishwakarma/rapi_video |
max_upload_size | |
id | 1208374 |
size | 14,086 |
This is unofficial client for api.video written in Rust.
It is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.
cargo add api_video
use api_video::rapi;
#[tokio::main]
async fn main(){
let api = rapi::ApiVideo{production:false,token:"token".to_string()};
api.video_upload("myfirstvideo".to_string(), "G:\\foo.mp4".to_string()).await;
let all_video = api.get_all_video(1, 2).await;
}
use api_video::rapi_sync;
fn main(){
let api = rapi_sync::ApiVideo{production:false,token:"token".to_string()};
api.video_upload("myfirstvideo".to_string(), "G:\\foo.mp4".to_string());
let all_video = api.get_all_video(1, 2);
}
VideoUpload<200MiB ✅| GetAllVideo ✅| DeleteAVideo ✅|