Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
1

Convert .AVI to (anything?)

Engaged ,
Mar 29, 2020 Mar 29, 2020

Hi. I get an error message whenever I try to drop an AVI file into media encoder. Is it possible to convert an AVI file to anything using Adobe ME?

TOPICS
Export or render , Formats , How to , Import
3.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Mar 29, 2020 Mar 29, 2020

Are you on a Mac? Apple computers don't like AVI files. The easiest way would be if you happen to have Media Encoder on a Windows computer. However, if you don't, depending on the AVI's codec, you might be able to locate a place online where you could possibly download and install it. You can take a look at the AVI's details with free software called MediaInfo. For example, years ago we had a TriCaster model that recorded AVI. And I had to install NewTek codecs on my Mac to be able to edit the AVI files in Premiere Pro.

 

Of course, there's also handbrake, which generally accepts most AVI files. But I generally try to solve things keeping things within the Adobe apps.

 

Hope this gave you some ideas to try. If you could, let the community know which one works for you.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Mar 30, 2020 Mar 30, 2020

Thanks. I ended up just using VLC, and also Handbrake later. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 06, 2024 Jul 06, 2024

I also use VLC to convert .avi files. I wrote a simple bash sh script to do it for me. Save this as convertavi.sh and put it in your /usr/local/bin folder and set the exec bit using "sudo +x convertavi.sh" and you're good to go.

#!/bin/bash

NAME=`echo "$1" | cut -d'.' -f1`
echo converting $1 to: $NAME.m4v
/Applications/VLC.app/Contents/MacOS/VLC $1 -I dummy --play-and-exit --sout="#transcode{vcodec=h264,acodec=mp4a,samplerate=44100}:std{access=file,mux=mp4,dst=./$NAME.m4v}" >& /dev/null

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jul 16, 2024 Jul 16, 2024
LATEST

Note that it is up to the third party to create plug-ins to support their own formats & flavors. Please ask them.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines