Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#1142 | Link | |
Life's clearer in 4K UHD
Join Date: Jun 2003
Location: Notts, UK
Posts: 12,114
|
Quote:
![]()
__________________
| I've been testing hardware media playback devices and software A/V encoders and decoders since 2001 | My Network Layout & A/V Gear |
|
|
![]() |
![]() |
![]() |
#1145 | Link | |
Registered User
Join Date: Sep 2020
Posts: 123
|
Quote:
There is an XP build version? |
|
![]() |
![]() |
![]() |
#1147 | Link |
Registered User
Join Date: Sep 2020
Posts: 123
|
Sorry about that. Anyway I think the only reason Virtualdub2 worked on my computer for a time is due tot he codecs I used. I may need to manipulate the registry or something to "reformat" the program. It seems like Virtualdub2 will only work on Windows 10 or if I used codecs like XVID or something.
Edit: I discovered that I had to change the input driver from :Caching Input Driver" to "Audio/video interleave input driver (internal)" to successfully to convert a video on XP. I also discovered some options on both input drivers but I do not know which is ideal for XP. Last edited by GAP; 13th December 2022 at 16:30. |
![]() |
![]() |
![]() |
#1148 | Link | |
Registered User
Join Date: Sep 2020
Posts: 123
|
Quote:
|
|
![]() |
![]() |
![]() |
#1149 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,540
|
OK GAP, posted script was not quite right but worked for me [I aint no command line expert, in fact I hate it
![]() This seems to be quite bullet proof, and seems to cope OK with SPACES and even Japanese/Chinese hieroglyphics in the file names. (which earlier scripts did not do well with) Folder structure Code:
BATCH_CONVERTER\ # Containing directory, move it anywhere. FFMPEG\ # Directory Contains FFMPEG.EXE # EDIT: Plus any required ffmpeg dll's if ffmpeg.exe is not statically linked version, ie requires some ffmpeg dll files. INPUT\ # Dir, files to be converted OUTPUT\ # Dir, Converted results Convert_Input_To_UtVideo_Output.BAT # Batch File Convert_Input_To_UtVideo_Output.BAT Code:
setlocal REM Where to Find ffmpeg set FFMPEG=".\FFMPEG\ffmpeg.exe" FOR /R ".\INPUT" %%A IN (*.wmv *.mpg *.avi *.flv *.mov *.mp4 *.m4v *.RAM *.RM *.mkv *.TS *.ogv *.264 *.webm *.m2v *.VOB) DO ( %FFMPEG% -i "%%A" -vcodec utvideo -acodec pcm_s16le ".\OUTPUT\%%~nA.AVI" ) Pause from StainlessS@MediaFire below this post in my sig. [in the UTILITY folder] or direct link here:- https://www.mediafire.com/file/boxq9...VERTER.7z/file I think you could point output to anywhere else by replacing BLUE '.\OUTPUT' above with FULL DRIVE & PATH (no filename nor extension EDIT: Output folder MUST Exist) If you already have path to ffmpeg.exe set in your system environment PATH Variable, then can change above %FFMPEG% to just FFMPEG.EXE and it should work without needing the FFMPEG\ffmpeg.exe in zip. eg, Code:
setlocal FOR /R ".\INPUT" %%A IN (*.wmv *.mpg *.avi *.flv *.mov *.mp4 *.m4v *.RAM *.RM *.mkv *.TS *.ogv *.264 *.webm *.m2v *.VOB) DO ( Ffmpeg.Exe -i "%%A" -vcodec utvideo -acodec pcm_s16le ".\OUTPUT\%%~nA.AVI" ) Pause EDIT: Reino 32 bit XP [works anywhere] compatible ffmpeg:- https://rwijnsma.home.xs4all.nl/files/ffmpeg/?C=M I suggest STATIC linked [no dll's] version.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 1st January 2023 at 09:50. |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|