3

Can I test an audio CD created with Brasero (cue/bin files) in Ubuntu 16.04 without burning a CD? I would like to check that titles and other metadata are correct on the image.

Eliah Kagan
  • 119,640
eleandar
  • 103

1 Answers1

0

I am able to play an audio CD rip (from Nero, many many years ago) with this:

mplayer -demuxer rawaudio my_audio_cd_rip.nrg

or

mpv -demuxer=rawaudio my_audio_cd_rip.nrg

or (after changing the file extension)

play -r 44100 -e signed -b 16 -c 2 -L my_audio_cd_rip.cdda

and to convert it to an MP3:

sox -r 44100 -e signed -b 16 -c 2 -L my_audio_cd_rip.cdda -C 320 my_audio_cd_rip.mp3

nmz787
  • 131
  • 5