
Frontend for ffmpeg2theora
Source (link to git-repo or to original if based on someone elses unmodified work):
For full readme and translations, please visit my homepage
Build instructions
At first, unpack downloaded archive (e.g. using midnight commander) and move to program directory (ffmpeg2theora_fe). This program uses build system qmake. Default installation path is set to /usr/bin To change it, edit line DESTDIR in project file ffmpeg2theora_fe.pro Now, it is time to generate Makefile. Simply run
qmake -o Makefile ffmpeg2theora_fe.pro
su -c "make"
To uninstall program, run
su -c "make distclean"
18th October 2007
Fixed download links.
18th March 2007 - version 2.01
Fixed tab order
18th March 2007 - second public release
Added support for ffmpeg2theora profiles
Updated to latest ffmpeg2theora (0.1 - now you can set up image properties (contrast, brightness, gamma correction and saturation)
Added possibility to save task queue as shell script
Reorganized wizard pages to make it easier to use
Cleaned up sources
1.0 - first public release
Ratings & Comments
3 Comments
...but second command fails. g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I.moc -o .obj/main.o main.cpp main.cpp:24:22: error: mainform.h: No such file or directory main.cpp: In function ‘int main(int, char**)’: main.cpp:29: error: variable ‘QTranslator translator’ has initializer but incomplete type main.cpp:30: error: ‘locale’ is not a member of ‘QTextCodec’ main.cpp:30: error: ‘homeDirPath’ is not a member of ‘QDir’ main.cpp:32: error: ‘mainForm’ was not declared in this scope main.cpp:32: error: expected `;' before ‘w’ main.cpp:33: error: ‘w’ was not declared in this scope make: *** [.obj/main.o] Error 1
It seems that you are using QT 4. This program works only with QT 3.3.x
Yes it is a makefile Problem. You can fix this with QT Env Variables. ## /etc/qt/qt.conf ## @see http://doc.trolltech.com/4.2/qt-conf.html [Paths] ## @see qmake -query QT_INSTALL_PREFIX Prefix=/usr ## @see qmake -query QT_INSTALL_DOCS Documentation=/usr/share/doc/qt ## @see qmake -query QT_INSTALL_HEADERS Headers=/usr/include ## @see qmake -query QT_INSTALL_PLUGINS Plugins=/usr/lib/qt ## @see qmake -query QT_INSTALL_DATA Data=/usr/share/qt ## @see qmake -query QT_INSTALL_TRANSLATIONS Translations=/usr/share/qt/translations ## @see qmake -query QT_INSTALL_SETTINGS Settings=/etc/qt ## @see qmake -query QT_INSTALL_EXAMPLES Examples=/usr/share/qt/examples ## @see qmake -query QT_INSTALL_DEMOS Demos=/usr/share/qt/demos