google-code-export / haxevideo

Automatically exported from code.google.com/p/haxevideo
1 stars 0 forks source link

MetaData don't work with HaxeVideo beta 3 #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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+ :)

Original issue reported on code.google.com by ekamel...@gmail.com on 13 May 2007 at 6:08

GoogleCodeExporter commented 9 years ago
Yes, metas are not yet sent to the flash player. That's on my TODO for 1.0

Original comment by ncanna...@gmail.com on 14 May 2007 at 7:30

GoogleCodeExporter commented 9 years ago
cool thanks :)

Original comment by ekamel...@gmail.com on 14 May 2007 at 7:41

GoogleCodeExporter commented 9 years ago
That's why seeking in the player is currently not working, I guess? Can't wait 
for
the 1.0 release ;-)

Original comment by lizmo...@googlemail.com on 15 Jun 2007 at 9:52

GoogleCodeExporter commented 9 years ago
Seeking and pause should work since Beta3, but still no MetaData support.

Original comment by ncanna...@gmail.com on 16 Jun 2007 at 1:18

GoogleCodeExporter commented 9 years ago
Metadatas are now supported on SVN version

Original comment by ncanna...@gmail.com on 20 Aug 2007 at 10:30