This article contains information on generally compiling Avidemux, from the SVN repository or from tarballs, for your operating and some custom choices for the compilation. There are general guides, package descriptions and specific information for some Linux distributions that need specific compilation switches to successufully create the program from source.
To compile Avidemux, you will need to have the necessary dependencies met. Namely, you will need to install (or have already installed) several development packages. Here is a list and brief description of the packages:
Audio:
Video:
Miscellaneous:
This guide has information on compiling in two ways. The method for both is basically the same, with only one command change at the beginning to download from where you want.
You have two choices for where you can download files to compile.
svn co svn://svn.berlios.de/avidemux/branches/avidemux_2.5_branch_gruntster/
cd avidemux
(enter the source code directory)
The 2.4 branch uses CMake as its primary build method. You can build Avidemux 2.4 or later using these commands in the source code directory:
cmake .
(the dot is required)
make
make -f Makefile.dist
(this is needed if you compile the SVN version, not needed for the official release)
./configure --with-jsapi-include=xxxx [[--with-newfaad|for Gentoo or Ubuntu]]
(xxxx is the directory where SpiderMonkey is installed - you cannot compile Avidemux 2.3 or older without SpiderMonkey, version 2.4 does not require external SpiderMonkey anymore)
make
(compile Avidemux)
make install
(install Avidemux - you must be root, use the
su
command for that)
Using the 'locate jsapi.h' command will usually find the directory you need with the jsapi.h file. If the locate command does not find it, you should update the location database with the command 'updatedb' and then re-try 'locate jsapi.h' command.
Some people may not want to have all the feature for Avidemux compiled into their program. Here is a list of ./configure arguments to prevent features from being compiled:
Audio
Video
Currently there is no explicit guide for compiling the latest version of Avidemux from Subversion (SVN) in Debian. However you can follow the Ubuntu/Kubuntu SVN Compile guide on this same page generally with no changes to the process and you should be able to compile just fine.
Avidemux deb packages for Debian can be found at http://debian-multimedia.org/.
You can get the necessary ebuilds for compiling Avidemux from the 2.3 subversion branch from the Berkano Overlay (which includes a couple of other ebuilds that may be useful). For information on how to use third-party ebuilds read the HowTo on the Gentoo Wiki.
Some Gentoo systems need the
--with-newfaad
argument with the ./configure stage of the compilation.
Enable the universe in your apt-source list. From a root console or via sudo use nano/vim/gedit or whatever text editor you like to open: /etc/apt/sources.list. You should either have the “universe” enabled on one of your repository lines.
After you have made sure the “universe” repository is enabled in your apt-sources file, from a root console or via sudo run this command:
sudo apt-get update
Next we will install the compile dependencies. Running this command line from the root console with either su or sudo will install many of the necessary dependencies for you to compile Avidemux with several extra features.
sudo apt-get install automake1.9 g++ gcc liba52-0.7.4 liba52-0.7.4-dev libfaac-dev libfaad-dev libstdc++6 libgtk2.0-dev libglib2.0-dev libsdl-console-dev libxv-dev pkg-config liblame-dev libmad0-dev libvorbis-dev libxml2-dev libxvidcore4-dev subversion
The libmad0 may not be needed anymore, since I think they just changed statically added it to the most recent SVN. Regardless, it cannot hurt.
Go to the place on your system when you want to download the source files for Avidemux. Make sure that you have Subversion installed. If you followed the previous step, you should be fine. You can choose to use the stable 2.4 branch or the unstable developers 2.5 branch. Using a console as a normal user, run this command:
svn co svn://svn.berlios.de/avidemux/branches/avidemux_2.5_branch_gruntster/
Now the source files for the latest version of Avidemux from the SVN repositories are on your system, in a directory usually called avidemux_2.x_branch (where 'x' is the specific version you chose to download) at your currect working directory. Move into that directory and create the configure script by running these commands:
cd avidemux_2.x_branch #where 'x' is the specific version you chose to download make -f Makefile.dist
After make is installed, from a run this command:
make
You now have a compiled executable file in avidemux_2.x_branch/avidemux called avidemux2_*. This is your new version of Avidemux. You may run it however you like or install it wherever you please.
Optional: make install
At this point you are done and all you need to do is from a console run this command:
sudo make install
Red Hat follows the general procedures for compiling but if you run into problems during the ./configure command, try using this variable:
--with-jsapi-include=/usr/local/include/js
For Fedora Core 5 install js and js-devel using yum:
yum install js js-devel
Then run configure with
--with-jsapi-include=/usr/include
See the Compiling SpiderMonkey article.
If you have problems compiling jsapi SpiderMonkey with Fedora, try doing this before you run the ./configure command:
export LD_LIBRARY_PATH="/path/to/libjs.so"
Slackware follows the general procedures for compiling but needs this in the ./configure command:
--with-jsapi-include=xxxx
where the xxxx should point to the Spidermonkey installation directory. The easiest way to get Spidermonkey installed on your system is to install the Mozilla Slackware package. This will install the appropriate js files to eg. /usr/lib/mozilla-1.7.13/
Additionally, the *js* files in Mozilla directory should be in your libpath (eg. /usr/lib), so simply symlink them to there. Done!
Some Slackware users have reported problems with GTK+ compiling. We suggest trying to this option when you are compiling. It seems to help:
./configure --without-libsdl
In case you get the following error during 'make -f Makefile.dist':
aclocal:configure.in:117: warning: macro `AM_GNU_GETTEXT' not found in library *** Creating configure configure.in:117: error: possibly undefined macro: AM_GNU_GETTEXT
you should install gettext-tools Slackware package.
In case of an error during the 'make install':
/bin/sh @MKINSTALLDIRS@ /usr/local/share /bin/sh: @MKINSTALLDIRS@: No such file or directory
do the following:
to be filled in
This information is specific to SUSE version 10.1, but may work for other versions as well. It was tested using kernel 2.6.16, but may work for other versions as well.
SUSE follows the general procedures for compiling but needs this in the ./configure command:
--with-jsapi-include=/usr/include/js
Be sure to install ALL developer RPMs (packagename-devel) of the libraries you want to use, specially SpiderMonkey.
For 64-bit users, before you try to compile, you need to run to this command first:
export LDFLAGS="-L/usr/X11R6/lib64"
This is a guide to building Avidemux from SVN in Microsoft Windows. It is intended for people who are familiar with compiling software but not necessarily using MinGW.
Note: The following instructions are tailored specifically for Microsoft Visual(nbsp)C++ 6.0. If you wish to use a different version of Visual(nbsp)C++ you may need to rebuild the dependencies required by Avidemux. More information at msdn.microsoft.com.
These components are necessary to build Avidemux on Microsoft Windows.
Program | Component(s) | Example Filename | URL |
---|---|---|---|
MinGW | binutils | binutils-2.16.91-20060119-1.tar.gz | MinGW website |
gcc-core | gcc-core-3.4.2-20040916-1.tar.gz | ||
gcc-g++ | gcc-g++-3.4.2-20040916-1.tar.gz | ||
mingw-runtime | mingw-runtime-3.11.tar.gz | ||
mingw-utils | mingw-utils-0.3.tar.gz | ||
w32api | w32api-3.8.tar.gz | ||
MSYS | MSYS-1.0.11-2004.04.30-1.exe | ||
MSYS DTK | msysDTK-1.0.1.exe | ||
Pkg-config | pkg-config-0.20.zip | Tor Lillqvist's GTK+ for Windows website | |
TortoiseSVN | TortoiseSVN-1.4.1.7992-win32-svn-1.4.2.msi | TortoiseSVN website |
These components are only required if you wish to compile optional dependencies.
Program | Component(s) | Example Filename | URL |
---|---|---|---|
Netwide Assembler | nasm | nasm-0.98.39-win32.zip | NASM website |
These components are only required if you wish to compile optional dependencies with Microsoft Visual C++.
Program | Component(s) | Example Filename | URL |
---|---|---|---|
Microsoft Visual C++ 6 Processor Pack | vcpp5.exe | MSDN website |
To build Avidemux on a Microsoft Windows operating system you will require MSYS and MinGW. MSYS is a Unix style shell environment for Windows. MinGW is a collection of header files, import libraries and GNU toolsets for producing native Windows programs.
To download the Avidemux source code you will require TortoiseSVN, which is source control software. It is implemented as a Windows shell extension, which makes it integrate seamlessly into the Windows Explorer.
Install the Processor Pack only if you wish to compile optional dependencies using Microsoft Visual C++.
export ACLOCALFLAGS="$ACLOCALFLAGS -I /mingw/share/aclocal/" export PKG_CONFIG_PATH="/mingw/lib/pkgconfig"
If you’ve installed the Netwide Assembler and wish to use Microsoft Visual C++ to compile optional dependencies, also follow these steps:
The source code for Avidemux and some of its dependencies must be downloaded from subversion repositories. TortoiseSVN supports all subversion protocols. Follow these steps to download code from an SVN URL:
These dependencies are necessary to successfully build Avidemux.
Dependency | Component(s) | Example Filename | URL |
---|---|---|---|
Expat v1 | expat | Expat.zip | expat website |
GTK+ | atk | atk-1.12.3.zip | Tor Lillqvist's GTK+ for Windows website |
atk-dev | atk-dev-1.12.3.zip | ||
cairo | cairo-1.2.6.zip | ||
cairo-dev | cairo-dev-1.2.6.zip | ||
fontconfig | fontconfig-2.3.2-tml-20060825.zip | ||
fontconfig-dev | fontconfig-dev-2.3.2-tml-20060825.zip | ||
freetype | freetype-2.1.10-bin.zip | ||
freetype-lib | freetype-2.1.10-lib.zip | ||
gettext | gettext-0.14.5.zip | ||
gettext-dev | gettext-dev-0.14.5.zip | ||
glib | glib-2.12.6.zip | ||
glib-dev | glib-dev-2.12.6.zip | ||
gtk+ | gtk+-2.10.6.zip | ||
gtk+-dev | gtk+-dev-2.10.6.zip | ||
libiconv | libiconv-1.9.1.bin.woe32.zip | ||
libpng | libpng-1.2.8-bin.zip | ||
libpng-lib | libpng-1.2.8-lib.zip | ||
pango | pango-1.14.8.zip | ||
pango-dev | pango-dev-1.14.8.zip | ||
Libxml v2 | libxml2 | libxml2-2.6.27.win32.zip | Libxml website |
Netscape Portable Runtime | nspr | nspr-4.4.1.zip | Mozilla NSPR FTP site |
Pthreads-w32 v1 | pthread-win32 | pthreads-w32-1-11-0-release.exe | Pthreads website |
Spidermonkey | js | js-1.5.tar.gz | Mozilla Spidermonkey website |
Zlib | zlib | zlib123-dll.zip | zlib website |
These libraries are optional but enable Avidemux to have greater functionality.
Library | Component(s) | Example Filename | URL |
---|---|---|---|
Aften | aften | aften-0.05-win32.zip | Aften website |
FAAC | faac | faac-1.25.zip | Audiocoding website |
FAAD | faad | faad2-2.5.zip | |
LAME | mp3lame | lame-3.97.tar.gz | LAME website |
Libdca | libdca | libdca-0.0.2.tar.gz | libdca website |
Ogg Vorbis | libogg | libogg-1.1.3.zip | Vorbis website |
libvorbis | libvorbis-1.1.2.zip | ||
Simple DirectMedia Layer | libsdl | SDL-1.2.11.zip | SDL website |
libsdl-dev | SDL-devel-1.2.11-VC6.zip | ||
Xvid | xvid | xvidcore-1.1.2.tar.gz | Xvid website |
Using Microsoft Visual C++ 6.0:
CPP_PROJ=
with (includes a trailing space):
CPP_PROJ=/I c:\dev\nspr-4.4.1\include /D "JS_THREADSAFE"
LINK32_FLAGS=
with (includes a trailing space):
LINK32_FLAGS=/libpath:c:\dev\nspr-4.4.1\lib libnspr4.lib
"C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT"
cd\Dev\js\src
nmake /f js.mak CFG="jsshell - Win32 Release"
cd /c/Dev/js/src/Release
pexports js32.dll > js32.def
dlltool -d js32.def -l /mingw/lib/libjs.a
mv js32.dll /mingw/bin
Using MinGW:
# Project: fdlibm CC = gcc.exe SRCDIR = /c/dev/js/src/fdlibm OBJECTS= \ $(SRCDIR)/w_sqrt.o \ $(SRCDIR)/e_pow.o \ $(SRCDIR)/e_sqrt.o \ $(SRCDIR)/k_standard.o \ $(SRCDIR)/s_atan.o \ $(SRCDIR)/s_finite.o \ $(SRCDIR)/s_isnan.o \ $(SRCDIR)/s_matherr.o \ $(SRCDIR)/s_rint.o \ $(SRCDIR)/s_scalbn.o \ $(SRCDIR)/w_atan2.o \ $(SRCDIR)/e_atan2.o \ $(SRCDIR)/s_fabs.o \ $(SRCDIR)/s_copysign.o \ $(SRCDIR)/w_pow.o \ $(SRCDIR)/s_lib_version.o LIBS = -llibm BIN = fdlibm.lib CFLAGS = -DJS_THREADSAFE -D_IEEE_LIBM -DWIN32 -D_WINDOWS -s .c.o: $(CC) -c $(CFLAGS) -o $@ $*.c $(BIN): $(OBJECTS) ar r $(BIN) $(OBJECTS) ranlib $(BIN)
# Project: js32 CC = gcc.exe WINDRES = windres.exe RES = js.res SRCDIR = /c/dev/js/src OBJECTS = \ $(SRCDIR)/jsapi.o \ $(SRCDIR)/jsarena.o \ $(SRCDIR)/jsarray.o \ $(SRCDIR)/jsatom.o \ $(SRCDIR)/jsbool.o \ $(SRCDIR)/jscntxt.o \ $(SRCDIR)/jsdate.o \ $(SRCDIR)/jsdbgapi.o \ $(SRCDIR)/jsdhash.o \ $(SRCDIR)/jsdtoa.o \ $(SRCDIR)/jsemit.o \ $(SRCDIR)/jsexn.o \ $(SRCDIR)/jsfun.o \ $(SRCDIR)/jsgc.o \ $(SRCDIR)/jshash.o \ $(SRCDIR)/jsinterp.o \ $(SRCDIR)/jslock.o \ $(SRCDIR)/jslog2.o \ $(SRCDIR)/jslong.o \ $(SRCDIR)/jsmath.o \ $(SRCDIR)/jsnum.o \ $(SRCDIR)/jsobj.o \ $(SRCDIR)/jsopcode.o \ $(SRCDIR)/jsparse.o \ $(SRCDIR)/jsprf.o \ $(SRCDIR)/jsregexp.o \ $(SRCDIR)/jsscan.o \ $(SRCDIR)/jsscope.o \ $(SRCDIR)/jsscript.o \ $(SRCDIR)/jsstr.o \ $(SRCDIR)/jsutil.o \ $(SRCDIR)/jsxdrapi.o \ $(SRCDIR)/prmjtime.o \ $(RES) LIBS = --add-stdcall-alias -lfdlibm -lnspr4 -L./fdlibm -L/c/dev/nspr-4.4.1/lib BIN = js.dll CFLAGS = -I/dev/nspr-4.4.1/include -DJS_THREADSAFE -DXP_WIN \ -DEXPORT_JS_API -D_WINDOWS -DWIN32 -D_MINGW -s DLLWRAP=dllwrap.exe DEFFILE=libjs.def STATICLIB=libjs.a .c.o: $(CC) -c $(CFLAGS) -o $@ $*.c $(BIN): $(OBJECTS) $(CC) -shared -o $@ \ -Wl,--output-def,$(DEFFILE) \ -Wl,--out-implib,$(STATICLIB) \ $(OBJECTS) \ $(LIBS) $(RES): $(WINDRES) -i $(SRCDIR)/js3240.rc -I rc -o $(RES) -O coff
cd /c/Dev/js/src/fdlibm make
cd /c/Dev/js/src make strip –-strip-all js.dll
mv /c/Dev/js/src/js.dll /mingw/bin mv /c/Dev/js/src/libjs.a /mingw/lib
void *private;
with:
void *_private;
If you prefer to use a DLL rather than linking to a static library, also follow these steps:
cd /mingw/lib
a2dll libaften.a -o aften.dll
strip --strip-all aften.dll
pexports aften.dll > aften.def
dlltool -d aften.def -l libaften.a
mv aften.dll /mingw/bin
#define FAACAPI __stdcall
with:
#define FAACAPI __cdecl
Using Microsoft Visual C++ 6.0:
pexports /mingw/bin/libfaac.dll > libfaac.def
dlltool -d libfaac.def -l /mingw/lib/libfaac.a
Using MinGW:
cd /c/Dev/faac/libfaac
gcc –s –O3 –shared -I../include *.c -o /mingw/bin/libfaac.dll -Wl,--out-implib,/mingw/lib/libfaac.a –Wl,--add-stdcall-alias
Using Microsoft Visual C++ 6.0:
LIBRARY libfaad2.dll EXPORTS ; ; libfaad exports ; NeAACDecOpen @1 NeAACDecGetCurrentConfiguration @2 NeAACDecSetConfiguration @3 NeAACDecInit @4 NeAACDecInit2 @5 NeAACDecDecode @6 NeAACDecClose @7 NeAACDecGetErrorMessage @8 NeAACDecAudioSpecificConfig @9 NeAACDecPostSeekReset @10
pexports /mingw/bin/libfaad2.dll > libfaad.def
dlltool -d libfaad.def -l /mingw/lib/libfaad.a
Using MinGW:
cd /c/Dev/faad2/libfaad
gcc –s –O3 -DHAVE_MEMCPY=1 -DHAVE_STRING_H=1 –DHAVE_STDINT_H=1 -I"." *.c -shared -o /mingw/bin/libfaad2.dll -Wl,--out-implib,/mingw/lib/libfaad.a
cd /c/dev/lame-3.97
./configure --prefix=/mingw make make install
strip --strip-all /mingw/bin/libmp3lame-0.dll
cd /c/dev/libdts-0.0.2
./configure --prefix=/mingw make make install
If you prefer to use a DLL rather than linking to a static library, also follow these steps:
cd /mingw/lib
a2dll libdts.a -o dts.dll
strip --strip-all dts.dll
pexports dts.dll > dts.def
dlltool -d dts.def -l libdts.a
mv dts.dll /mingw/bin
Using Microsoft Visual C++ 6.0:
pexports /mingw/bin/vorbis.dll > vorbis.def pexports /mingw/bin/vorbisenc.dll > vorbisenc.def
dlltool -d vorbis.def -l /mingw/lib/libvorbis.a dlltool -d vorbisenc.def -l /mingw/lib/libvorbisenc.a
Using MinGW:
cd /c/dev/libogg-1.1.3
./configure --prefix=/mingw make make install
cd /c/dev/libvorbis-1.1.2
./configure --prefix=/mingw LIBS="-L/mingw/lib –logg" make make install
cd /c/dev/sdl-1.2.11
./configure --prefix=/mingw make make install
svn://svn.videolan.org/x264/trunk
if cc_check pthread.h -lpthread "pthread_create(0,0,0,0);" ; then pthread="yes" libpthread="-lpthread"
to:
if cc_check pthread.h –lpthread**GC1** "pthread_create(0,0,0,0);" ; then pthread="yes" libpthread="-lpthread**GC1**"
libx264.a: .depend $(OBJS) $(OBJASM) ar rc libx264.a $(OBJS) $(OBJASM) ranlib libx264.a $(SONAME): .depend $(OBJS) $(OBJASM) $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS)
with:
ifeq ($(SYS),MINGW) $(CC) -shared -Wl,--out-implib,libx264.a -o libx264.dll $(OBJS) $(OBJASM) $(LDFLAGS) else libx264.a: .depend $(OBJS) $(OBJASM) ar rc libx264.a $(OBJS) $(OBJASM) ranlib libx264.a $(SONAME): .depend $(OBJS) $(OBJASM) $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS) endif
cd /c/dev/x264
./configure --prefix=/mingw --enable-pthread –-enable-avis-input --enable-shared make make install
cp libx264.dll /mingw/bin
Using Microsoft Visual C++ 6.0:
Using MinGW:
cd /c/dev/xvid-1.1.2/build/generic
./configure --prefix=/mingw make make install
cd /c/dev/avidemux
make –f makefile.dist
If make fails with an AM_GNU_GETTEXT error, execute the following commands:
cp ./m4/*.m4 /mingw/share/aclocal make –f makefile.dist
./configure –-with-jsapi-include=/c/dev/js/src make
./avidemux/dolink
/bin/sh ../libtool
-llibxml2 -lwinmm -lwsock32
/bin/sh ../libtool --silent --mode=link g++ -g -I.. -I../ADM_lavutil -IADM_library -I../ADM_library \ -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -mno-cygwin -mms-bitfields -O2 -falign-loops=16 \ -o avidemux2.exe \ -L/mingw/lib \ \ guiplay.o gui_savenew.o gui_navigate.o gtk_gui.o callbacks.o \ avilist.o main.o prefs.o ADM_guiBitrate.o ADM_pp.o ADM_memsupport.o \ gui_autodrive.o GUI_jobs.o ADM_dialog/DIA_quota.o \ ADM_lavcodec/libavcodec.a ADM_lavcodec/libpostproc/libpostproc.a \ ./ADM_script/libADM_script.a ./ADM_editor/libADM_editor.a \ ./ADM_library/libADM_library.a ./ADM_openDML/libADM_openDML.a \ ./oplug_ogm/liboplug_ogm.a ./ADM_audiocodec/libADM_audiocodec.a \ ./ADM_audio/libADM_audio.a ./oplug_avi/liboplug_avi.a \ ./oplug_mp4/liboplug_mp4.a ./oplug_mpeg/liboplug_mpeg.a \ ./oplug_mpegFF/liboplug_mpegFF.a ./ADM_mplex/libADM_mplex.a \ ./ADM_lavformat/libADM_lavformat.a ./ADM_lavutil/libADM_lavutil.a \ ./ADM_lvemux/libADM_lvemux.a ./ADM_filter/libADM_filter.a \ ./ADM_video/libADM_video.a ./ADM_encoder/libADM_encoder.a \ ./ADM_codecs/libADM_codecs.a ./ADM_vp32/libADM_vp32.a \ ./ADM_audiofilter/libADM_audiofilter.a ./libtoolame/liblibtoolame.a \ ./ADM_gui2/libADM_gui2.a ./ADM_libswscale/libswscale.a \ ./mpeg2enc/libmpeg2enc.a ./ADM_liba52/libADM_liba52.a \ ./ADM_libMad/libADM_mad.a ./ADM_inpics/libADM_inpics.a \ ./ADM_3gp/libADM_3gp.a ./ADM_avsproxy/libADM_avsproxy.a \ ./ADM_matroska/libADM_matroska.a ./ADM_asf/libADM_asf.a \ ./ADM_h263/libADM_h263.a ./ADM_nuv/libADM_nuv.a \ ./ADM_ogm/libADM_ogm.a ./ADM_audiodevice/libADM_audiodevice.a \ ./ADM_xvidratectl/libADM_xvidratectl.a ./ADM_requant/libADM_requant.a \ ./ADM_ocr/libADM_ocr.a ./ADM_mpegdemuxer/libADM_mpegdemuxer.a \ ./ADM_audio/libADM_audio.a ./ADM_toolkit/libADM_toolkit.a \ ./ADM_dialog/libADM_dialog.a ./libMpeg2Dec/liblibMpeg2Dec.a \ ./ADM_tray/libADM_tray.a ./ADM_colorspace/libADM_colorspace.a \ ADM_lavcodec/libavcodec.a ./ADM_lavutil/libADM_lavutil.a \ ./ADM_lavcodec/libpostproc/libpostproc.a ./ADM_library/libADM_library.a \ ./ADM_toolkit/libADM_toolkit.a ./libass/libass.a \ ./xpm/adm.o \ \ -luuid -ljs -lfontconfig -lmp3lame -lvorbis -lvorbisenc -lfaac -lfaad \ -ldts -lxvidcore -lpng -lx264 -laften -lmingw32 -lSDLmain -lSDL \ -mwindows -user32 -lpthreadGC1 -lgtk-win32-2.0 -lgdk-win32-2.0 -limm32 \ -lshell32 -lole32 -latk-1.0 -lgdk_pixbuf-2.0 -lpangowin32-1.0 -lgdi32 \ -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 \ -lglib-2.0 -lintl -liconv -lgthread-2.0 -lfreetype -lz -llibxml2 \ -lwinmm -lwsock32
cd avidemux dolink strip –-strip-all avidemux2.exe
avidemux2