MacResource
Help with converting .avi video files - Printable Version

+- MacResource (https://forums.macresource.com)
+-- Forum: My Category (https://forums.macresource.com/forumdisplay.php?fid=1)
+--- Forum: Tips and Deals (https://forums.macresource.com/forumdisplay.php?fid=3)
+--- Thread: Help with converting .avi video files (/showthread.php?tid=252509)

Pages: 1 2


Help with converting .avi video files - Numo - 02-03-2021

Edited:

I have a bunch of old .avi videos that I want to convert to a universal format. When I use QuickTime Player to play the avi file, it exports to .mov format, which works well with Quicktime on my Mac, but I’m not sure if it would in Windows. Because I read that MPEG-4 format is the most universal format, I tried using VLC to convert the .mov to MPEG-4, but VLC drops the audio track.

Any suggestions for accomplishing what I’d like to do, preferably for free?


Re: Help with converting .avi video files - Rolando - 02-03-2021

Maybe upload to youtube? Quality/compression might be an issue

what is AVL.?

Have you tried MPEGStreamclip?


Re: Help with converting .avi video files - Lew Zealand - 02-03-2021

Convert to h.264 or h.265 using Handbrake. If the audio is in a common format like mp3 or aac, then you can pass that through with no conversion. If it's not in that format, you should consider converting to aac.


Re: Help with converting .avi video files - mrbigstuff - 02-03-2021

Have you tried VLC yet?


Re: Help with converting .avi video files - MrNoBody - 02-03-2021

Shutter Encoder https://www.shutterencoder.com/en/




Re: Help with converting .avi video files - Numo - 02-03-2021

mrbigstuff wrote:
Have you tried VLC yet?

Thank you, mrbigstuff - I was using VLC but had miss-typed it in my OP. Doh!


Re: Help with converting .avi video files - rz - 02-03-2021

mrbigstuff wrote:
Have you tried VLC yet?

:agree:

VLC plays almost everything. The only time I ever use QT Player for anything is to play the odd MP3 file I find. I could use VLC for that too, but usually don't bother. But if it's a FLAC file, then I definitely use VLC.


Re: Help with converting .avi video files - Will Collier - 02-03-2021

Depends on what the elementary files in the .avi are. The fastest way is to use ffmpeg to drop them into a .mov or .mp4/.m4v. container while preserving the original audio and video. That assumes the original audio codecs fit within the container specs, if so you're done and good to go. If not you'll need to reencode, Handbrake is the easiest path there.

I put this script in Automator and made a Service out of it for changing containers:

for f in 
$@
do
/usr/local/Cellar/ffmpeg/4.0.2/bin/ffmpeg -i
$f
-vcodec copy -acodec copy -f mp4
${f%.*}.m4v
done


You need to install ffmpeg first, and correct the directory for it accordingly, of course.


Re: Help with converting .avi video files - Will Collier - 02-03-2021

Oh, and you can find out what's in the .avis using Media Info:

https://mediaarea.net/en/MediaInfo/Download/Mac_OS


Re: Help with converting .avi video files - Ombligo - 02-03-2021

Handbrake will generally get the job done