Is there a .deb file or appimage or snap or flatpak or something else?
I am trying to install by source and I don't see a list of dependencies anywhere. I have been installing them one after the other, according to the errors in build, but I am stuck on this one:
MP4Joiner requires the wxSVG library with ffmpeg/libav support.
The full output is:
./configure&&makecheckingforaBSD-compatibleinstall.../usr/bin/install-ccheckingwhetherbuildenvironmentissane...yes/home/shmuel/Downloads/MP4Tools-3.8/missing:Unknown`--is-lightweight' optionTry`/home/shmuel/Downloads/MP4Tools-3.8/missing--help' for more informationconfigure:WARNING:'missing'scriptistoooldormissingcheckingforathread-safemkdir-p.../usr/bin/mkdir-pcheckingforgawk...gawkcheckingwhethermakesets$(MAKE)...yescheckingwhethermakesupportsnestedvariables...yescheckingwhethertoenablemaintainer-specificportionsofMakefiles...nocheckingforinstalllocation.../usr/localcheckingwhetherln-sworks...yescheckingforranlib...ranlibcheckingforgcc...gcccheckingwhethertheCcompilerworks...yescheckingforCcompilerdefaultoutputfilename...a.outcheckingforsuffixofexecutables...checkingwhetherwearecrosscompiling...nocheckingforsuffixofobjectfiles...ocheckingwhetherweareusingtheGNUCcompiler...yescheckingwhethergccaccepts-g...yescheckingforgccoptiontoacceptISOC89...noneneededcheckingwhethergccunderstands-cand-otogether...yescheckingwhethermakesupportstheincludedirective...yes(GNUstyle)checkingdependencystyleofgcc...gcc3checkingforg++...g++checkingwhetherweareusingtheGNUC++compiler...yescheckingwhetherg++accepts-g...yescheckingdependencystyleofg++...gcc3checkinghowtoruntheC++preprocessor...g++-Echeckingforpkg-config.../usr/bin/pkg-configcheckingpkg-configisatleastversion0.9.0...yescheckingforwx-config.../usr/bin/wx-configcheckingforwxWidgetsversion>=2.8.7...yes(version3.0.4)checkingforwxWidgetsstaticlibrary...nocheckingforLIBAV...yescheckingforlibavformat/avformat.h...yescheckingforwxSVG...yescheckingforwxSVGlibrarywithffmpeg/libavsupport...noconfigure:error:MP4JoinerrequiresthewxSVGlibrarywithffmpeg/libavsupport.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Maybe you don't need this today. But for everybody with this error:
-Reinstall ffmpeg
-Reinstall libwsvg and related
-Install wxSVG from https://wxsvg.sourceforge.net/ and build it with
./autogen.sh,
./configure --enable-libav
make
sudo make install
If you installed it previously, open a terminal and type cd wxsvg (for example) and type: make clean, sudo make clean. Then rebuild wxSVG. You'll need Pango and Cairo, Pangocairo and related.
Download mp4tools 3.8
cd mp4tools
./autogen.sh
-./configure --with-wx-config=/usr/bin/wx-config
-make
-sudo make install.
That worked for me after hours with errors. I hope it helps.
Last edit: Manuel Pernas Garcia 2023-03-23
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there a .deb file or appimage or snap or flatpak or something else?
I am trying to install by source and I don't see a list of dependencies anywhere. I have been installing them one after the other, according to the errors in build, but I am stuck on this one:
The full output is:
I have these packages installed:
Maybe you don't need this today. But for everybody with this error:
-Reinstall ffmpeg
-Reinstall libwsvg and related
-Install wxSVG from https://wxsvg.sourceforge.net/ and build it with
./autogen.sh,
./configure --enable-libav
make
sudo make install
If you installed it previously, open a terminal and type cd wxsvg (for example) and type: make clean, sudo make clean. Then rebuild wxSVG. You'll need Pango and Cairo, Pangocairo and related.
-./configure --with-wx-config=/usr/bin/wx-config
-make
-sudo make install.
That worked for me after hours with errors. I hope it helps.
Last edit: Manuel Pernas Garcia 2023-03-23
You also need to install gpac, sudo apt install gpac
Last edit: Manuel Pernas Garcia 2023-03-23