all i do is open the avi into quicktime then click file, export, mp4. easy :]
That only works if you have QT Pro.
all i do is open the avi into quicktime then click file, export, mp4. easy :]
Yeah it will. You can use handbrake to convert it to m4v and then import it into itunes. Do not mess with any of the advanced settings in handbrake unless you know exactly what you are doing. Just use the default settings for the m4v which is one of the basic presets.
I get very poor results when converting using Handbrake with some video files for some reason (blocky and other visual artifacts). The same settings work fine with some other sources. The worst part is that some files are H264 already and are simply in an MKV container. Instead of just changing the container, Handbrake wants to re-encode the entire file, which lowers the quality of the encode no matter what setting you use and sometimes seems to screw things up visually (e.g. AVI to M4V, which probably does need re-encoding is particularly prone to odd grey/black background glitches. iSquint seems to do better, but has no real choices to organizing multiple soundtrack options, etc.).
I'm trying out Any Video Converter on my PC right now and see if it does any better....
#!/bin/sh
for i in $(find $1 -name *.avi) ; do
HandBrakeCLI -i $i -o {$i%.avi}.mp4 --preset="Normal" --two-pass
done
I prefer to use HandbrakeCLI for my work. This little chunk of code I found on the HandbrakeCLI forums and modified it to work for .avi.
Code:#!/bin/sh for i in $(find $1 -name *.avi) ; do HandBrakeCLI -i $i -o {$i%.avi}.mp4 --preset="Normal" --two-pass done
Save that code as something like Convert.sh. Then go into terminal and type "chmod 755 " and then drag/drop the sh file into the terminal window and press enter.
Install HandbrakeCLI to /usr/bin/.
Now open Terminal and cd into the directory with the vids. Copy Convert.sh into that directory and type "./Convert.sh" and hit enter.
That will convert every single avi in that directory and all avi's in lower directories recursively one right after another. I used it to convert my vids. I literally had that shell script running for a couple of weeks non-stop. Worked flawlessly.
Also, it will work with any vid file if you change avi everywhere in the script to the appropriate suffix. You can also alter the arguments if you don't prefer the "Normal" preset.
sudo: ./convert.sh: command not found
When I use HandBrake to convert .AVI to .MP4 (no matter which preset I use) result file is always smaller than original, sometimes quite substantially.
For example :
.avi 365MB ===> .mp4 146MB
.avi 1.56GB ==> .mp4 890MB
.avi 890MB ===> .mp4 689MB
Is it normal?
When I use HandBrake to convert .AVI to .MP4 (no matter which preset I use) result file is always smaller than original, sometimes quite substantially.
For example :
.avi 365MB ===> .mp4 146MB
.avi 1.56GB ==> .mp4 890MB
.avi 890MB ===> .mp4 689MB
Is it normal?
All depends on the preset, but it can be.
I use handbrake for everything, usually on universal (normal in windows) setting, which is good for big screens (AppleTV) and little ones (ipad/ipod/iphone).
Does anyone know what free program i can use to convert transformers from .AVI to MP4 so I can put it on my touch? Thanks