mirror of
https://github.com/Ap0dexMe0/unixtract.git
synced 2026-07-16 05:04:22 +02:00
Add sony Blu-Ray extractor (max MSB18)
This commit is contained in:
+8
-4
@@ -99,14 +99,18 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
println!("PFL UPG file detected!");
|
||||
formats::pfl_upg::extract_pfl_upg(&file, &output_path)?;
|
||||
}
|
||||
else if formats::mstar::is_mstar_file(&file) {
|
||||
println!("Mstar upgrade file detected!");
|
||||
formats::mstar::extract_mstar(&file, &output_path)?;
|
||||
}
|
||||
else if formats::pup::is_pup_file(&file) {
|
||||
println!("PUP file detected!");
|
||||
formats::pup::extract_pup(&file, &output_path)?;
|
||||
}
|
||||
else if formats::sony_bdp::is_sony_bdp_file(&file) {
|
||||
println!("Sony BDP file detected!");
|
||||
formats::sony_bdp::extract_sony_bdp(&file, &output_path)?;
|
||||
}
|
||||
else if formats::mstar::is_mstar_file(&file) {
|
||||
println!("Mstar upgrade file detected!");
|
||||
formats::mstar::extract_mstar(&file, &output_path)?;
|
||||
}
|
||||
else if formats::roku::is_roku_file(&file) {
|
||||
println!("Roku file detected!");
|
||||
formats::roku::extract_roku(&file, &output_path)?;
|
||||
|
||||
Reference in New Issue
Block a user