Hi mates, thank thou I am set! I now burn Audio CDs successfully using "cdrecord dev=0,1,0 -v -audio speed=2 /cd/audio" and what have you! But: Two seconds (and therefore two questions) are left: 01) The gaps in front of the tracks are usually 2 seconds and that gets on my nerves when I want to burn long mixes. How can I get rid of them? I just found out about: devpregap=0 pregap=0 It is written that these commands will be replaced soon. What then? What is the difference between those? What works best for you? Is there yet another command? Does that depend on which CDW you use? 02) I have my "burning PC" set up so that I can transfer the wav or image files via LAN and then start actual burning. Now, that I have not quite encountered problems, do I have to switch runlevel down (=network off) during burn action? If so, would s.t. like init 1 and afterwards init 2 be enough to secure that no fifo underruns occure? Any friendly help or pointer appreciated. TiA Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤
* Oliver Ob <ob_ok@gmx.net> (Mon, Jul 23, 2001 at 07:55:42PM +0200)
Hi mates, thank thou I am set!
I now burn Audio CDs successfully using
"cdrecord dev=0,1,0 -v -audio speed=2 /cd/audio" and what have you!
But: Two seconds (and therefore two questions) are left:
cdrdao is your friend. attached a little perl program that takes your wav files (stored in directory $TMPDIR) and burns them to CD. The program assumes your tracks are labeled in order (a.wav b.wav or track1.wav track2.wav &c .. where track11.wav will precede track2.wav). save the attached as burnwavs usage burnwavs <some number> number of copies to burn e.g. burnwavs 4 will burn 4 copies of course, change the VARIABLES section to match your setup.
02) I have my "burning PC" set up so that I can transfer the wav or image files via LAN and then start actual burning. Now, that I have not quite encountered problems, do I have to switch runlevel down (=network off) during burn action? If so, would s.t. like init 1 and afterwards init 2 be enough to secure that no fifo underruns occure?
It depends on your hardware. on a PIII/500 w 256M ram I can do pretty much anything while burning CDs (though playing quake3 while compiling a new kernel while burning a 10speed CD is not a good idea since: A) quake will run at about 4 frames per second B) you'll get a coaster, not a CD ) But I have X up and running, with KDE22b1, and am doing development work (editing/compiling) and browsing the net while burning CDs. If you have a P133 w/16M or ram you probably would like to stop X and don't do much else during the burning. ____o/_______________________________________________________ 0\ START CUT HERE #!/usr/bin/perl $noeject = shift || 0; $count = 1; if($noeject > 0){ $count = $noeject; $EJECT = "--eject"; } elsif($noeject){ $EJECT = ""; print "Not ejecting\n"; } else { $EJECT = "--eject"; } ############# # Variables $WRITER = "--device 1,0,0 --driver generic-mmc-raw --speed 0"; $READER = ""; $READ = "time cdparanoia -z -B \"1-\" $READER"; $MYTOC = "mydisk.toc"; $WRITE = "time cdrdao write $WRITER $EJECT $MYTOC"; $TMPDIR = "/cddata/TMP"; $readerIsWriter = 0; # set to 1 if the deveice used to read # is the same as to write ############ # the real meat # step 0, delete old .wav/.iso files chdir($TMPDIR) || die "cannot change to $TMPDIR"; # step 2, create toc open(MYTOC,"> $MYTOC") || die "failed to open $MYTOC\n"; print MYTOC "CD_DA\n"; foreach $wav (<*.wav>){ print MYTOC "TRACK AUDIO\nFILE \"$wav\" 0\n"; } close(MYTOC); print "Writing audio disk #$i\n"; system($WRITE); _______________________________________________________\o____ END CUT HERE /0 Kind regards, -- Gerhard den Hollander Phone +31-10.280.1515 Global Technical Support Fax +31-10.280.1511 Jason Geosystems BV (When calling please note: we are in GMT+1) gdenhollander@jasongeo.com POBox 1573 visit us at http://www.jasongeo.com 3000 BN Rotterdam JASON.......#1 in Reservoir Characterization The Netherlands This e-mail and any attachment is/are intended solely for the named addressee(s) and may contain information that is confidential and privileged. If you are not the intended recipient, we request that you do not disseminate, forward, distribute or copy this e-mail message. If you have received this e-mail message in error, please notify us immediately by telephone and destroy the original message.
Gerhard den Hollander: > > Hi mates, > > thank thou I am set! > > I now burn Audio CDs successfully using > > "cdrecord dev=0,1,0 -v -audio speed=2 /cd/audio" and what have you! > > > > But: Two seconds (and therefore two questions) are left: 01) The gaps in front of the tracks are usually 2 seconds and that gets on my nerves when I want to burn long mixes. How can I get rid of them? I just found out about: devpregap=0 pregap=0 BUT: None of those commands does work for me. I am wasting my CDs now and all I want to do is burn DAO using cdrecord - what am I doing wrong? > cdrdao is your friend. Yes Gerd! But am really going into the wrong direction when I try to do that using cdrecord? Correct me, but some one told me that cdrecord also does that job. > attached a little perl program that takes your wav files > (stored in directory $TMPDIR) and burns them to CD. gonna try this "at home" :) thanks! > save the attached as burnwavs what is the difference between burnwavs and standard wav files? > usage > burnwavs <some number> > number of copies to burn > e.g. > burnwavs 4 will burn 4 copies > > >02) I have my "burning PC" set up so that I can transfer the > > wav or image files via LAN and then start actual burning. > > Now, that I have not quite encountered problems, do I have > > to switch runlevel down (=network off) during burn action? > > If so, would s.t. like init 1 and afterwards init 2 be > > enough to secure that no fifo underruns occure? > > It depends on your hardware. I got 100 Mhz P1 without X11 here, is it enough to call like init 1; run_burn_script; init 2 or alike? (as said: it runs console only!) > A) quake will run at about 4 frames per second > B) you'll get a coaster, not a CD haha > #!/usr/bin/perl > ############# > # Variables > $WRITER = "--device 1,0,0 --driver generic-mmc-raw --speed 0"; > $READER = ""; > $READ = "time cdparanoia -z -B \"1-\" $READER"; > $MYTOC = "mydisk.toc"; > $WRITE = "time cdrdao write $WRITER $EJECT $MYTOC"; > $TMPDIR = "/cddata/TMP"; > $readerIsWriter = 0; # set to 1 if the deveice used to read > # is the same as to write > Could you please give me a one line command for that? or is this correct? cdrdao --device 0,1,0 -v -driver generic-mmc-raw --speed 2 /cd_audio/* thanks!!!!! another question under this topic is how do I mix audio and data using cdrecord? i am not an expert on the format, which to choose. My desire is to burn approximately 200 MB wav together with a little file collection (140 MB files and grafics) again a one line command would suit fine here! thank you all for helping - did not expect so many private mails!!!!! Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I >>> Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
I installed third party software (wordperfect office) and the wpoffice menu items appear in the kmenu popup. This shows on the root desktop but not in my user account. I created another user just to see what happens and it was there. my question is.... how can i rebuild my menu items without having to move all my files to a new account???????? thanks for the help harry A.
Op zaterdag 22 september 2001 01:19, schreef je:
I installed third party software (wordperfect office) and the wpoffice menu items appear in the kmenu popup. This shows on the root desktop but not in my user account. I created another user just to see what happens and it was there.
my question is.... how can i rebuild my menu items without having to move all my files to a new account????????
Or it appears automatically, if not execute the following program kbuildsycoca (in a terminal). This should add the wpoffice to your kmenu. -- Richard Bos For those who have no home the journey is endless
Hello folks, I have an urgent problem here! Short question: I need a password cracker on NT's SAM file which runs like "ntpassword" from soft4u.com but under Linux environment. What one is good and non-krippled. Long text: I messed up with maybe a spelling mistake and I can still run is my Linux pc (which is good for me......), I can still remember the first _two_ characters of my pwd, but maybe due to a typo I misspelled the last 3 which I now need to "hack" somehow. I also need a way to estimate how long that NT pwd now is, since when this is a typo I might have set my fingers on more keys or so. ANY useful pointer appreciated. Also via PM if you like, but I found this not to be OT since I search for a Linux application for a - what else - Windoze problem... :) Hope you can help me. I thought I give you the above data, because I hope that speeds up the work. Friendly regards, Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
Hello folks, I have an urgent problem here! Short question: I need a password cracker on NT's SAM file which runs like "ntpassword" from soft4u.com but under Linux environment. What one is good and non-krippled. Long text: I messed up with maybe a spelling mistake and I can still run is my Linux pc (which is good for me......), I can still remember the first _two_ characters of my pwd, but maybe due to a typo I misspelled the last 3 which I now need to "hack" somehow. I also need a way to estimate how long that NT pwd now is, since when this is a typo I might have set my fingers on more keys or so. ANY useful pointer appreciated. Also via PM if you like, but I found this not to be OT since I search for a Linux application for a - what else - Windoze problem... :) Hope you can help me. I thought I give you the above data, because I hope that speeds up the work. Friendly regards, Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
-- To unsubscribe send e-mail to suse-linux-e-unsubscribe@suse.com For additional commands send e-mail to suse-linux-e-help@suse.com Also check the FAQ at http://www.suse.com/support/faq and the archives at http://lists.suse.com
Hi mates, thank thou I am set! I now burn Audio CDs successfully using cdrecord (both normal mode and without pregaps. Thanks Anders, it was a typo on deFpregap only! Thank you also for the perl script (Gerd), next time simply attach the file. Now different questions in same thread: Gerd wrote:
save the attached as burnwavs usage burnwavs <some number> number of copies to burn e.g. burnwavs 4 will burn 4 copies
1)What is that one good for? What is the difference between "burnwavs" and standard .wav files? 2)Now that I can burn Audio, Audio-without-gaps, and data, I want to know how I can mix these formats? Say e.g. I want to "audio-burn" the .wavs in /wavs and "normal-burn" the files in /files, how can I get that done in one command or so? Do I need to make an isofs (using mkisofs) first? 3)Also I like to know how to (for data/files burning) run all that with a pipe (no bash expert, but learning), my pipe apparently was "too fast" for my burner, I had fifo underruns, do I have to switch down to speed=1 for piping to mkisofs? Big thanks ahead. Really appreciate your help. -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
On Fri, Sep 14, 2001 at 03:53:09PM +0200, Oliver Ob wrote:
Gerd wrote:
save the attached as burnwavs usage burnwavs <some number> number of copies to burn e.g. burnwavs 4 will burn 4 copies
1)What is that one good for? What is the difference between "burnwavs" and standard .wav files?
I think 'burnwavs' was the name of the script that was supposed to be attached.
2)Now that I can burn Audio, Audio-without-gaps, and data, I want to know how I can mix these formats?
Say e.g. I want to "audio-burn" the .wavs in /wavs and "normal-burn" the files in /files, how can I get that done in one command or so?
Do I need to make an isofs (using mkisofs) first?
Yes, first you will need to use mkisofs to make a filesystem image of the files in /files (don't include /wavs in this). Then use a command similar to: cdrecord -v speed=2 dev=1,0,0 -audio /wavs/*.wav -data files.iso You get the general idea there, don't you?
3)Also I like to know how to (for data/files burning) run all that with a pipe (no bash expert, but learning), my pipe apparently was "too fast" for my burner, I had fifo underruns, do I have to switch down to speed=1 for piping to mkisofs?
Hmmm. I know very little about pipes, but I avoid doing this on my machine, as this can make the burn process more unreliable (especially on older systems like mine). Hope that helps, Chris -- http://www.tuxedo.org/~esr/faqs/smart-questions.html __ _ -o)/ / (_)__ __ ____ __ Chris Reeves /\\ /__/ / _ \/ // /\ \/ / ICQ# 22219005 _\_v __/_/_//_/\_,_/ /_/\_\
Chris Reeves schrieb:
Yes, first you will need to use mkisofs to make a filesystem image of the files in /files (don't include /wavs in this). Then use a command similar to: cdrecord -v speed=2 dev=1,0,0 -audio /wavs/*.wav -data files.iso
You get the general idea there, don't you?
Yes, thanks for pointing, I will try out the rest for myself.
3)Also I like to know how to (for data/files burning) run all that with a pipe (no bash expert, but learning), my pipe apparently was "too fast" for my burner, I had fifo underruns, do I have to switch down to speed=1 for piping to mkisofs?
Hmmm. I know very little about pipes, but I avoid doing this on my machine, as this can make the burn process more unreliable (especially on older systems like mine).
Well maybe someone else can help here. -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
Hi, I use something like this mkisofs ... path-to-directory-to-burn | cdrecord -v dev=0,0,0 speed=4 - Don't forget the - at the end, it tells cdrecord to read from stdin. The cd-writing HOWTO is quite informative. Burning at a lower speed can help with buffer underrun problems. It really depends on your system load, though (playing Quake3 to kill the time while burning the CD might not be such a good idea) and the size of the cdrw hardware buffer. In my case (ide system, cdrw with 4MB hardware buffer), burning at speed=8 through a pipe usually presents no problems, so it is possible. Tim On Mon, Sep 17, 2001 at 11:07:44AM +0200, Oliver Ob wrote:
Chris Reeves schrieb:
3)Also I like to know how to (for data/files burning) run all that with a pipe (no bash expert, but learning), my pipe apparently was "too fast" for my burner, I had fifo underruns, do I have to switch down to speed=1 for piping to mkisofs?
Hmmm. I know very little about pipes, but I avoid doing this on my machine, as this can make the burn process more unreliable (especially on older systems like mine).
Well maybe someone else can help here.
Oliver Ob wrote:
02) I have my "burning PC" set up so that I can transfer the wav or image files via LAN and then start actual burning. Now, that I have not quite encountered problems, do I have to switch runlevel down (=network off) during burn action? If so, would s.t. like init 1 and afterwards init 2 be enough to secure that no fifo underruns occure?
cdrecord has a "dummy" mode, "-dummy" which simulates real writing but dosn't start the laser. It shows the "buffer underruns" and "%buffer full" levels. Try to make a "dummy" run with your network going, and see what the messages say. NetZero Platinum No Banner Ads and Unlimited Access Sign Up Today - Only $9.95 per month! http://www.netzero.net
participants (7)
-
Chris Reeves
-
Gerhard den Hollander
-
harry amarantidis
-
Oliver Ob
-
Richard Bos
-
Tim van Venrooij
-
zentara