publish adaptive bitrate adobe flash
is possible broadcast adaptive bitrate stream flash as3 ? or have use "flash live media encorder".
i using adobe media server , publishing stream following
cam = camera.getcamera();
cam.setquality(0,100);
cam.setmode(512, 384, 15, true);
mic = microphone.getmicrophone();
ns = new netstream(nc);
ns.buffertime = 1;
ns.attachcamera(cam);
ns.attachaudio(mic);
ns.publish("streamname1", "live");
and generating connection andother quality.
camand = camera.getcamera();
camand.setquality(0,70);
camand.setmode(256, 192, 15, true);
but change quality of both cam lower quality.
also have tried h264 encording publish multi-biterate stream.
ns_out = new netstream( nc );
ns_out.attachcamera( cam );
var h264settings:h264videostreamsettings = new h264videostreamsettings();
h264settings.setprofilelevel( h264profile.baseline, h264level.level_1 );
cam.setquality( 90000, 90 );
cam.setmode( 1280, 720, 30, true );
cam.setkeyframeinterval( 15 );
ns_out.videostreamsettings = h264settings;
ns_out.publish( "1livestream?adbe_live_event=liveevent");
the documents available on adobe publishing multiple steams through "flash media live encorder" want publish own flash as3 application.
please let me know if there doucmentation/tutorial available this.
thanks
More discussions in Adobe Media Server
adobe
Comments
Post a Comment