Dear all,

I have a task project to create flash live video streaming like this: bumitv

Which also has many channels.

The typology is like this:

Satelite ----> Adobe Flash Media Live Encodes ----> Adobe Media Server ---> IIS ---> bumitv (or own web creation web)

Any clue how to code it? Is it easy to do it?

Check this out. It may help you out.

All you need is to imbed a flash-video player and pass the video stream form your media server.
that's all html
here an example using the openscoure StrobeMediaPlayback.swf

<div>
<object width="320" height="240">
<param name="movie" value="StrobeMediaPlayback.swf"></param>
<param name="flashvars" value="src=rtmp://url_to_your_server_here"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="StrobeMediaPlayback.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="470" height="320"
flashvars="src=rtmp://url_to_your_server_here">
</embed>
</object>
</div>

Hello,

I've tried downloading the StrobeMediaPlayback folder and run the StrobeMediaPlayback.swf, this message appears:

We are unable to connect to the content you've requested. We apologize for the inconvenience.

How to create the button and also the multiple pages? like in: bumitv

Hello, I copy the script exactly. it works for a short time, then this message appears: We are unable to connect to the network. We apologize for the inconvenience.

Why is it? I wonder.

Also, how to revise the code so that it works for multiple pages?

Here is the script:

    <div>
    <object width="320" height="240">
    <param name="movie" value="StrobeMediaPlayback.swf"></param>
    <param name="flashvars" value="src=rtmp://url_to_your_server_here"></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="StrobeMediaPlayback.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="470" height="320"
    flashvars="src=rtmp://url_to_your_server_here">
    </embed>
    </object>
    </div>

<div id = "channel">
<table>
<tr>
<td><a href="#"><img src="../images/bumitv1.jpg"></a></td>
<td><a href="#"><img src="../images/bumitv2.jpg"></a></td>
</tr>
<tr>
<td><a href="#"><img src="../images/bumitv3.jpg"></a></td>
<td><a href="#"><img src="../images/bumitv4.jpg"></a></td>
</tr>
<tr>
<td><a href="#"><img src="../images/bumitv5.jpg"></a></td>
<td><a href="#"><img src="../images/bumitv6.jpg"></a></td>
</tr>
<tr>
<td><a href="#"><img src="../images/bumitv7.jpg"></a></td>
<td><a href="#"><img src="../images/bumitv8.jpg"></a></td>
</tr>
<tr>
<td><a href="#"><img src="../images/bumitv9.jpg"></a></td>
<td><a href="#"><img src="../images/bumitv10.jpg"></a></td>
</tr>
</table>
</div>       

it does not work. how to code so that I can run multiple videos with buttons (to choose which video to run).

Hello, I have tried using StrobeMediaPlayback.swf and it does not have a sound in it. How to activate the sound?

I am using *.mov video.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.