add SLP extractor, fix in invincible_image

This commit is contained in:
theubusu
2025-10-29 18:36:42 +01:00
parent 87a87cd2bc
commit cf66fbd3a1
4 changed files with 120 additions and 0 deletions
+4
View File
@@ -72,6 +72,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Novatek file detected!");
formats::novatek::extract_novatek(&file, &output_path)?;
}
else if formats::slp::is_slp_file(&file) {
println!("SLP file detected!");
formats::slp::extract_slp(&file, &output_path)?;
}
else if formats::epk1::is_epk1_file(&file) {
println!("EPK1 file detected!");
formats::epk1::extract_epk1(&file, &output_path)?;