Page 2 of 2 FirstFirst 12
Results 21 to 39 of 39

Thread: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

  1. #21
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    If you install phonon, your package manager should install all dependencies as well. Actually I'm using xine backend for phonon on my Linux box and not gstreamer. I only had to install phonon-gstreamer and phonon-xine packages for both backends.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  2. The following user says thank you to wysota for this useful post:

    hakermania (1st September 2010)

  3. #22
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Thanks, but my package manager cannot find the files you specified. Also, what about QAudioOutput ? Can I play music with this?

  4. #23
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    I found a code and tranformed it (hehe) to this:
    Qt Code:
    1. #include <QFile>
    2. #include <QAudioFormat>
    3. #include <QAudioOutput>
    4. #include <QSound>
    5.  
    6. int main()
    7. {
    8. QFile inputFile;
    9. inputFile.setFileName("/home/alex/Music/noh.wav");
    10. inputFile.open(QIODevice::ReadOnly);
    11.  
    12. QAudioFormat format;
    13. format.setFrequency(8000);
    14. format.setChannels(1);
    15. format.setSampleSize(8);
    16. format.setCodec("audio/pcm");
    17. format.setByteOrder(QAudioFormat::LittleEndian);
    18. format.setSampleType(QAudioFormat::UnSignedInt);
    19. QAudioOutput *audio = new QAudioOutput( format, 0);
    20. audio->start(&inputFile);
    21. return 0;
    22. }
    To copy to clipboard, switch view to plain text mode 
    but the only output is
    QObject::startTimer: QTimer can only be used with threads started with QThread and no sound is heard.. (--_--)

  5. #24
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Well, obviously this won't work, especially if you exit the application immediately. Query your package manager for phonon and install everything related to it. You should at least get playback for the free formats (like ogg). Test it with the mediaplayer Qt example.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  6. The following user says thank you to wysota for this useful post:

    hakermania (1st September 2010)

  7. #25
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Thank you. I installed Phonon and I tried the MediaPlayer example. unfortunately, even after the installation of all the codecs I can't still play mp3 files. This is quite embarrassing because there are some apps that support mp3 file playing, like Alarm Clock from the Software package manager in ubuntu... I downloaded the source but I didn't understand how does it do it haha.... anyway.... Is there any other other way to play mp3 files?

  8. #26
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Quote Originally Posted by hakermania View Post
    unfortunately, even after the installation of all the codecs I can't still play mp3 files
    Can you play ogg files? Or any other kinds of files?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  9. The following user says thank you to wysota for this useful post:

    hakermania (1st September 2010)

  10. #27
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Yes. i can play ogg and wav files. But I cannot play mp3 at all. All mp3 codecs need have been installed. We spoke about phonon and codecs that should be installed in this thread at post No#10 - post No#18
    So, as Bong.Da.City has the same problem with me, I don't believe that there is a problem with the system codecs, as the necessary codecs have been installed. :/
    If there is no solution on how to play mp3 files with phonon, I would like at least to know how to make the code that I posted above work and I'll use canberra-gtk-play (see post No#1 in this thread) as it supports wav and ogg files as well, so there is no point using phonon libraries as i have already include stdlib.h and i can call system() to play the sound....

  11. #28
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Quote Originally Posted by hakermania View Post
    All mp3 codecs need have been installed.
    Apparently not.

    We spoke about phonon and codecs that should be installed in this thread at post No#10 - post No#18
    Run the phonon/capabilities example and see the list of supported file types.

    So, as Bong.Da.City has the same problem with me, I don't believe that there is a problem with the system codecs, as the necessary codecs have been installed. :/

    If there is no solution on how to play mp3 files with phonon, I would like at least to know how to make the code that I posted above work and I'll use canberra-gtk-play (see post No#1 in this thread) as it supports wav and ogg files as well, so there is no point using phonon libraries as i have already include stdlib.h and i can call system() to play the sound....
    Bearing the fact that canberra-gtk-play probably uses gstreamer, the same as phonon that uses gstreamer, I don't really see the point of doing that. Phonon has nothing to do with the fact whether you can or cannot play mp3 files. If you can play anything then phonon works fine. Its work ends with passing the stream of bytes to gstreamer. By the way, you can also try the xine phonon backend from kde, maybe it'll work better for you. Also check if you can play the mp3 with totem as it has gstreamer as its backend too.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  12. #29
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    I can play mp3 files with totem:

    Although mp3 is not included in the list of files listed after the compilation of phonon/capabilities:
    Qt Code:
    1. --ALSA--
    2. annodex
    3. x-annodex
    4. aiff
    5. x-aiff
    6. x-pn-aiff
    7. flac
    8. x-flac
    9. x-realaudio
    10. basic
    11. x-basic
    12. x-pn-au
    13. x-mod
    14. mod
    15. it
    16. x-it
    17. x-stm
    18. x-s2m
    19. s3m
    20. med
    21. x-amf
    22. x-xm
    23. xm
    24. x-ogg
    25. ogg
    26. mp4
    27. x-8svx
    28. 8svx
    29. 168sv
    30. x-ms-wma
    31. x-pn-realaudio
    32. x-pn-realaudio-plugin
    33. x-real-audio
    34. x-wav
    35. wav
    36. x-pn-wav
    37. x-pn-windows-acm
    38. musepack
    39. x-musepack
    40. x-wavpack
    41. x-flac
    42. flac
    43. x-vorbis+ogg
    To copy to clipboard, switch view to plain text mode 
    What should I do

  13. #30
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Did you try the xine backend? Also make sure you have ffmpeg and ffmpeg support for gstreamer installed if you are willing to continue with the gstreamer backend (provided you indeed have gstreamer as the backend). By the way, your list is very poor, mine is much richer.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  14. The following user says thank you to wysota for this useful post:

    hakermania (2nd September 2010)

  15. #31
    Join Date
    Dec 2008
    Location
    Poland
    Posts
    383
    Thanks
    52
    Thanked 42 Times in 42 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows Android

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    There is also vlc and mplayer backeds, see:
    http://www.gitorious.org/phonon
    http://code.google.com/p/phonon-vlc-mplayer/

    And maybe try running LiveCD Ubuntu (I assume, from the screens, that it's your Linux flavour) and mount partition with compiled examples and try installing there missing codec. It's just a thought but maybe You have broken dependences in Your system or "something strange" is going on. Test with native "Movie Player".
    As said before, I installed (before posting) mentioned codec package in my Ubuntu and everything worked fine, same goes for Debian (although I had codec installed... well a long time ago).

  16. The following user says thank you to Talei for this useful post:

    hakermania (2nd September 2010)

  17. #32
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    There's nothing strange with my system. Bong.Da.City (I hope he'll post again because I need support here haha) has the same problem. Two same situations with the same problem in the same thread? I don't believe into such coincidences...Our systems haven't got any problem.
    @wysota I installed them. MP3 still can't be played.
    @Talei, I got errors when trying to install both phnon-vlc and phonon-mplayer when doing cmake..The output is:
    VLC:
    Qt Code:
    1. alex@MaD-pc:~/phonon/phonon-vlc$ cmake vlc
    2. -- The C compiler identification is GNU
    3. -- The CXX compiler identification is GNU
    4. -- Check for working C compiler: /usr/bin/gcc
    5. -- Check for working C compiler: /usr/bin/gcc -- works
    6. -- Detecting C compiler ABI info
    7. -- Detecting C compiler ABI info - done
    8. -- Check for working CXX compiler: /usr/bin/c++
    9. -- Check for working CXX compiler: /usr/bin/c++ -- works
    10. -- Detecting CXX compiler ABI info
    11. -- Detecting CXX compiler ABI info - done
    12. CMake Error at CMakeLists.txt:45 (automoc4):
    13. Unknown CMake command "automoc4".
    14.  
    15.  
    16. CMake Warning (dev) in CMakeLists.txt:
    17. No cmake_minimum_required command is present. A line of code such as
    18.  
    19. cmake_minimum_required(VERSION 2.8)
    20.  
    21. should be added at the top of the file. The version specified may be lower
    22. if you wish to support older CMake versions for this project. For more
    23. information run "cmake --help-policy CMP0000".
    24. This warning is for project developers. Use -Wno-dev to suppress it.
    25.  
    26. -- Configuring incomplete, errors occurred!
    27. alex@MaD-pc:~/phonon/phonon-vlc$
    To copy to clipboard, switch view to plain text mode 
    MPlayer:
    Qt Code:
    1. -- The C compiler identification is GNU
    2. -- The CXX compiler identification is GNU
    3. -- Check for working C compiler: /usr/bin/gcc
    4. -- Check for working C compiler: /usr/bin/gcc -- works
    5. -- Detecting C compiler ABI info
    6. -- Detecting C compiler ABI info - done
    7. -- Check for working CXX compiler: /usr/bin/c++
    8. -- Check for working CXX compiler: /usr/bin/c++ -- works
    9. -- Detecting CXX compiler ABI info
    10. -- Detecting CXX compiler ABI info - done
    11. CMake Error at libmplayer/CMakeLists.txt:15 (qt4_wrap_cpp):
    12. Unknown CMake command "qt4_wrap_cpp".
    13.  
    14.  
    15. CMake Warning (dev) in CMakeLists.txt:
    16. No cmake_minimum_required command is present. A line of code such as
    17.  
    18. cmake_minimum_required(VERSION 2.8)
    19.  
    20. should be added at the top of the file. The version specified may be lower
    21. if you wish to support older CMake versions for this project. For more
    22. information run "cmake --help-policy CMP0000".
    23. This warning is for project developers. Use -Wno-dev to suppress it.
    24.  
    25. -- Configuring incomplete, errors occurred!
    26. alex@MaD-pc:~/phonon/phonon-mplayer$
    To copy to clipboard, switch view to plain text mode 
    Thx again.

  18. #33
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Quote Originally Posted by hakermania View Post
    There's nothing strange with my system. Bong.Da.City (I hope he'll post again because I need support here haha) has the same problem.
    You don't know he has the same problem. He has a similar problem. The reason might be completely different.

    @wysota I installed them. MP3 still can't be played.
    "Installing" is not enough. You have to make sure Phonon actually uses the other backend (you can temporarily move the gstreamer backend files elsewhere).


    Let's get one thing straight and I hope all people who are having problems with Phonon will read it very carefully and make sure they understand it.

    To make Phonon work, three things have to happen simoultaneously:
    1. Phonon library has to be compiled and installed together with all its dependencies. On Linux this is called libphonon.so and is usually located in /usr/lib (if installed for KDE) and/or $QTDIR/lib when installed by compiling Qt. On Windows this is phonon4.dll and probably resides in $QTDIR/bin. The library is responsible for providing an adapter between your code and phonon backend.

    2. Phonon backend has to be compiled and installed together with all its dependencies. On Linux this is called libphonon_<X>.so where <X> can be one of {gstreamer,xine,vlc,mplayer} or possibly something else if a new backend is developed. The backend is located in /usr/lib/kde4/plugins/phonon_backend when installed for KDE and $QTDIR/plugins/phonon_backend when installed for Qt. On Windows this is called phonon_ds94.dll and is located in $QTDIR/plugins/phonon_backend. The backend is responsible for talking to the platform-dependent solution for playing multimedia such as gstreamer(0.10+) or xine on Linux, Direct Show on Windows and (AFAIR) Quick Time on MacOSX. The plugin has to be deployed with your application to the phonon_backend subdirectory to be able to play multimedia on target machines (unless you know there is a working phonon installation there, i.e. when using rpm and making sure KDE's Phonon is a dependency of your app).

    3. Proper codecs, support files, etc. should be available for the solution used by Phonon backend.

    On Unix...
    ...it is best to have ffmpeg installed which gives you access to /usr/lib/libavcodec and /isr/lib/libavformat. You can run ffmpeg -codecs to see available codecs built into the library. On different installations the list of codecs may be different as most Linux distros only enable so called Free (as in 'freedom of speech') codecs so i.e. flac might not be available. You can often install this library from a 3rd party vendor or non-free (as in 'freedom of speech') package source with additional (non-free) codecs enabled. But this might not enough to make media play in your apps. You often need to bind the codecs with the solution used by phonon backend:

    For gstreamer you need to have gstreamer plugins installed (on my system (mdv) they are "gstreamer-plugins-base", "gstreamer-plugins-good", "gstreamer-plugins-bad" and "gstreamer-plugins-ugly" and also "gstreamer-ffmpeg" and a couple of others).
    AFAIK Xine, MPlayer and VLC don't need any extra plugins, they will automatically pick up what's available on your system.

    You can also install so called ''Windows codecs' which usually reside in /usr/lib/codecs or /usr/lib/win32 or in a similar location to get other proprietiary formats working. Getting ogg/ogv support might also be important (libvorbis/libtheora).

    Also note that some codecs may require additional libraries, i.e. libflac

    On Windows...
    ... you can install ffdshow which is the ffmpeg codec pack for Windows. The general rule is that whatever plays in Windows Media Player should play through Phonon too. The exception may be DRM-ed content, I don't know if that works.

    You don't have much influence whether a particular file will play on some target system as you don't know if particular codecs are installed. Deploying them yourself is probably not a good idea (they might conflict with what the user already has in his system) so it's a better idea to use codecs and formats that are available by default in the target system. It is usually PCM (wav) for audio and mpeg-2 for video. It is not mp3 nor xvid/divx/mkv.

    Troubleshooting

    General rule #1: If anything (wav/ogg/mpeg-2) plays, then Phonon is installed correctly and items #1 and #2 from the above list are fulfilled. You are either missing codecs or plugins for your platform's multimedia solution. Unless you are sure a particular 3rd party player uses the same soolution for playback, testing the offending file with the player won't give you any meaningful results. Use the Phonon::BackendCapabilities class to see what should work with your current settings.

    General rule #2: If you can't compile Phonon-based application or you can't execute it then you probably have problems with the (lib)phonon library (#1 from the above list). Check dependencies (ldd/dependency walker).

    General rule #3: If you can't compile Phonon-based applications but Phonon examples can be executed correctly (regardless whether you get playback or not) then Phonon library is installed correctly but you are missing development files for Phonon (headers or import libraries).

    General rule #4: Phonon can't be compiled statically into your application and in general Phonon will not work for statically built apps. Link your Phonon-based app dynamically.

    General rule #5: If Phonon-based app compiles and runs but doesn't play any files (wav/ogg/mpeg-2) the problem is with the backend. Check if you have a backend installed (#2), verify its dependencies (ldd/dependency walker). You may try a different backend to see if it makes a difference. Use Phonon::BackendCapabilities to see what's available in your current settings. Sometimes it is good to rename phonon_backend directory to something else to see if Phonon starts complaining about no backend being available. Sometimes the backend may be taken from a different location than you expect. Same goes for the Phonon library. A useful tool for checking the backend is the KDE's system-settings application - go to its multimedia section to see what backends are available and which is the active one.

    General rule #6: Phonon is not responsible for playback of multimedia files. It is responsible for talking with your platform's solution. If a particular file doesn't work, don't blame Phonon.

    General rule #7: Check stupid mistakes such as permission problems (files, devices, resources) and spelling.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  19. The following user says thank you to wysota for this useful post:

    hakermania (2nd September 2010)

  20. #34
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    I installed libavformat and libacodec libraries and now mp3s can be played by the Phonon Music Player. The thing is, what dependencies have to include in my program in order to work in other PCs?

  21. #35
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    See the last paragraph of my post before the "troubleshooting" section.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  22. The following user says thank you to wysota for this useful post:

    hakermania (2nd September 2010)

  23. #36
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Apf.. Too complicated.. Too hard! Check the backends, install the dependencies...And all these only for mp3 playing. Useless. I think I'll use the pre-installed canbera-gtk-play and have only ogg and wav support

  24. #37
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    Quote Originally Posted by hakermania View Post
    I think I'll use the pre-installed canbera-gtk-play and have only ogg and wav support
    I guess your app wouldn't work on my system then

    By the way, I've placed the how-to in the wiki: [wiki]How to get Phonon working[/wiki]
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  25. #38
    Join Date
    Jul 2010
    Location
    /home/hakermania/
    Posts
    233
    Thanks
    129
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    Unix/X11

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    My app wouldn't work in your system because it uses a lot of other bash commands like sed and other because this way is much easier than the C++ way (I mean for file processing). In order to play mp3 files, I found a terminal command called mpg123 only 35KB

  26. #39
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,359
    Thanks
    3
    Thanked 5,015 Times in 4,792 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: How to play MP3,WAV,OGG,FLAC,MP4,M4A ?

    But I do have sed installed on my system, so that's perfectly fine. I don't have your gtk player installed. I think I don't have mpg123 installed too, after all I have mplayer...

    Edit: I do have mpg123. You should add another 250kB to your mpg123 as it requires the mpg123 library Dependencies, dependencies, dependencies...
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. Play .amr sound
    By ahmdsd_ostora in forum Qt Programming
    Replies: 3
    Last Post: 17th July 2010, 16:34
  2. play audio url
    By tungvc in forum Qt Programming
    Replies: 0
    Last Post: 15th July 2010, 12:04
  3. qmake flac
    By rubenvb in forum Qt Programming
    Replies: 0
    Last Post: 8th November 2009, 16:18
  4. To Play Movie in QT 4
    By Isa in forum Qt Programming
    Replies: 8
    Last Post: 2nd August 2008, 12:56
  5. QPicture does not play right
    By derick in forum Qt Programming
    Replies: 5
    Last Post: 19th February 2006, 02:46

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.