DDogg
16th January 2002, 02:34
1> Download and unzip cdrdao.exe to a directory. http://www.doom9.org/Soft21/Files/cdrdao-1.1.5.bin.x86.win32.zip
Let's use c:\program files\dvd2svcd\cdrdao\ to keep things clean and simple.
2> Cut and paste the batch file below into notepad. Save as autoburn.bat (make sure it is not saved as autoburn.bat.txt). Put in the same directory as cdrdao.exe.
3> a> In dvd2svcd, open the finalize tab. In the *checked* 'run this (per cd image)' line put the following - c:\program files\dvd2svcd\cdrdao\autoburn.bat
b> In the parameters line put this EXACTLY (include the quotes around the first parameter) "%CDF.cue" %CD# %CDN
4> OK, a couple of things we have to do one time only. Open a command line and change to the dir where you put cdrdao and type 'cdrdao scanbus' (no single quotes). This will show you the device numbers so you can make a one time change to the batch file below. You will modify the set dev line to reflect the correct device for your cd burner. Also set the speed while you are at it.
5> Note: If you have a heavy name brand of burner, you can note the website mentioned when cdrdao is run and, maybe, find a custom driver for your burner. If so modify the DRVR line below.
6> When dvd2svcd is finished with the creation of the bin/cue section, it will then run the finalize line which will burn your disks for you.
7> Only strange thing is the command line is minimized when it is run by dvd2svcd. Just expand it and press return after you are sure you have a fresh disk in the burner. You will need to do this for each disk.
8> I hope this is of help to some of you.
DD
*******************************
REM Start of batch file
@echo off
REM The following statement must be changed if you put
REM cdrdao.exe in another directory
@C:
@cd program files\dvd2svcd\cdrdao
Rem Next three entries should be modified by you the first time
@set drvr=--driver generic-mmc
@set spd=--speed 8
@set dev=--device 2,1,0
Rem
Echo
Echo ************************************************
Echo Total number of Disks to burn is:%3
Echo Insert CDR in Burner for DISK %2 of %3
Echo When ready to burn Disk %2, press RETURN
Echo ************************************************
@PAUSE >NUL
@cdrdao write -v2 --buffers 128 %drvr% %spd% %dev% %1
Echo ************************************************
Echo Press Return to burn the next disk or finish
Echo ************************************************
@pause >NUL
Rem end of batch file
*********************
Let's use c:\program files\dvd2svcd\cdrdao\ to keep things clean and simple.
2> Cut and paste the batch file below into notepad. Save as autoburn.bat (make sure it is not saved as autoburn.bat.txt). Put in the same directory as cdrdao.exe.
3> a> In dvd2svcd, open the finalize tab. In the *checked* 'run this (per cd image)' line put the following - c:\program files\dvd2svcd\cdrdao\autoburn.bat
b> In the parameters line put this EXACTLY (include the quotes around the first parameter) "%CDF.cue" %CD# %CDN
4> OK, a couple of things we have to do one time only. Open a command line and change to the dir where you put cdrdao and type 'cdrdao scanbus' (no single quotes). This will show you the device numbers so you can make a one time change to the batch file below. You will modify the set dev line to reflect the correct device for your cd burner. Also set the speed while you are at it.
5> Note: If you have a heavy name brand of burner, you can note the website mentioned when cdrdao is run and, maybe, find a custom driver for your burner. If so modify the DRVR line below.
6> When dvd2svcd is finished with the creation of the bin/cue section, it will then run the finalize line which will burn your disks for you.
7> Only strange thing is the command line is minimized when it is run by dvd2svcd. Just expand it and press return after you are sure you have a fresh disk in the burner. You will need to do this for each disk.
8> I hope this is of help to some of you.
DD
*******************************
REM Start of batch file
@echo off
REM The following statement must be changed if you put
REM cdrdao.exe in another directory
@C:
@cd program files\dvd2svcd\cdrdao
Rem Next three entries should be modified by you the first time
@set drvr=--driver generic-mmc
@set spd=--speed 8
@set dev=--device 2,1,0
Rem
Echo
Echo ************************************************
Echo Total number of Disks to burn is:%3
Echo Insert CDR in Burner for DISK %2 of %3
Echo When ready to burn Disk %2, press RETURN
Echo ************************************************
@PAUSE >NUL
@cdrdao write -v2 --buffers 128 %drvr% %spd% %dev% %1
Echo ************************************************
Echo Press Return to burn the next disk or finish
Echo ************************************************
@pause >NUL
Rem end of batch file
*********************