gpmf

Parser and Writer for GoPro Metadata Format (GPMF)

WIP: Currently successfully parses all raw test data and logs the results.

Design Goals

Reporting Issues

If you have a file that is not handled please submit an issue, attaching the raw metadata file

Feature Roadmap

Example

```rust use std::path::Path; use gpmf::byteordergpmf::parsegpmf;

fn main() -> anyhow::Result<()> { let path = Path::new("samples/karma.raw"); let text = std::fs::read(path)?; let res=parsegpmf(text.asslice())?; println!("{:?}",res); Ok(()) } ```

Example with Logging

```rust use std::path::Path; use gpmf::byteordergpmf::parsegpmf; use tracing::Level; use tracing_subscriber::FmtSubscriber;

fn main() -> anyhow::Result<()> { let subscriber = FmtSubscriber::builder() .withmaxlevel(Level::DEBUG) .finish(); tracing::subscriber::setglobaldefault(subscriber)?;

let path = Path::new("samples/Fusion.raw");
let text = std::fs::read(path)?;
let res=parse_gpmf(text.as_slice())?;
println!("{:?}",res);
Ok(())

} ```

License: MIT OR Apache-2.0