Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/09/2012, 19:29
Avatar de mgocx
mgocx
 
Fecha de Ingreso: agosto-2010
Ubicación: Argentina - Bahia Blanca
Mensajes: 83
Antigüedad: 13 años, 8 meses
Puntos: 2
Pregunta Flowplayer content


Hola Amigos como estan, hoy luchando para configurar flowplayer


Lo que quiero hacer es que aparezca un hola mundo! en el repro utilizando lo siguiente, http://flowplayer.org/plugins/flash/content.html
El Problema es que no comprendo como colocar ese ejemplo en mi reproductor actual.
les dejo el ejemplo de lo que tengo, lo que supuestamente debo hacer es agregar el script como los que están en la web.

Código HTML:
<div>
<a style="display: block;height:375px;width:500px;background-color: #ffffff;border: solid 1px #ccc;" id="rtmp_player"><object width="100%" height="100%" id="rtmp_player_api" name="rtmp_player_api" data="http://www.conexionmaxima.com/flow/flowplayer-3.2.15.swf" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true"><param name="allowscriptaccess" value="always"><param name="quality" value="high"><param name="bgcolor" value="#000000"><param name="flashvars" value="config={&quot;clip&quot;:{&quot;url&quot;:&quot;hostinghd&quot;,&quot;live&quot;:true,&quot;provider&quot;:&quot;rtmp&quot;},&quot;plugins&quot;:{&quot;rtmp&quot;:{&quot;url&quot;:&quot;flowplayer.rtmp-3.2.11.swf&quot;,&quot;netConnectionUrl&quot;:&quot;rtmp://autocartel.net:1935/TestVideo&quot;,&quot;subscribe&quot;:true}},&quot;playerId&quot;:&quot;rtmp_player&quot;,&quot;playlist&quot;:[{&quot;url&quot;:&quot;hostinghd&quot;,&quot;live&quot;:true,&quot;provider&quot;:&quot;rtmp&quot;}]}"></object></a>

<!-- Note: the property of the above tag (rtmp_player) must match the first parameter of the script below -->

 
<script>
                $f("rtmp_player", "flowplayer-3.2.15.swf", {
                    clip: {
                       url : 'mirtmp', //this is the name of the stream assset in the encoder 
                       live : true,  // tell flowplayer it's live
                       provider: 'rtmp'
                 },
 
                plugins: {
                  rtmp: {
                  url: 'flowplayer.rtmp-3.2.11.swf',
                  netConnectionUrl: 'rtmp://mirtm:1234/canal' ,  //this is the rest of the URL excluding the stream name that you set in the encoder
                  subscribe:true  //subscribe to the stream
                      
		 }
                 }
              });
</script>
</div> 
MIL GRACIAS!