mod exiftool; mod ffmpeg; mod magick; use actix_web::web::Bytes; use crate::{formats::InputFile, state::State}; #[derive(Debug, PartialEq, Eq)] pub(crate) struct Discovery { pub(crate) input: InputFile, pub(crate) width: u16, pub(crate) height: u16, pub(crate) frames: Option, } #[derive(Debug, thiserror::Error)] pub(crate) enum DiscoverError { #[error("No frames in uploaded media")] NoFrames, #[error("Not all frames have same image format")] FormatMismatch, #[error("Input file type {0} is unsupported")] UnsupportedFileType(String), } #[tracing::instrument(level = "trace", skip_all)] pub(crate) async fn discover_bytes( state: &State, bytes: Bytes, ) -> Result { let discovery = ffmpeg::discover_bytes(state, bytes.clone()).await?; let discovery = magick::confirm_bytes(state, discovery, bytes.clone()).await?; let discovery = exiftool::check_reorient(discovery, bytes, state.config.media.process_timeout).await?; Ok(discovery) }