Log in

View Full Version : xMAS gift to All RecordNow Max user and possible others


xmenxmen
12th December 2003, 19:42
Here's a little script I wrote to overcome the process of having to create a VIDEO_TS and AUDIO_TS directory and moving the file into it after encoding each time I have to burn one using the program.

1. The general process I use is allow DVD Decryper to strip to whatever directory or drive that's available.
2. Have the Transcoder/Encode point the source at the VIDEO_TS directory and destination at the root directory.
3. Then I have to create a temp directory inside the root directory and with temp directory, a VIDEO_TS and AUDIO_TS directory.
4. Then move the re-encoded files into the newly created VIDEO_TS directory.
5. Fire up RecordNow Max and drag the VIDEO_TS and AUDIO_TS directory and burn.

So in order to remove these steps, I create a script that will allow me to right-click on the root directory and run a command that will do all the work for me.

Give it a try if you are interested:

Cut and paste them into notepad and name them the same as mine to start. After you save both file, be sure to put them both on the root of C. To install, double-click on the xcreate.reg file to import. Once one, you should be able to right click on any directory and select "Create DVD Dir" to create and move your DVD files.

Enjoy!!!


File 1: c:\xcreate.reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell]
@="none"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\DVD]
@="Create DVD Dir"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\DVD\command]
@="c:\\xcreate.cmd \"%1\""




File 2: c:\xcreate.cmd
set xTest=%1
REM Creates the VIDEO_TS and AUDIO_TS directory if it does not exist
if not exist %xTest%\READY\* md %xTest%\READY
if not exist %xTest%\READY\VIDEO_TS\* md %xTest%\READY\VIDEO_TS
if not exist %xTest%\READY\AUDIO_TS\* md %xTest%\READY\AUDIO_TS

REM If any IFO, VOB or BUP files exist, copy them into the VIDEO_TS directory
if exist %xTest%\*.ifo move %xTest%\*.ifo %xTest%\READY\VIDEO_TS
if exist %xTest%\*.vob move %xTest%\*.vob %xTest%\READY\VIDEO_TS
if exist %xTest%\*.bup move %xTest%\*.bup %xTest%\READY\VIDEO_TS

set xTest=:p

ddlooping
12th December 2003, 21:16
Thanks xmenxmen. :)

Even though I do not have the need for your script (I use burnatonce which creates the folders automatically), I appreciate your contribution and christmas spirit.
I hope others will do too. ;)