Skip to main content
Known Participant
February 18, 2010
Question

unbelievable no solution for FMS3 and FLVPlayback???

  • February 18, 2010
  • 2 replies
  • 2174 views

I've spent the past 2 days scouring Google and dozens (easily over 100) websites

trying to find an answer to something that people do every day!

I am absolutely shocked that this info is not available anywhere online.

A simple FMS3 and AS3 and RTMP and FLVPlayback example....

totaly not simple and not possible to find!!

I try every possible combination:
import fl.video.*;

VideoPlayer.iNCManagerClass = fl.video.NCManagerNative;

myVideo.autoPlay = true;

myVideo.isLive = true;

myVideo.isLive = false;
myVideo.source = "rtmp://localhost/appName/videos/flvName.flv";
myVideo.source = "rtmp://localhost/appName/streams/flvName.flv";
myVideo.source = "rtmp://localhost/appName/streams/videos/flvName.flv";
myVideo.source = "rtmp://localhost/appName/flvName.flv";

none is working!!
i did not find any working simple solution for:
FMS3 and AS3 and RTMP and FLVPlayback
anywere on the web
only for:
FMS3 and AS3 and RTMP and Video and NetStream

if someone could bring "salvation" to this required important issue
i will be so thankfull

cheinan


    This topic has been closed for replies.

    2 replies

    Janaki Lakshmikanthan
    Adobe Employee
    Adobe Employee
    February 19, 2010

    The livedoc link mentioned above is streaming over http.

    If you are trying to subscriber to a live stream you have to mention

    isLive = true;

    source = "rtmp://localhost/appname/instancename/mylive

    (the stream name without any extension like .flv)

    If you are trying to subscriber to a VOD stream you have to mention

    isLive = false;

    source = "rtmp://localhost/appname/instancename/myvod.flv

    (the stream name with or without any extension like .flv)

    Regards,

    Janaki L

    cheinanAuthor
    Known Participant
    February 19, 2010

    totaly none is working!!

    i did try it all:

    myVideo.isLive = true;
    myVideo.source = "rtmp://localhost/appName/videos/flvName";
    myVideo.source = "rtmp://localhost/appName/streams/flvName";
    myVideo.source = "rtmp://localhost/appName/streams/videos/flvName";
    myVideo.source = "rtmp://localhost/appName/flvName";

    myVideo.isLive = false;
    myVideo.source = "rtmp://localhost/appName/videos/flvName.flv";
    myVideo.source = "rtmp://localhost/appName/streams/flvName.flv";
    myVideo.source = "rtmp://localhost/appName/streams/videos/flvName.flv";
    myVideo.source = "rtmp://localhost/appName/flvName.flv";

    even i tryed the oposite - totaly hopeless

    it is something alse!!

    but what?

    any working example out there....

    Janaki Lakshmikanthan
    Adobe Employee
    Adobe Employee
    February 19, 2010

    Now, we got to check few things before we proceed with this.

    1. Do you have the live stream active at the server?

    2. What is the connection url in the publisher script and the stream name?

    3. What error are you getting when you try to play the stream at the client side?

    Regards,

    Janaki L

    February 19, 2010

    Try the example at the bottom of the FLVPlayback API:

    http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#includeExamplesSummary

    Worked fine for me.

    cheinanAuthor
    Known Participant
    February 19, 2010

    because its with - HTTP

    not with - RTMP

    solution needed for:

    FMS3 and AS3 and RTMP and FLVPlayback!!!