MetaData of recorded streams - problem...
Hello guys,
I have a problem with recorded stream: The MetaData its partialy correct.
Most of the informations are correct, but the 2 most important information for me width and height for the video are always 320 x 240 for any recorded stream althow they are published at different WxH.
I tried to get my head around this but cant seem to figure out were the problem is.
FMLE its used to publish the stream useing H.264 / MP3 codecs.
Here is the server side code used to record the stream:
_isLive = true;
if ( _isRecording == false ) {
function ISODateString(d){
function pad(n){return n<10 ? '0'+n : n}
return d.getFullYear()
+ pad(d.getMonth()+1)
+ pad(d.getDate())
+ pad(d.getHours())
+ pad(d.getMinutes())
+ pad(d.getSeconds())
}
var d = new Date();
livefilename = streamname.name + "_" + ISODateString(d);
s = Stream.get("mp4:"+livefilename + ".f4v");
if(s) {
s.record();
s.play(streamname.name);
_isRecording = true;
trace("Recording: " + livefilename);
}
