Thank you kgv5 for helping me try this out on another machine. I apologize for it not working I got a good nights sleep and checked it again. I found and fixed the issue. The code to call dcraw.exe was not looking for the program in the right directory. I changed the bat file to look for dcraw in the correct directory... dcraw -v -r 2 1 1.75 1 -H 2 -T -b 3.5 -4 file.dng -> ..\dcraw -v -r 2 1 1.75 1 -H 2 -T -b 3.5 -4 file.dng.
Here is the new code
[spoiler]
@echo off
set n=0
:again
if "%~1" == "" goto done
raw2dng.exe "%~1"
mkdir ^(%n%^)
move *.dng ^(%n%^)
cd ^(%n%^)
for /f "usebackq delims=|" %%f in (`dir /b "%CD%\*.dng"`) do ..\dcraw -v -r 2 1 1.75 1 -H 2 -T -b 3.5 -4 %%f
..\ffmbc -threads 16 -r 23.976 -i 0%%05d.tiff -vcodec prores -pix_fmt yuv444p10 ^(%n%^).mov
del *.tiff
del *.dng
cd..
set /a n+=1
shift
goto again
:done
pause
exit
[/spoiler]
The files needed before dragging and dropping on the bat file
[spoiler]
C:\my pics>dir
Volume in drive C has no label.
Volume Serial Number is 24BC-5917
Directory of C:\my pics
05/20/2013 05:18 PM <DIR> .
05/20/2013 05:18 PM <DIR> ..
08/10/2012 12:33 PM 354,304 dcraw.exe
05/20/2013 05:19 PM 402 raw to prores.bat
03/20/2013 10:24 AM 14,316,544 ffmbc.exe
05/19/2013 05:14 AM 195,148,992 M0000017.RAW
05/20/2013 05:18 PM 127,411,392 M0000028.RAW
05/19/2013 05:55 PM 206,438,592 M0000031.RAW
05/16/2013 04:28 PM 243,938 raw2dng.exe
7 File(s) 543,914,161 bytes
2 Dir(s) 162,463,543,296 bytes free
C:\my pics>
[/spoiler]
What it should look like afterwards. Directories (0) (1) and (2) will have the videos in them
[spoiler]
C:\my pics>dir
Volume in drive C has no label.
Volume Serial Number is 24BC-5917
Directory of C:\my pics
05/20/2013 05:21 PM <DIR> .
05/20/2013 05:21 PM <DIR> ..
05/20/2013 05:20 PM <DIR> (0)
05/20/2013 05:21 PM <DIR> (1)
05/20/2013 05:23 PM <DIR> (2)
08/10/2012 12:33 PM 354,304 dcraw.exe
05/20/2013 05:19 PM 402 raw to prores.bat
03/20/2013 10:24 AM 14,316,544 ffmbc.exe
05/19/2013 05:14 AM 195,148,992 M0000017.RAW
05/19/2013 05:53 PM 127,411,392 M0000028.RAW
05/19/2013 05:55 PM 206,438,592 M0000031.RAW
05/16/2013 04:28 PM 243,938 raw2dng.exe
7 File(s) 543,914,164 bytes
5 Dir(s) 161,767,456,768 bytes free
C:\my pics>
[/spoiler]