mediaframe 0.1.3

A common media-stream descriptor vocabulary (pixel-format, colour, and frame metadata for video — audio/subtitle to follow) for media processing pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! EXIF / capture-metadata vocabulary — capture device, geographic
//! location (with ISO-6709 parse/format), and (future) capture-time,
//! lens, exposure (ISO/aperture/shutter).
//!
//! Requires the `alloc` feature (`std` implies it) because the
//! constituent types lean on `SmolStr` and `std::string::String` for
//! their text surface.

pub mod device;
pub mod geo;

pub use device::Device;
pub use geo::{GeoLocation, GeoLocationError};