First post, by sdenab
Hi, everyone
I am trying to play a game with compressed audio image. Because I am a beginner to the dosbox, I will explain what i did in detail. I think this would be easier for you guys to figure out the problem.
I firstly created an iso (ED4.iso) with the data and audio (in ogg format) from the orinigal image (bin format). Then following the instruction in dosbox wiki I made a cue file (ED4.cue). Below is part of its content:
FILE "ED4.iso" BINARY
TRACK 01 MODE1/2048
INDEX 01 00:00:00
FILE "Track02.ogg" MP3
TRACK 02 AUDIO
INDEX 01 00:00:00
FILE "Track03.ogg" MP3
TRACK 03 AUDIO
INDEX 01 00:00:00
FILE "Track04.ogg" MP3
TRACK 04 AUDIO
INDEX 01 00:00:00
FILE "Track05.ogg" MP3
TRACK 05 AUDIO
INDEX 01 00:00:00
After I mounted the folder ed4 as c drive, I tried to imgmount the cue file with the command
imgmount d "./ED4.cue" -t iso
and all I got is an error message
Could not load image file: ./ed4/ed4.cue
MSCDEX: Failure: Path not valid. "
Interestingly, with the same commend I can imgmount the iso file.
imgmount d "./ED4.iso" -t iso
Since both files are in the same foler, I'm 100% sure the path of cue is valid.
I've checked space and upper/lower case of the track names which may be the causes of the problem, and I've tried imgmount with the newest version of dosbox. It's still not working.
I did find out somthing useful. The cue file is not accepted by daemon tools, as it gives me the error message when I tried to mount it to a virtual drive:
unable to mount image. file not accessible
The last thing I want to mention is I can mount the cue file if I delete all the track info. Below is what's left in the cue file after deletion.
FILE "ED4.iso" BINARY
TRACK 01 MODE1/2048
INDEX 01 00:00:00
Thanks for spending time reading my post. Any ideas/suggestions?