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,143
|
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: 133
|
Quote:
There is an XP build version? |
|
![]() |
![]() |
![]() |
#1147 | Link |
Registered User
Join Date: Sep 2020
Posts: 133
|
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: 133
|
Quote:
|
|
![]() |
![]() |
![]() |
#1149 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,698
|
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 to lossless AVI Encode_SquarePixel_AVS_Input_To_Output_AVC_MP4.BAT # Batch File, Encode square pixel AVS script to x264 MP4 Encode_SquarePixel_AVS_Input_To_Output_HEVC_MKV.BAT # Batch File, Encode square pixel AVS script to x265 MKV 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 Maybe mod to your favourite crf and aac audio bitrate. Encode_SquarePixel_AVS_Input_To_Output_AVC_MP4.BAT Code:
setlocal REM Where to Find ffmpeg set FFMPEG=".\FFMPEG\ffmpeg.exe" FOR /R ".\INPUT" %%A IN (*.avs) DO ( %FFMPEG% -i "%%A" -c:v libx264 -crf 21.5 -preset slow -c:a aac -b:a 96k ".\OUTPUT\%%~nA.MP4" ) Pause Code:
setlocal REM Where to Find ffmpeg set FFMPEG=".\FFMPEG\ffmpeg.exe" FOR /R ".\INPUT" %%A IN (*.avs) DO ( %FFMPEG% -i "%%A" -c:v libx265 -crf 25.0 -preset slow -c:a aac -b:a 96k ".\OUTPUT\%%~nA.MKV" ) Pause from StainlessS@MediaFire below this post in my sig. [in the UTILITY folder] or direct link here:- https://www.mediafire.com/file/nhaxv...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. EDIT: Any further updates will be posted HERE:- https://forum.doom9.org/showthread.php?p=1986671
__________________
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; 5th May 2023 at 11:40. |
![]() |
![]() |
![]() |
#1150 | Link |
Registered User
Join Date: Sep 2020
Posts: 133
|
I think I might have solved my caching input driver problem. I had to go the Virtualdub2 Sourceforge and download the input driver myself. I am not sure if that is the 'right' thing to do as it was for VirtualdubMod but it seems to work for my XP. Other computers that run Windows do not have that problem. Looks like it is solved for now. Thanks for the help.
|
![]() |
![]() |
![]() |
#1151 | Link |
Registered User
Join Date: Mar 2018
Location: Germany
Posts: 171
|
What does the <Save>-Button in the filter selection dialog?
One might think it saves the filter settings.
But there is no <Load>-Button in sight. Also I don't see no saved file anywhere. (Maybe it's just for calming the nervous ones of us? ![]() |
![]() |
![]() |
![]() |
#1152 | Link |
Registered User
Join Date: Jul 2019
Posts: 9
|
I wonder if anybody here would happen to have a 64bit version of the plugin DShowInputDriver.vdplugin? I have a 32bit version, and some googling tells me that maybe a 64bit version existed at some point, but if so it's long gone now. Thanks.
|
![]() |
![]() |
![]() |
#1154 | Link | |
Registered User
Join Date: Jul 2019
Posts: 9
|
Quote:
If it's easier or it would make your more comfortable, you could always upload it to a temporary file sharing service like WeTransfer: https://wetransfer.com/ Whatever is best ![]() |
|
![]() |
![]() |
![]() |
#1158 | Link |
Big Bit Savings Now !
Join Date: Feb 2007
Location: close to the wall
Posts: 1,361
|
Many thanks, v0lt !
__________________
"To bypass shortcuts and find suffering...is called QUALity" (Die toten Augen von Friedrichshain) "Data reduction ? Yep, Sir. We're working on that issue. Synce invntoin uf lingöage..." |
![]() |
![]() |
![]() |
#1160 | Link | |
German doom9/Gleitz SuMo
Join Date: Oct 2001
Location: Germany, rural Altmark
Posts: 6,659
|
Quote:
https://9gag.com/gag/aOxex83 https://www.ligh.de/tmp/Cat-clip.zip |
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|