Jump to content

Recommended Posts

Posted

Hi,

 

I have a collection of videos here i think they are in .AVI format. I need them to be in .mp4 to go onto iPods. Normally for this job i would use Handbrake. But the problem is i have 50ish files. If i use handbrake i have to select each file individually. To be honest i cant be bothered doing it 50 times. There might be even more to come.

 

Does anyone know of some software that will convert all video files in a root of a folder? Its so it saves me selecting one file, waiting then selecting the next.

 

Does that make sense?

 

Thanks

Posted
You can do multiple files with media coder, we have this deployed in our school environment, it's free and no nag software attached.

 

Eeek, after investigating it looks like you want to be sure to use the old version given the SF comments:

 

By the developers own admission this is now CLOSED source and therefore should not receive privileges from sourceforge. Worse it now contains both malware (adware) in its extensions and bundles with Open Candy to trick users into installing toolbars during application install it is nefarious and ought be boycotted until it returns to OpenSource thereby not being in GPL violation
Posted
Slightly hijacking this thread but does anybody use any converting software for all users? I'd love to put the onus on the end user to convert their own files when created.
Posted
Slightly hijacking this thread but does anybody use any converting software for all users? I'd love to put the onus on the end user to convert their own files when created.

 

This is a good one to use. HandBrake

  • Thanks 2
Posted
Slightly hijacking this thread but does anybody use any converting software for all users

 

Yes we use media coder, runs from a share off a server no need to deploy to stations, but as pointed out the latest version may have some nasties bundled with it. I installed media coder about 2 years ago and it was a going project on sourceforge. But if there is no support or they are not developing now you might want to try the alternatives mentioned here.

Posted (edited)

you could try a little scripting (powershell)

 

$path = "M:\Source\"
$List = Get-ChildItem -path $path -Name
foreach($item in $list)
{
   $input = $path+$item
   $output = $path+$item+"output"
   .\HandBrakeCLI -i $input -o $output --preset="Universal"
}

 

This needs to be run the the DIR of the Handbrakecli.exe file

Edited by fawkers
Posted
We use Any Video Converter on a few machines here but arent having much luck packaging it up for distribution on a RM CC3 Network, has anyone got it to work?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...