Questions tagged [cdda]

5 questions
2
votes
0 answers

Detecting format of raw burned data which was burned as CDDA

Given a file containing raw data burned to a CD/DVD, I'm trying to figure out which format was used (i.e. ISO, UDF, etc.). For example, I can detect the ISO9660 format because in the beginning of one of the 2048-byte sectors I can find the string…
Itaypk
  • 1,103
  • 10
  • 25
2
votes
1 answer

Java library for creating Audio CD disk image

Does anyone know of a library or open source project that contains code for creating an audio CD disk image?
Jonas K
  • 4,215
  • 2
  • 24
  • 25
0
votes
1 answer

How to pad ISO9660 to fit into MODE2/2336 data track in a cue sheet?

first and foremost here's the setting of my problem. I have been given a heavily scratched CD with the task to salvage the data and create a good, working copy. This CD even has its top layer missing, but only in a few spots on the outer rim. I…
0
votes
1 answer

How can I hand over CD audio data read by cdparanoia to the ALSA player?

I'm trying to playback an audio CD by using cd_paranoia (from the cdio package) and to hand over the data read to the ALSA sound output. Buffered, of course. My issue is now the following: As stated in this example program, a call to paranoia_read…
Neppomuk
  • 1,102
  • 1
  • 11
  • 24
0
votes
1 answer

How to fetch "Track Information" from a CD with DeviceIOControl()?

I am trying to use DeviceIoControl() with SCSI_PASS_THROUGH_DIRECT, in order to fetch TRACK_INFO. this code "works" but it comes back by setting ScsiStatus to 2. There seems to be conflicting documentation on the size of the "track" data field. the…