Hi,
I have been stressing about this for quite a while but for example if I browse through vuclip.com and click on a video, 2 options are shown if I wanted to view a video: Progressive download or streaming. I was trying to do the same thing on my bold through HTML and ASP. For instance, embed the video inside object tags and view it but no luck.
Here's the code piece:
Code:
<object type="video/mov" data="test.mov"
width="320" height="255" class="hiddenObjectForIE">
<param name="controller" value="true" >
<param name="autoplay" value="false">
alt : <a href="test_streaming.3gp">test_streaming.3gp</a>
</object>
When I view the asp file through the firefox browser it shows the file.
But when I upload it to the live server and view it through the phone nothing but gargled up words that seems unreadable.
Note: I do not want to view it through RTSP because that requires another server. I just want to view it through my server using something like HTML, ASP, etc.