HTML5 transmisión en vivo

Para la escuela, necesito configurar un sitio HTML5 de transmisión en vivo. Tienen un reproductor de flujo de flash que han estado usando, pero ahora quieren que use HTML5 en su lugar. ¿Cómo puedo hacer esto? Intenté usar la etiqueta de video pero no puedo hacer que funcione. A continuación se muestra el código que tengo. ¿Podría alguien señalarme en la dirección correcta?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Deltion Live Streaming</title>
    <script language="javascript" type="text/javascript" src="../swfobject.js"></script>
</head>

<body>  

    <video id="movie" width="460" height="306" preload autoplay>
        <source src="rtmp://fl2.sz.xlcdn.com:80/sz=Deltion_College=lb1"  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
            <!-- HERE THE CODE FOR THE ALTERNATIVE PLAYER (FLASH) WILL BE! -->
    </video>
</body>
</html>

Respuestas a la pregunta(8)

Su respuesta a la pregunta