Audio CD iso from wav files on the shell, linux only |
![]() ![]() |
Audio CD iso from wav files on the shell, linux only |
Jul 2 2012, 21:52
Post
#1
|
|
![]() Group: Members Posts: 174 Joined: 17-April 02 Member No.: 1800 |
I googled around for this but haven't found a solution. I want to take a directory of wav files and write them to an iso file that can be burned off to a CD (a functional audio CD) at a later time. Closest I found is using /usr/bin/genisoimage but it doesn't make an audio CD image, rather, just a data iso.
CODE genisoimage -o test.iso ./music/*.wav
-------------------- http://encoding.n3.net <-- for all your CD/DVD ripping/encoding needs :)
|
|
|
|
Jul 2 2012, 22:04
Post
#2
|
|
|
Group: Super Moderator Posts: 4483 Joined: 23-June 06 Member No.: 32180 |
An ISO image is a data image, so that is to be expected.
|
|
|
|
Jul 2 2012, 22:09
Post
#3
|
|
![]() Group: Members Posts: 174 Joined: 17-April 02 Member No.: 1800 |
Agreed, but rather a data iso != an audio iso. I can rip an audio CD to a single iso file but I can't seem to make a single iso file from individual wav files that is in the same CDDA format.
-------------------- http://encoding.n3.net <-- for all your CD/DVD ripping/encoding needs :)
|
|
|
|
Jul 2 2012, 22:12
Post
#4
|
|
![]() Group: Members Posts: 1147 Joined: 4-May 04 From: France Member No.: 13875 |
cdrecord can burn WAV files as an audio CD.
-------------------- caudec -c lossyFLAC -q S *.flac
|
|
|
|
Jul 2 2012, 22:23
Post
#5
|
|
![]() Group: Developer Posts: 3035 Joined: 2-December 07 Member No.: 49183 |
QUOTE There is no such thing as an audio ISO file. http://www.linuxquestions.org/questions/li...v-files-868757/ |
|
|
|
Jul 2 2012, 22:33
Post
#6
|
|
|
Group: Super Moderator Posts: 4483 Joined: 23-June 06 Member No.: 32180 |
|
|
|
|
Jul 2 2012, 23:31
Post
#7
|
|
![]() Group: Members Posts: 174 Joined: 17-April 02 Member No.: 1800 |
Right... but I want to write it to an image (iso) not the physical device.
-------------------- http://encoding.n3.net <-- for all your CD/DVD ripping/encoding needs :)
|
|
|
|
Jul 3 2012, 03:28
Post
#8
|
|
![]() Group: Members Posts: 492 Joined: 5-January 06 From: Dublin Member No.: 26898 |
I want to take a directory of wav files and write them to a (strikeout is mine) If this is indeed your goal, then encoding the directory of wav files to a single lossless file (e.g., flac, wavpack) w/ embedded cue sheet is the solution. You also get tagging and data compression to boot. |
|
|
|
Jul 3 2012, 19:26
Post
#9
|
|
|
Group: Members Posts: 1568 Joined: 24-June 02 From: Catalunya(Spain) Member No.: 2383 |
I think skamp got the question right. He's trying to burn an audio CD using some wav files. He's trying to generate the .iso file first and the commandline that he uses generates a data cd (ISO-MODE2), not a redbook cd (CDDA).
To the op: Try the solution skamp gave you, or else try some of the graphical tools in linux for burning cd's. This post has been edited by [JAZ]: Jul 3 2012, 19:26 |
|
|
|
Jul 4 2012, 00:33
Post
#10
|
|
![]() Group: Members Posts: 174 Joined: 17-April 02 Member No.: 1800 |
Nice discussion, guys. Solution:
CODE $ cat ~/bin/bincue #!/bin/bash [[ -z "$1" ]] && echo "Must give a dir!" && exit 1 cd "$1" shntool cue *.flac > 00-"$1".cue shntool join *.flac CODE $ cd /mnt/music
$ find . -type d | parallel bincue {} -------------------- http://encoding.n3.net <-- for all your CD/DVD ripping/encoding needs :)
|
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 19th June 2013 - 03:59 |