Hello everybody,
Can anyone tell me what is the plugin (native plugin) initially installed
on the S60 Web browser?
Thanks a lot.
Hello everybody,
Can anyone tell me what is the plugin (native plugin) initially installed
on the S60 Web browser?
Thanks a lot.
If you stream something in a serie-60 phone it will open RealPlayer to show the content of the streaming (if the file format is supported by the phone and the streaming settings are correct).
Hello,Originally Posted by damn_delicious
I have been trying to give a rtsp url to the RealPlayer launched embedded. It looks like I got it, but RealPlayer always ask the user for accepting to start a GPRS connection (this is ok, as the rtsp url stands for a remote server).
I want RealPlayer to start the GPRS connection without asking (as if RealPlayer was launched in a kind of unattended mode) and when RP finishes the playing, I want it to go back to the main application... is this possible in some way?
Thank you very much,
Javier.
to javiercc:
how to give a rtsp url to the RealPlayer?
can you tell me the method?
thanks in advance!
Bobby
I explain below but... my plan was get an answer, not give it ;-) Anyone knows how to "push a button" in an embbeded application from the application that launched it?
to bobbycalf:
There are some examples in the forum or references to documentation. It is something like this (in this case, it uses de wap browser instead of the RealPlayer, I would have to search the id for the RealPlayer again; anyway, wap browser launches RealPlayer afterwards):
Javier.Code:HBufC* param = HBufC::NewLC( 64 ); param->Des().Copy( _L( "4 rtsp://url_to_media_file" ) ); // Wap Browser's constants UId const TInt KWmlBrowserUid = 0x10008D39; TUid id( TUid::Uid( KWmlBrowserUid ) ); TApaTaskList taskList( CEikonEnv::Static()->WsSession() ); TApaTask task = taskList.FindApp( id ); RApaLsSession appArcSession; User::LeaveIfError(appArcSession.Connect()); // connect to AppArc server TThreadId thid; appArcSession.StartDocument( *param, TUid::Uid( KWmlBrowserUid ), thid ); appArcSession.Close();