I'm using FFmpegFrameRecorder like followings.
and am surprised at the simplicity.
String ffmpeg_link = "rtmp://xxx.xxx.xxx.xxx:1935/live/livestream2";
recorder = new FFmpegFrameRecorder(ffmpeg_link, imageWidth, imageHeight, 1);
recorder.setFormat("flv");
..
But I need send RTMP metadata like this(adobe action script).
How can I do this?
Thank you in advance.
var metaData:Object = new Object();
metaData.height = deviceCam.height;
metaData.width = deviceCam.width;
metaData.time = new Date().getTime();
netStream.send("onMetaData", metaData);
netStream.send("|RtmpSampleAccess", true, true);
Original issue reported on code.google.com by cool7...@gmail.com on 15 May 2014 at 6:42
Original issue reported on code.google.com by
cool7...@gmail.com
on 15 May 2014 at 6:42