Create a basic frontend and an endpoint to get video stream.

This commit is contained in:
Florian THIERRY
2026-07-24 15:38:27 +02:00
parent c3806f49ba
commit f8f86eeae1
35 changed files with 9665 additions and 16 deletions
+4 -1
View File
@@ -1,3 +1,4 @@
use std::any::Any;
use uuid::Uuid;
pub enum VideoFormat {
@@ -8,7 +9,9 @@ pub enum VideoFormat {
UNKNOWN
}
pub trait VideoFile {}
pub trait VideoFile: Any {
fn as_any(&self) -> &dyn Any;
}
pub struct Video {
pub id: Uuid,