Audio CD Creating

bscott at ntisys.com bscott at ntisys.com
Thu May 29 10:10:11 EDT 2003


On Wed, 28 May 2003, at 9:02pm, talbright at tarogue.net wrote:
> OK, but I have 39 songs I want to handle ... This looks like a job for
> Shell Scripting! (Dum de DUM)

  Heh.

  Yes, for that case:

	for src in *.ogg ; do
		dst="$(basename "$src" .ogg)".wav
		ogg123 -d wav -f "$dst" "$src"
	done
	cdrecord -audio *.wav

  Of course, that puts the tracks on disc in an arbitrary order.

-- 
Ben Scott <bscott at ntisys.com>
| The opinions expressed in this message are those of the author and do  |
| not represent the views or policy of any other person or organization. |
| All information is provided without warranty of any kind.              |







More information about the gnhlug-discuss mailing list