Ver Mensaje Individual
  #6 (permalink)  
Antiguo 12/03/2015, 11:55
rascabuchitos
 
Fecha de Ingreso: abril-2011
Ubicación: Peru
Mensajes: 486
Antigüedad: 13 años, 7 meses
Puntos: 9
Respuesta: jwplayer - html5

amigos
encontre esto y funciona muy bien en desktop y moviles
pero no me sale para poder hacer streaming
por favor, si alguien me da una manito... gracias...!!!

Código HTML:
Ver original
  1. <script src="http://p.jwpcdn.com/6/8/jwplayer.js"></script>
  2.  
  3. <center><div id='container'></div></center>
  4.  
  5.  
  6. if (navigator.userAgent.match(/android/i) != null){
  7.  
  8.     jwplayer("container").setup({
  9.  
  10.         file: "http://playertest.longtailvideo.com/adaptive/bbbfull/bbbfull.m3u8",
  11.  
  12.         type: "mp4",
  13.  
  14.         primary: "html5"
  15.  
  16.     });
  17.  
  18. } else {
  19.  
  20. jwplayer("container").setup({
  21.  
  22.   playlist: [{
  23.  
  24.     image: "http://content.bitsontherun.com/thumbs/gSzpo2wh-480.jpg",
  25.  
  26.     sources: [{
  27.  
  28.       file: "http://content.jwplatform.com/manifests/s8BPzDe0.smil"
  29.  
  30.     },{
  31.  
  32.       file: "http://playertest.longtailvideo.com/adaptive/bbbfull/bbbfull.m3u8"
  33.  
  34.     }]
  35.  
  36.   }],
  37.  
  38.   primary: "flash"
  39.  
  40. });
  41.  
  42. }
  43.