WIP create a video type inference method and a mapping into a content type.

This commit is contained in:
Florian THIERRY
2026-07-13 23:26:51 +02:00
parent 03dbbb9ac9
commit 850dbca6cf
12 changed files with 354 additions and 28 deletions
+9 -1
View File
@@ -1,4 +1,12 @@
pub enum VideoFormat {
AVI,
MKV,
MP4,
WEBM,
UNKNOWN
}
pub struct Video {
filename: String,
format: VideoFormat
}