-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    LinuxDaily.com    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans (4) .- Knowledge Base  . 

VLC-Qt library

   0.8.1  

Qt Development Tool

Score 54%
VLC-Qt library
zoom


Homepage:  http://projects.tano.si
Link:  Link
Issue Tacker:  Link
Downloads:  4720
Submitted:  Oct 14 2010
Updated:  Apr 27 2013

Description:

VLC-Qt is a free library used to connect Qt and libvlc libraries.
It contains core classes for main media playback and also some GUI classes for faster media player developement.

VLC-Qt is free (libre) software. This means that the library source code is available to public, anyone is welcome to research how the library works, participate in its development, freely distribute the library and spread the word!

VLC-Qt runs on Linux and Windows, other operating systems are currently not supported.

Official builds available for:
- Windows
- Ubuntu
- ArchLinux
- OpenSUSE (community)

GitHub project:
https://github.com/ntadej/vlc-qt




Changelog:

0.8.1 (2013-04-27)
* Autodetect Qt4 or Qt5
* Restored MinGW support
* Windows SDK updated to Qt 5.0.2 and VLC 2.0.6 with release and debug builds




LicenseLGPL
(Download page with links for all platforms)
Send to a friend
Subscribe
Other  Content  from ntadej
Report inappropriate content



goto page: prev   1  2  3  4  5  6 

-

 Crashes at mediaPlayer->open()

 
 by Tr4Zz on: Feb 1 2011
 
Score 50%

I've got the problem that my programm crashes when I call the vlcmediaPlayer->open() function.

I'm working on WinXP and so far QT worked great. VLC and Quicktime 7 is installed. VLC plays the movie I want to insert to QT.

I downloaded the MS Windows (Windows Build) version of your lib and put the files and folders of the bin-folder in C:\SDKs\QT\qt\bin, the files and folders of the lib-folder in C:\SDKs\QT\qt\lib, the files and folders of the include-folder in C:\SDKs\QT\qt\include.

In the .pro file of my project I added the following lines:
LIBS += C:/SDKs/QT/qt/bin/libvlc.dll
LIBS += C:/SDKs/QT/qt/bin/libvlc-qt.dll
LIBS += C:/SDKs/QT/qt/bin/libvlccore.dll
LIBS += C:/SDKs/QT/qt/lib/libvlc.dll.a
LIBS += C:/SDKs/QT/qt/lib/libvlc-qt.dll.a
LIBS += C:/SDKs/QT/qt/lib/libvlccore.dll.a
LIBS += -lvlc

I tried out to comment some of the lines and I get to compile it with just LIBS += C:/SDKs/QT/qt/lib/libvlc-qt.dll.a but the programm crashed at runtime.
I get no compile or linker-errors.

In the mainwindow.h I declare:
VlcMediaPlayer* mediaPlayer;

The mainwindow.cpp looks like this (in the constructor):
mediaPlayer->open("file:///C:/donkeypedia.mov");
mediaPlayer->play();

I tried several combinations for the url of the file ("file:///C:/donkeypedia.mov") but nothing worked.

I'd really appreciate your help!!


Reply to this

-

 Re: Crashes at mediaPlayer->open()

 
 by ntadej on: Feb 1 2011
 
Score 50%

When using VLC-Qt you need to create an VlcInstance object every time.

Sample code:

VlcInstance *instance = new VlcInstance(VlcCommon::args(), this);
VlcMediaPlayer *player = new VlcMediaPlayer();
player->play("song.mp3");


Reply to this

-

 How to compile in Windows 7

 
 by alvaro85 on: Feb 10 2011
 
Score 50%

Hi,

I had compiled and generated a Visual Studio solution with CMake, but i have some problems with Instance.cpp becouse my solution doesn't work.

The solution I built, was generated following the instruction of the following link http://tano.si/en/vlc-qt/documentation/compile


I'm newbie with QT Apps and on file compiling, I don't realize what is the problem.


Could somebody give me a help about the generation of QT solutions in Visual Studio using the Windows build?


Many thanks in advance!


Reply to this

-

 Re: How to compile in Windows 7

 
 by ntadej on: Feb 10 2011
 
Score 50%

I am not experienced with using Visual Studio and can not tell if it even works.

Please try using QtCreator.


Reply to this

-

 VlcInstance error

 
 by ailmcm on: Mar 29 2011
 
Score 50%

win7, QtCreator, all libs and path are like above.

in window.cpp i entered this:

VlcInstance *instance = new VlcInstance(VlcCommon::args(), this);
VlcMediaPlayer *player = new VlcMediaPlayer();
player->open("song.mp3");
player->play();

and i got error:
no matching function for call VlcInstance.

cant get why so...


Reply to this

-

 VlcInstance error

 
 by ailmcm on: Mar 29 2011
 
Score 50%

win7, QtCreator, all libs and path are like above.

in window.cpp i entered this:

VlcInstance *instance = new VlcInstance(VlcCommon::args(), this);
VlcMediaPlayer *player = new VlcMediaPlayer();
player->open("song.mp3");
player->play();

and i got error:
no matching function for call VlcInstance.

cant get why so...


Reply to this

-

 VlcInstance error

 
 by ailmcm on: Mar 29 2011
 
Score 50%

win7, QtCreator, all libs and path are like above.

in window.cpp i entered this:

VlcInstance *instance = new VlcInstance(VlcCommon::args(), this);
VlcMediaPlayer *player = new VlcMediaPlayer();

and i got error:
no matching function for call VlcInstance.


Reply to this

-
.

 Closed Source

 
 by julian-w on: Apr 25 2011
 
Score 50%

Hello,
can I use your libary in a proprietary, closed source Project?

Greetings from Germany
Julian


Reply to this

-

 Re: Closed Source

 
 by ntadej on: Apr 26 2011
 
Score 50%

Unfortunately not.

VLC-Qt connects libVLC and Qt. VLC is licensed with GPL and cannot be used in closed-source applications and therefore also this library must be licensed with GPL.


Reply to this

-

 Re: Re: Closed Source

 
 by julian-w on: Apr 26 2011
 
Score 50%

Thank you for your answere :)

Now I have to look for another, platformindepedent multimedia library under the LGPL (?) licence or I eventually will release my software under the GPL, too.
I think to release the software under GPL is the best way because these solves a lots of licence problems...


Reply to this

goto page: prev   1  2  3  4  5  6 

Add commentBack




-
openDesktop.org Facebook App




 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Facebook App
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2013 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team