media_analyzer 0.9.0

Extract file-based information from photo and video files.
1
2
3
4
5
6
7
8
9
//! Module for extracting and consolidating time information from media metadata.
pub mod error;
mod extraction;
mod filename_parsing;
mod logic;
mod parsing;
pub mod structs;

pub use logic::get_time_info;