You can not, if it is real player doing that, you can not really change its internal behaviour.
You can not, if it is real player doing that, you can not really change its internal behaviour.
Hi,
I tried this code with n95 but it didn't establish a network connection only it shows loading image and do nothing. Is object or embed tag depend on symbian version, which version of symbian support object or embed tag?
Did you try the link first with the Real player application, i.e. launching it from menu and using its menu options for opening the streaming link ?, it is always good to first check that the link is supported by the device..
And secondly, what is the link you are trying to play ?
Thanks for quick reply, link is a rtsp url, content type is 3gpp Yes i tried link with Real Player, it is working. Also my code working with nokia 6710 navigator, but with n95 it shows only loading image and doesn't attempt to establish a network connection. In this link http://discussion.forum.nokia.com/fo...o-on-wap-pages says they can embed video, but it didnt work for me? Is problem with sybian s60 v3.1? because 6710 has sybian s60 v3.2
Dunno really then, maybe you could check whether the N95 has something different on Real players settigns than the 6710. Also you might see whether it is firmware issues, i.e. you could try updating your N95's firmware to be the latest available.
Hi,
I'm currently developing a game in wrt. I want to add sounds for some actions. I have used the code that you have provided;
But this does not work in my case. I'm testing my application in nokia 5800. Do I miss something? By the way, I'm giving the 'type' parameter as 'audio/x-wav' and the 'file' as 'a wav file' to play.Code:function EmbedPlay(url,type) { var playerDiv = document.getElementById('player'); if (playerDiv != null && playerDiv.childNodes != null) { for (var i = 0; i < playerDiv.childNodes.length; i++) { playerDiv.removeChild(playerDiv.firstChild); } } // Create a new one var previewPlayer = document.createElement('embed'); previewPlayer.id = 'audioplayer'; previewPlayer.setAttribute('volume', '10'); previewPlayer.setAttribute('type', type); previewPlayer.setAttribute('autoplay', 'true'); previewPlayer.setAttribute('data', url); previewPlayer.setAttribute('src', url); playerDiv.appendChild(previewPlayer); }