Cleanup + add epk1 extractor

This commit is contained in:
theubusu
2025-10-06 22:44:30 +02:00
parent 7c2c47b44c
commit 6e33b3bc49
7 changed files with 181 additions and 20 deletions
+4
View File
@@ -39,6 +39,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("TPV TIMG file detected!");
println!();
formats::tpv_timg::extract_tpv_timg(&file, &output_path)?;
} else if formats::epk1::is_epk1_file(&file) {
println!("EPK1 file detected!");
println!();
formats::epk1::extract_epk1(&file, &output_path)?;
} else if formats::pfl_upg::is_pfl_upg_file(&file) {
println!("PFL UPG file detected!");
println!();