Scans BDMV/JAR/*.jar class files for track label patterns: eng_MLP_ → TrueHD, eng_ADES_US_ → Descriptive Audio (US) dan_PGStream4 → Danish subtitles Solves the "3x AC-3 English" problem — we identify Descriptive Audio, commentary, compatibility tracks. Future: set MKV "visual impaired" flag automatically during mux. Local only — needs more disc samples to validate before publishing.
30 lines
717 B
TOML
30 lines
717 B
TOML
[package]
|
|
name = "libfreemkv"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
description = "Open source raw disc access library for optical drives"
|
|
repository = "https://github.com/freemkv/libfreemkv"
|
|
keywords = ["bluray", "uhd", "optical", "scsi", "disc"]
|
|
categories = ["hardware-support", "multimedia"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha1 = "0.10"
|
|
aes = "0.8"
|
|
cbc = "0.1"
|
|
flate2 = "1"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[[bin]]
|
|
name = "freemkv-info"
|
|
path = "src/bin/freemkv_info.rs"
|
|
|
|
[[bin]]
|
|
name = "freemkv-test"
|
|
path = "src/bin/freemkv_test.rs"
|