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.
Asked
Active
Viewed 2,257 times
3
1 Answers
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
mplayer cue://file[:track] [options]
. Interesting to see if SMPlayer (Mplayer frontend) can also do this with a gui... – andrew.46 Apr 28 '18 at 04:43No stream found to handle url cue://x.cue:1
with a messageError reading from x.cue
but it has found the cue file because it displays the name of the good bin file. – eleandar Apr 28 '18 at 08:08qmmp x.cue
display the titles but it is unable to play audio... It seems that it uses mplayer to play cue file and there is also an error while reading the cue file. – eleandar Apr 28 '18 at 19:49