12-24-2012 02:42 AM
Hello All,
I am developing an application and in need of having a media player.
I have explored the Documents and sample codes but havnt found something like 'Video Player View'
Which can be used in QML directly with a source and have the Default controlls like Play,Pause,Next,Privious,Slider etc.
I may be missing some thing while exploring documents as I am new to this.
Please guide me or refer a Sample code if available.
Regards,
Dhanesh Shastri
12-24-2012 05:46 AM
I'm doing this with some C++ code
void OpenDataSpace::invokeBoundMediaPlayer(const QString& uri) {
InvokeRequest cardRequest;
cardRequest.setUri(uri);
cardRequest.setTarget("sys.mediaplayer.previewer") ;
mInvokeManager->invoke(cardRequest);
}
then the player comes in as a Card with all the controls
for the user it looks like the player is part of your app