Date: Tue, 29 Feb 2000 20:20:02 +0000 From: Ben Smithurst <ben@scientia.demon.co.uk> To: Jerry Lei <tylei@hotmail.com> Cc: freebsd-questions@FreeBSD.org Subject: Re: about burnaudio Message-ID: <20000229202002.D68802@strontium.scientia.demon.co.uk> In-Reply-To: <20000229171543.81615.qmail@hotmail.com> References: <20000229171543.81615.qmail@hotmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Jerry Lei wrote: > 1. What kind of file type is? .wav? or ?? I think it needs to be CDDA (CD digital audio) format. How to convert from wav or something to that format, I don't know. Try a web search. Programs like "cdd" in the ports collection can grab data from an audio CD in that format though, I think. I think cdda2wav can too, which is part of the cdrecord package. > 2. Can I change the speed of recording except double(2x)and single? (like > 4x) With wormcontrol, it doesn't look like it. Perhaps you could edit the source: for (i = 1; i < argc; i++) { if (eq(argv[i], "dummy")) d.dummy = 1; else if (eq(argv[i], "single")) d.speed = 1; else if (eq(argv[i], "double")) d.speed = 2; else errx(EX_USAGE, "wrong param for \"prepdisk\": %s", argv[i]); } perhaps if you add "else if (eq(argv[i], "quad")) d.speed = 4;" before the last "else", that would work, but I haven't tried this. There may be a good reason why it isn't there. Just be patient when burning CDs. :-) > 3. or Could someone suggest me another burn application works on FreeBSD. X > application will be better. look in the ports collection, ben@magnesium:/usr/ports$ make search key=burn Port: cd-write-1.4.1 Path: /usr/ports/sysutils/cd-write Info: A X11 based CD-burner Maint: jmz@FreeBSD.org Index: sysutils B-deps: XFree86-3.3.6 tcl-8.2.3 tix-4.1.0.007 tk-8.2.3 R-deps: XFree86-3.3.6 tcl-8.2.3 tix-4.1.0.007 tk-8.2.3 I haven't tried that program, but it may work for you. -- Ben Smithurst / ben@scientia.demon.co.uk / PGP: 0x99392F7D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000229202002.D68802>