media_info 0.3.1

A tool to extract media information from a media source.
Documentation
[package]
name = "media_info"
version = "0.3.1"
authors = ["Andrew Gremlich <andrew.gremlich@gmail.com>"]
edition = "2021"
license = "MIT"
description = "A tool to extract media information from a media source."
homepage = "https://github.com/andrewgremlich/media_organizer"
readme = "./readme.md"
documentation = "https://github.com/andrewgremlich/media_organizer/blob/master/media_info/README.md"
repository = "https://github.com/andrewgremlich/media_organizer"
keywords = ["media", "metadata", "information", "info"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ffmpeg-next = { version = "7.0.0", optional = true }
kamadak-exif = { version = "0.5.5", optional = true }
chrono = "0.4.37"
id3 = { version = "1.13.1", optional = true }
fs_metadata = { version = "0.3.1", path = "../fs_metadata" }

[features]
ffmpeg = ["dep:ffmpeg-next"]
exif = ["dep:kamadak-exif"]
id3 = ["dep:id3"]
all = ["ffmpeg", "exif", "id3"]