News:

--

Main Menu

x265

Started by Blues, January 15, 2015, 03:11:30 AM

Previous topic - Next topic

Blues

What is the current state of x265 support. I run Gentoo and there is no indication of x265 support. I understand it may be because the ebuild is not up to current. Will I get x265 support if I build from source?

Jan Gruuthuse

#1
update: x265 went to version 1.5 (12/02/2015)
Maybe?
You're most likely need to build x265 1st: http://www.videolan.org/developers/x265.html
then build avidemux from current source:

Can only tell you how it is done on ubuntu 14.04.1
x265:
- install hg 1st:
- get x265 source:
Quotehg clone http://hg.videolan.org/x265
will put in your user home
- build x265 (-j8) where 8 stands for supported cpu core(s) and thread(s) (core i5 = 4, core i7 = 4 + 4)
[/s]
Quotecd ~/x265/build
cmake ../source
make -j8
sudo make install

avidemux 2.6.8:
get source:
sudo apt-get update
sudo apt-get install git
git clone https://github.com/mean00/avidemux2.git


If you don't have nvidia videocard that supports vdpau, you can leave the ones with vdpau in filename out. These are probably all needed/required:
sudo apt-get update
sudo apt-get install gettext git cmake-dbg libasound2-dbg libass-dev libdts-dev libfribidi-dev libftgl-dev libftgl2 libglib2.0-0-dbg libiconv-hook-dev libopencore-amrnb0-dbg libopencore-amrwb0-dbg libqt4-dbg libqt4-script-dbg libsdl-sound1.2-dev libsqlite3-0-dbg libtwolame-dev libva-dev libvdpau-dev libvpx1-dbg libwxsqlite3-2.8-0 libxml2-dbg libxslt1-dbg libxv1-dbg libxvmc1-dbg libzip-dev sqlite3 libxml2-dev gcc g++ make cmake pkg-config libpng12-dev fakeroot yasm libsqlite3-dev libaften-dev libmp3lame-dev libx264-dev libfaad-dev libfaac-dev libqt4-dev


update from online source:
cd ~/avidemux2 && git pull

Depending on gento requirement install files deb, tgz or rpm build avidemux with one of these lines:
cd ~/avidemux2 && bash bootStrap.bash --deb --with-qt4 --without-gtk --with-cli
cd ~/avidemux2 && bash bootStrap.bash --tgz --with-qt4 --without-gtk --with-cli
cd ~/avidemux2 && bash bootStrap.bash --rpm --with-qt4 --without-gtk --with-cli


hope you can adapt above to Gentoo instructions and can build successful.

Blues

Thanks, will try it.