News:

Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - gdhgdh

#1
VOMP General / MVP / Re: new HD Vomp?
January 19, 2011, 21:31:20
Oh goodness - yes please :D
#2
QtVomp / Re: compilation problems
November 24, 2008, 19:49:32
Ahh great :) Also just fired up a KDE session, and qtvomp now shows video in live + recordings when run in GNOME - am looking forward to seeing the code develop =)

#3
QtVomp / Re: compilation problems
November 24, 2008, 14:25:30
It compiles and runs cleanly... but trying to watch any video fails with the Phonon subsystem complaining that it's unable to launch the playback plugin (which does seem to be xine)

I looked around, found a few possible solutions, but none worked so I gave up...

#4
QtVomp / Re: compilation problems
November 21, 2008, 20:14:36
Ok got it compiled and the binary launched. (still need to upgrade the server to 0.3, tho') . For reference, I just needed amend the qtvomp/src/Makefile to

INCPATH       = -I /usr/lib/kde4/include/ ...etc. ....
and
LIBS          = $(SUBLIBS)  -L/usr/lib -L/usr/lib/kde4/lib -lphonon -lpthread -lQtGui -lQtNetwork -lQtCore

I would still like to hear how these paths could be automatically detected by the build system (a KDE/Qt equivalent for gtk-config)
#5
QtVomp / compilation problems
November 21, 2008, 20:00:50
Hi :)

Am trying to compile qtvomp on Ubuntu hardy. I'm not exactly a Linux newbie, but wanted to run this by you in case there's an inherent flaw in the build system:


gdh@gdh-home:~/qtvomp$ qmake
gdh@gdh-home:~/qtvomp$ make
cd src/ && make -f Makefile
make[1]: Entering directory `/home/gdh/qtvomp/src'
g++ -c -pipe -g -D_REENTRANT -Wall -W -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I/usr/include/phonon -I../build/src -I. -o ../build/src/qtvomp.o qtvomp.cpp
In file included from qtvomp.h:32,
                 from qtvomp.cpp:25:
widgetplayvideo.h:26:32: error: phonon/mediaobject.h: No such file or directory


Now, libphonon-dev is installed, and that header is here:


/usr/lib/kde4/include/phonon/mediaobject.h


and I've installed hundreds of megs of kdelibs5-dev with dependencies... so everything needed should be there :/

Do I just need to force a specific include directory? How can the build system detect this automatically?