• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Publish multi-bitrate stream from FMS?

Guest
May 08, 2012 May 08, 2012

Copy link to clipboard

Copied

Hi,

I have an SSAS app to publish live streaming, you can refer here. Can I do publish multi-bitrate streaming with SSAS code over RTMP ? I read a tutorial, but it over HTTP...

Mai Huy

Views

4.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
May 08, 2012 May 08, 2012

Copy link to clipboard

Copied

Hey Huy,

I dont think that you can do an MBR publishing using SSAS. It does not have any transcoding capabilities so wont be able to create different bitrate streams from a single stream.

You can do multi point publishing but not multi bitrate publishing.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
May 12, 2012 May 12, 2012

Copy link to clipboard

Copied

If i am not wrong you are planning to use VOD assets and republishing them right or are you planning to push incoming MBR streams to newer server?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 11, 2012 Jul 11, 2012

Copy link to clipboard

Copied

Hey there?

I want push incomming MBR stream from FME to other FMS server. is it possible?

The FME push two kinds of bitrates to frist FMS server in China and China server push that incomming multi-bitrate sources to amazon FMS server.

just tell me is it possible or not....

I really beginner so make stupid questions..

help me.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jul 11, 2012 Jul 11, 2012

Copy link to clipboard

Copied

Yes this must be possible.

You need to multipoint publish the stream from China server to the AWS -FMS server. That would require writing a simple application for mpp.

For example, look at the server side code at http://livedocs.adobe.com/flashmediaserver/3.0/hpdocs/help.html?content=00000096.html

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 13, 2012 Oct 13, 2012

Copy link to clipboard

Copied

First thanks for reply.

I already read that but I think that code for live stream for using cam and mic.

I want know If I make 2 or 3 kinds of bit rate in FME and send to first server then first server publish to other server.

not only one bit rate stream frist server have to republish to all bite rates to other server.

find many place but really I'm stupid can't understand.

can you explain me detail?

example

1. if FME publishs two kinds of bit rate to first server then how can change client side code and what kind of file in client.

2. first server now can publish to client both of bit rates well. publish point is "installroot/applications/live". but if want using multi-point publish then

Do I need to change or create new application?

if can using live applicions then how can setting mean what kind of file add to live applicaton directory and change code.

please help me. almost three months I can't solve this.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 01, 2013 Apr 01, 2013

Copy link to clipboard

Copied

LATEST

Hi everyone!

I have question, how can I play Multi Bit-rate, Live, HDS Streaming? I've done huge resarch and couldn't find how to do it.

I'm decoding stream properly from camera through Adobe Live Media Encoder to AMS.

everything works fine when I decode single bit rate and play like this:

           var resource : URLResource = new

URLResource("http://localhost/hds-live/livepkgr/_definst_/liveevent/livestream.f4m");

        var manifest : F4MElement = new F4MElement(resource);

        var mediaPlayerSprite : MediaPlayerSprite = new MediaPlayerSprite();

        mediaPlayerSprite.media = manifest;

        addChild(mediaPlayerSprite);

with multibitrate - manifest file looks like this:

<manifest xmlns="http://ns.adobe.com/f4m/1.0">

  <media streamId="livestream1" bitrate="100" />

  <media streamId="livestream2" bitrate="500" />

  <media streamId="livestream3" bitrate="1000" />

</manifest>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines