Crates.io | media_info |
lib.rs | media_info |
version | 0.3.2 |
source | src |
created_at | 2023-05-19 16:36:47.875582 |
updated_at | 2024-10-31 20:01:15.957504 |
description | A tool to extract media information from a media source. |
homepage | https://github.com/andrewgremlich/media_organizer |
repository | https://github.com/andrewgremlich/media_organizer |
max_upload_size | |
id | 868962 |
size | 9,819 |
A tool to extract media information from a media source.
This is a supplemental library crate for Media Organizer.
To enable features, do the following...
For all features: photo, video, and audio metadata...
media_info = { version = "0.3.1", features = ["all"] }
To enable just the photo metadata info...
media_info = { version = "0.3.1", features = ["exif"] }
To enable just the video metadata info...
media_info = { version = "0.3.1", features = ["ffmpeg"] }
To enable just the audio metadata info...
media_info = { version = "0.3.1", features = ["id3"] }
read_audio_creation_date(path_str: &str) -> Result<String, String>
read_photo_creation_date(path_str: &str) -> Result<String, String>
read_video_creation_date(path_str: &str) -> Result<String, String>