From 2a616293fa0c0632e4df91c6aea0701b0aa03be5 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 30 Jan 2020 22:41:50 +0000 Subject: [PATCH] Identify audio MiniDisc. --- MediaTypeFromSCSI.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/MediaTypeFromSCSI.cs b/MediaTypeFromSCSI.cs index 241080e2f..59b96bdc2 100644 --- a/MediaTypeFromSCSI.cs +++ b/MediaTypeFromSCSI.cs @@ -1540,6 +1540,12 @@ namespace DiscImageChef.CommonTypes mediumType != 0x07) return MediaType.UnknownMO; + // Audio format MiniDisc, cannot be read with a Hi-MD drive afaik + if(blockSize == 0 && + blocks == 0 && + model.StartsWith("Hi-MD")) + return MediaType.MD; + switch(blockSize) { case 512: