| Reply | « Previous Thread | Next Thread » |
|
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).
|
|
Thanks for this answer.
|
|
Quote:
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): 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(); |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Need of a working browser plugin | afelon | General Symbian C++ | 10 | 2008-02-15 06:28 |
| 3GPP and MP4 Video with RateControl on S60 emulator | vhellberg | Mobile Java Media (Graphics & Sounds) | 2 | 2006-01-13 11:17 |
| Real Time Video Streaming On Mobile | Juwita | Symbian Media (Graphics & Sounds) | 2 | 2005-12-06 21:38 |
| How can I simulate video streaming in the Nokia series 60 emulator ?? | taniarosa15 | Streaming and Video | 0 | 2005-02-18 23:09 |
| Streaming Video | hamish.brown | Streaming and Video | 1 | 2003-04-16 10:52 |