Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: EAC Burning Problems (Read 6165 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

EAC Burning Problems

Every time I try to use my newly created CUE sheets to burn a copy of a CD it gives me the following error:
"Error in CUE sheet !
File type is not supported in line 7."

I cannot for the life of me figure out why a .wav file is not supported. I've checked - the file names match the files, and the files are present. Why is this happening?

Attached is the CUE sheet I'm trying to utilize. Any help is appreciated, as this is extremely frustrating - the error makes no sense! EAC supports .wav, I have the .wavs there, the CUE sheet is exactly as generated!

EDIT:
Nevermind. A bit more Googling finally produced a solution. Seems the latest version of EAC changed the behavior of CUE sheet usage. It does not allow the usage of file folders in the file name, so you have to manually edit each CUE sheet after generation to remove the path, and then drop the CUE sheet into the same folder as the files to match. Comparison below.

Original:
Code: [Select]
REM GENRE "Gothic Metal"
REM DATE 2005
REM DISCID 8B0A500A
REM COMMENT "ExactAudioCopy v1.0b1"
PERFORMER "Charon"
TITLE "Songs for the Sinners"
FILE "Songs for the Sinners\01 - Colder.wav" WAVE
  TRACK 01 AUDIO
TITLE "Colder"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "Songs for the Sinners\02 - Deep Water.wav" WAVE
  TRACK 02 AUDIO
TITLE "Deep Water"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "Songs for the Sinners\03 - Bullet.wav" WAVE
  TRACK 03 AUDIO
TITLE "Bullet"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "Songs for the Sinners\04 - Rain.wav" WAVE
  TRACK 04 AUDIO
TITLE "Rain"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 05 AUDIO
TITLE "Air"
PERFORMER "Charon"
INDEX 00 03:54:12
FILE "Songs for the Sinners\05 - Air.wav" WAVE
INDEX 01 00:00:00
FILE "Songs for the Sinners\06 - She Hates.wav" WAVE
  TRACK 06 AUDIO
TITLE "She Hates"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "Songs for the Sinners\07 - Ride on Tears.wav" WAVE
  TRACK 07 AUDIO
TITLE "Ride on Tears"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 08 AUDIO
TITLE "Gray"
PERFORMER "Charon"
INDEX 00 03:35:74
FILE "Songs for the Sinners\08 - Gray.wav" WAVE
INDEX 01 00:00:00
FILE "Songs for the Sinners\09 - Rust.wav" WAVE
  TRACK 09 AUDIO
TITLE "Rust"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 10 AUDIO
TITLE "House of the Silent"
PERFORMER "Charon"
INDEX 00 04:22:12
FILE "Songs for the Sinners\10 - House of the Silent.wav" WAVE
INDEX 01 00:00:00

Modified:
Code: [Select]
REM GENRE "Gothic Metal"
REM DATE 2005
REM DISCID 8B0A500A
REM COMMENT "ExactAudioCopy v1.0b1"
PERFORMER "Charon"
TITLE "Songs for the Sinners"
FILE "01 - Colder.wav" WAVE
  TRACK 01 AUDIO
TITLE "Colder"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "02 - Deep Water.wav" WAVE
  TRACK 02 AUDIO
TITLE "Deep Water"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "03 - Bullet.wav" WAVE
  TRACK 03 AUDIO
TITLE "Bullet"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "04 - Rain.wav" WAVE
  TRACK 04 AUDIO
TITLE "Rain"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 05 AUDIO
TITLE "Air"
PERFORMER "Charon"
INDEX 00 03:54:12
FILE "05 - Air.wav" WAVE
INDEX 01 00:00:00
FILE "06 - She Hates.wav" WAVE
  TRACK 06 AUDIO
TITLE "She Hates"
PERFORMER "Charon"
INDEX 01 00:00:00
FILE "07 - Ride on Tears.wav" WAVE
  TRACK 07 AUDIO
TITLE "Ride on Tears"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 08 AUDIO
TITLE "Gray"
PERFORMER "Charon"
INDEX 00 03:35:74
FILE "08 - Gray.wav" WAVE
INDEX 01 00:00:00
FILE "09 - Rust.wav" WAVE
  TRACK 09 AUDIO
TITLE "Rust"
PERFORMER "Charon"
INDEX 01 00:00:00
  TRACK 10 AUDIO
TITLE "House of the Silent"
PERFORMER "Charon"
INDEX 00 04:22:12
FILE "10 - House of the Silent.wav" WAVE
INDEX 01 00:00:00