Skip to main content
amitKumarKanda
Inspiring
November 19, 2013
Question

publish adaptive bitrate adobe flash

  • November 19, 2013
  • 1 reply
  • 837 views

Is it possible to broadcast adaptive bitrate stream from flash As3 ? or I will have to use the "Flash live media encorder".

Thanks, Amit

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
November 19, 2013

you'll need to use a streaming server or create several videos with a variety of bitrates/quality and serve the most appropriate to each user.

amitKumarKanda
Inspiring
November 20, 2013

I am using Adobe Media Server and publishing stream as 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 another connection for andother quality.

camAnd = Camera.getCamera();

camAnd.setQuality(0,70);

camAnd.setMode(256, 192, 15, true);

But  it change the quality of both the cam to lower quality.  All the  documents available on adobe are publishing multiple steams through  "Flash media live encorder" but i want to publish it from my own flash  as3 application.

Please let me know if there is any doucmentation/tutorial available for this.

Thanks

kglad
Community Expert
Community Expert
November 20, 2013