Hi All,
I have about 200 mp4's which I wish to convert to save disc space. When these are converted, I want the new file to reside in the original source folder. I don't want to have to move them all around or specify output folders for every file.
Anyone know of any software to do this?
+ Reply to Thread
Results 1 to 7 of 7
-
-
To anything which reduces the file size and can be played on a PC without any specialist software being installed. It needs to be transferred and played on a number of machines which will have restrictions placed on them for installing software.
-
Most all-in-one converters has batch feature and you don't have to specify output for every file. Like xmedia recode, vidcoder, freemake video converter, video to video converter. But I don't think anyone can keep same folder as source if you are loading from several different folders.
But it's harder to pick format. AVI with divx/xvid might require a codec on older machines. WMV(wmv3) should work on most windows systems without installing anything. MP4(h264) will work on most newer windows system(wmp 12 and later).Last edited by Baldrick; 6th Dec 2013 at 04:09.
-
Baldrick, thanks for your informative response. I'll take a look at the programs you have suggested and give them a go.
-
Recusion is easy with a batch file and a command line encoder. Here's an example that converts all M4A files to WAV files:
Code:dir/b/s *.m4a >m4alist.txt for /F "delims=;" %%F in (m4alist.txt) do "g:\program files\ffmpeg\bin\ffmpeg.exe" -i "%%F" -f wav -ac 2 "%%~dF%%~pF%%~nF.wav" del m4alist.txt
Similar Threads
-
DOS: redirect the output of an executable into a batch variable?
By RogerTango in forum ProgrammingReplies: 2Last Post: 7th May 2012, 08:36 -
Batch FLV to F4V - Keep File Structure of Source
By iSerce in forum Video ConversionReplies: 3Last Post: 23rd Jun 2011, 05:20 -
Handbrake: Output picture size after conversion differs to source
By RF264 in forum DVD RippingReplies: 5Last Post: 11th Mar 2011, 07:02 -
v2mp command line not changing output file location
By Wakewatcher in forum SVCD2DVD & VOB2MPGReplies: 8Last Post: 18th Jan 2011, 13:20 -
Delete Source Files after batch process has ended
By Metallo in forum Video ConversionReplies: 3Last Post: 24th Mar 2010, 18:10