Re: [Ubuntu-phone] App crash on QMediaPlayer object creation

2016-03-28 Thread Jim Hodapp
Fantastic, glad you got it solved. Jim On Mon, Mar 28, 2016 at 10:56 AM, Omer Akram wrote: > Thanks Jim > > I looked inside qtubuntu-media and apparently I had to append 'multimedia' > to the QT component list in the .pro file, and had to optimize import, the > below change worked for me. > > =

Re: [Ubuntu-phone] App crash on QMediaPlayer object creation

2016-03-28 Thread Omer Akram
Thanks Jim I looked inside qtubuntu-media and apparently I had to append 'multimedia' to the QT component list in the .pro file, and had to optimize import, the below change worked for me. === modified file 'backend/QMediaPlayerTest/QMediaPlayerTest.pro' --- backend/QMediaPlayerTest/QMediaPlayerT

Re: [Ubuntu-phone] App crash on QMediaPlayer object creation

2016-03-28 Thread Jim Hodapp
Omer, I'd take a look at the integration tests for qtubuntu-media (lp:qtubuntu-media) and make sure that you're doing a similar thing with your player setup. If you don't see a difference that might be causing your crash I can help you dive a little deeper in figuring this out. On Sat, Mar 26, 201

[Ubuntu-phone] App crash on QMediaPlayer object creation

2016-03-26 Thread Omer Akram
Hi! I am trying to use QMediaPlayer in my app to play internet streams. The reason I am not using the QML MediaPlayer component is because due to some reason the MediaPlayer.play() halts the app for the time of initial buffering. So I am wanting to use QMediaPlayer for playback but it seems as soo