0

Is there a compiled version of Avidemux nightly for Linux.

Or is it there?

2 Answers 2

1

In fact there is a ppa for the latest Avidemux.

For Ubuntu 14.04:

sudo add-apt-repository ppa:rebuntu16/avidemux+unofficial

sudo apt-get update

sudo apt-get install avidemux2.6-gtk avidemux2.6-qt4

Also (the latest version being 2.6.10), following this source:

Install Avidemux 2.6.10 Video Editor (GTK) on Ubuntu 15.04 Vivid Vervet

$ wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
 $ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu vivid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
 $ sudo apt-get update
 $ sudo apt-get install avidemux2.6

Install Avidemux 2.6.10 Video Editor (QT) on Ubuntu 15.04 Vivid Vervet

$ wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
 $ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu vivid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
 $ sudo apt-get update
 $ sudo apt-get install avidemux2.6-qt 

Install Avidemux 2.6.10 Video Editor (GTK) on Ubuntu 14.04 and Derivatives

Run the following commands in Terminal to install Avidemux (GKT) on Ubuntu 14.04, Linux Mint 17.1, Linux Mint 17 and Derivative systems:

 $ wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
 $ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu vivid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
 $ sudo apt-get update
 $ sudo apt-get install avidemux2.6

Install Avidemux 2.6.10 Video Editor (QT) on Ubuntu 14.04 and Derivatives

Run the following commands in Terminal to install Avidemux (QT) on Ubuntu 14.04, Linux Mint 17.1, Linux Mint 17 and Derivative systems:

$ wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
 $ sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu vivid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
 $ sudo apt-get update
 $ sudo apt-get install avidemux2.6-qt

Also, deb files are available here, also here.

Some more dependencies are needed to make it work:

avidemux3-core-2.6.10-YYMMDD-runtime
avidemux3-plugins-COMMON-2.6.10-YYMMDD-plugins
avidemux3-qt4-2.6.10-YYMMDD-runtime
avidemux3-plugins-QT4-2.6.10-YYMMDD-plugins
avidemux3-cli-2.6.10-YYMMDD-runtime
avidemux3-plugins-CLI-2.6.10-YYMMDD-plugins
avidemux3-settings-2.6.10--YYMMDD-settings

As a 2.6.10 deb with dependencies included: here


In Arch-based systems installable from AUR. I have tried this version but that wouldn't work as expected. The avidemux-qt4-git 2.6.10.151013.269f93bc987-1 version worked fine.

0

Isn't the snapshot compilable on Linux? Looks like it is intended for it...

6
  • sorry, maybe it is but compiling is beyond my skill, so I'll adjust the question for a compiled version. Commented Oct 1, 2015 at 13:14
  • 1
    Usually compiling involves nothing but execute a couple of commands. Try entering the directory, execute ./configure if no errors appear then execute make and if no errors appear then finally execute make install. If any of the previous steps go wrong then keep looking for the binaries, otherwise you have compiled and installed your first program from sources :P Commented Oct 1, 2015 at 13:17
  • thanks for the encouraging idea that those three simple commands might very well work one fine day. I will also try the 2.6.x compilation instructions and report Commented Oct 1, 2015 at 13:26
  • Looks like this one comes with its own scripts to do the process, you shouldn't have any problem following those instructions and comply with the libraries dependencies. Anyway, those three script/commands might come in handy if you ever run into any other source that you want to compile. Commented Oct 1, 2015 at 13:37
  • Mmmmmmm, the scripts are trying to create .deb files for you to install avidemux instead of just compiling it. As the message goes, you might better download cmake and compile it or.... risk using the one you already have and see if you get errors. That is just a warning, it may work.... Commented Oct 1, 2015 at 13:42

You must log in to answer this question.