Re: [Flashcoders] checking .flv encoding settings

2007-03-15 Thread Kurt Griffin

You can get some basic info from the meta data in Flash. From the help:
-
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);

ns.onMetaData = function(infoObject:Object) {
for (var propName:String in infoObject) {
trace(propName +  =  + infoObject[propName]);
}
};

ns.play(http://www.helpexamples.com/flash/video/water.flv;);



canSeekToEnd:true
audiocodecid:2
audiodelay:0.038
audiodatarate:96
videocodecid:4
framerate:15
videodatarate:400
height:213
width:320
duration:8.04

-

The videocodecid numbers are these: Sorenson H.263 =2, Screen Video  
=3, On2 VP6 = 4 and 5, Screen Video V2 = 6


No guarantee as to what data will be included in the metadata - that  
depends on the app used to do the compression. I believe there's a  
way to get keyframe data as well, but I'm not positive.


hth,
Kurt


On Mar 14, 2007, at 9:30 PM, flashcoders- 
[EMAIL PROTECTED] wrote:


Does anybody know how you can detect the encoding settings that  
were used

when the .flv was created?

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] checking .flv encoding settings

2007-03-14 Thread undersound
Hello everybody, 

 

Does anybody know how you can detect the encoding settings that were used
when the .flv was created?

 

I need to re-encode a movie with the same settings that were used then.

 

Thanx in advance

Undersound

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com