The metada don't works with HaxeVideo ?
i have test your video "test.flv" with FMS and Red5.. your video contains the metadata (duration etc...)
but with haxevideo the metadatas aren't keep in my little test in flash :
///
// create basic netConnection object var nc:NetConnection = new NetConnection(); nc.onStatus = function( info ) { trace( info.code) ; } // connect to the local HaxeVideo nc.connect("rtmp://localhost:2000"); // i test with the port 2000
// create the netStream object and pass the netConnection object in the constructor var ns:NetStream = new NetStream(nc); ns.onMetaData = function ( info ) { trace("..") ; for (var prop:String in info) { trace( prop + " : " + info[prop]) ; } } // attach the netStream object to the video object videoContainer.attachVideo(ns);
ns.play("test.flv");
///
EKA+ :)
Comment #1
Posted on May 14, 2007 by Happy MonkeyYes, metas are not yet sent to the flash player. That's on my TODO for 1.0
Comment #2
Posted on May 14, 2007 by Swift Pandacool thanks :)
Comment #3
Posted on Jun 15, 2007 by Happy OxThat's why seeking in the player is currently not working, I guess? Can't wait for the 1.0 release ;-)
Comment #4
Posted on Jun 16, 2007 by Happy MonkeySeeking and pause should work since Beta3, but still no MetaData support.
Comment #5
Posted on Aug 20, 2007 by Happy MonkeyMetadatas are now supported on SVN version
Status: Fixed
Labels:
Type-Defect
Priority-Medium