Skip to main content
Known Participant
August 13, 2013
Answered

Communicating with AMS outside of Flash.

  • August 13, 2013
  • 2 replies
  • 587 views

Can you call a function on an Adobe Media Server application with anything other than Flash?

I have a `.asc` file up on a server which controls the creation and deletion of files.

Right now, I can only interact with my server by using the AS3 method `NetConnection.call()` from a client Flash file.

Is there a way to access these methods through, say Javascript or anything else?

    This topic is closed to new replies. Start a new post to keep the conversation going.
    Correct answer DavidQHogan

    Anything client code that can use the RTMP protocol can communicate with AMS and invoke functions. I know of RTMP implementations in Python, C, PHP, Java and there are probably implementations for other languages.

    2 replies

    DavidQHoganCorrect answer
    Inspiring
    August 15, 2013

    Anything client code that can use the RTMP protocol can communicate with AMS and invoke functions. I know of RTMP implementations in Python, C, PHP, Java and there are probably implementations for other languages.

    Known Participant
    August 15, 2013

    Thanks