18/11/2006, 22:32
|
| | Fecha de Ingreso: noviembre-2006
Mensajes: 2
Antigüedad: 18 años Puntos: 0 | |
un flv tras otro hola encontre una manera pero el problema es que el audio se reproduce dos veces este es el script
var conexion:NetConnection = new NetConnection();
conexion.connect(null);
var stream:NetStream = new NetStream(conexion);
mi_video.attachVideo(stream);
stream.play("primer.flv");
//aseguramos 10 seg de reproduccion
stream.setBufferTime(10);
onEnterFrame = function () {
bu_cargado.text = stream.bufferLength;
bu_total.text = Math.round(stream.bytesTotal/1024)/1000+" mb";
};
//status
stream.onStatus = function(infoObject:Object) {
if (infoObject.code == "NetStream.Play.Stop") {
trace("acabo");
//siguiente video
stream.play("segundo.flv");
//aseguramos 10 seg de reproduccion
stream.setBufferTime(10);
onEnterFrame = function () {
bu_cargado.text = stream.bufferLength;
bu_total.text = Math.round(stream.bytesTotal/1024)/1000+" mb";
}
}
};
si alguien sabe que pasa ruego que me avise ok gracias |