From owner-freebsd-questions@FreeBSD.ORG Sat Jan 1 16:18:24 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE5F16A4CE for ; Sat, 1 Jan 2005 16:18:24 +0000 (GMT) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CD5D43D45 for ; Sat, 1 Jan 2005 16:18:24 +0000 (GMT) (envelope-from cpghost@cordula.ws) Received: from bsdbox.farid-hajji.net (bsdbox [192.168.254.3]) by fw.farid-hajji.net (Postfix) with ESMTP id 37EAD4B7A1; Sat, 1 Jan 2005 17:18:41 +0100 (CET) Date: Sat, 1 Jan 2005 17:18:49 +0100 From: cpghost@cordula.ws To: John Wilson Message-ID: <20050101161849.GA4745@bsdbox.farid-hajji.net> References: <4d0730560501010721556089dc@mail.gmail.com> <20050101103754.14778620.BSD-Mail@nyc.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050101103754.14778620.BSD-Mail@nyc.rr.com> User-Agent: Mutt/1.5.6i cc: Xinizul Xinizul cc: freebsd-questions@freebsd.org Subject: Re: Please help: burncd errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jan 2005 16:18:24 -0000 On Sat, Jan 01, 2005 at 10:37:54AM -0500, John Wilson wrote: > On Sat, 01 Jan 2005 16:21:54 +0100 > Xinizul Xinizul wrote: > > Hi. > > > I'm trying to burn an iso image containing a folder of mp3 files. > [...] > > 192# burncd -t -f /dev/acd0 audio mp3_1.iso fixate > [...] > > For one, if you are attempting to burn a data CD, you want to use the > 'data' option passed to burncd rather than 'audio'. Use this for burning > ISO's. > > If you truly wish to burn an audio CD, you'll first need to convert your > mp3's to wav's - I generally do this using mplayer with the -ao pcm option, > at which point, you can happily use the 'audio' option for burncd with the > list of wav's to burn. Exactly. CDs that are burned with the 'audio' option SHOULD be readable in every CD player. 'data' CDs with MP3 files MAY be readable in modern CD- or DVD-Players with MP3 capability as well. Since this is not standardized, you should consider using ISO9660 with RockRidge and Joliet extentions when making the CD image: $ mkisofs -v -r -T -J -o /var/tmp/mp3_1.iso /path/to/mp3s # burncd -f /dev/acd0 -s 4 data /var/tmp/mp3_1.iso fixate keeping the hierarchy below /path/to/mp3s as flat as possible, using .mp3 extensions for the mp3 files, not putting too many files per folder and using conservative sampling rates that are recognized by most hardware players (128 kbps, 44000). > - John. Regards, -cpghost. -- Cordula's Web. http://www.cordula.ws/