Questions tagged [flash-media-server]

Version 4 and below of what is now called Adobe Media Server, a server that uses the RTMP protocol to receive and deliver streaming audio and video.

This server works with the Flash Player runtime to create media driven, multiuser RIAs (Rich Internet Applications). The server uses ActionScript 1, an ECMAScript based scripting language, for server-side logic. The latest version is 5.
Adobe Flash Media Server family includes:

  • Flash Media Server 5 Professional/Standard/Extended
  • Adobe Flash Media Server on Amazon Web Services

References:

419 questions
1
vote
1 answer

FMS FLV to mp3/aac/wav

How can I decode a FLV's audio if it's recorded from a live stream using Flash Media Server and uses NellyMoser codec? I'm writing a script that process several FLVs, using FFmpeg, so I need a command line solution. Any ideas?
oscarm
  • 2,630
  • 6
  • 41
  • 74
1
vote
1 answer

RTMP stream not found in AS3

Working on creating a video player, and for some reason the rtmp stream is not found. I must be missing something obvious, but can't seem to find where. The stream i am testing with is…
abritez
  • 2,616
  • 3
  • 29
  • 36
1
vote
3 answers

Why Flash Media Server does not call application.onDisconnect handler?

I've run into strange problem in my Flex/Flashcom application. If client application unexpectedly disconnects from server latter does not call application.onDisconnect handler function. In witch direction should I look? Thank you. Update I'm not…
Artem Tikhomirov
  • 21,497
  • 10
  • 48
  • 68
1
vote
0 answers

I can't creating RTMP session on VideoCore

I am getting the following log while connecting on Adobe FMS server. Do you have any solution? Please help me. ClientState: 1 ClientState: 2 ClientState: 3 Want read:4096, read:2776 ClientState: 4 ClientState: 5 Not enough s2 size Want read:1320,…
1
vote
3 answers

Streaming live video over RTMFP using a format other than Spark

I would like to serve high quality video (H.264) between a server and a single Flash Player client with low latency (RTMFP). The single client will be controlling a robotic device and seeing the results through the video stream, so low latency is…
Simon Cave
  • 3,971
  • 4
  • 24
  • 28
1
vote
0 answers

Server-side actionscript: 'Method not found' error on NetConnection

The 'client' property of NetConnection instances seems to behave differently on the server side. Say I have FMS apps A and B. Now I want to connect from B to A using NetConnection like this: var bClient = new NetConnection(); bClient.client = {…
Carsten
  • 539
  • 4
  • 10
1
vote
1 answer

Is it possible to apply different Camera Settings to different NetStreams while publish one camera source with flash media server?

I'm told that it's impossible to adjust FPS,video size and quality per the bitrate while playing a live stream, so is it possible to publish one camera source with different settings to different NetStreams in FMS?
wamp
  • 5,789
  • 17
  • 52
  • 82
1
vote
2 answers

FLV video tagging using ActionScript 3

I would like to tag some parts on screen (like tagging people's head in photos in Facebook) in video (in certain second). Videos are in FLV format, video on demand. Is there any library that I can use to tag the video? or I can only use a cue…
Raptor
  • 53,206
  • 45
  • 230
  • 366
1
vote
1 answer

How to save video stream from webcam as an image instead of an flv video file using flash?

This will create an flv video file on flash media server: var nc:NetConnection = new NetConnection(); nc.connect(null); var ns:NetStream = new NetStream(nc); ns.publish("yourCamera", "record"); ns.attachVideo(Camera.get()); How can I generate an…
user198729
  • 61,774
  • 108
  • 250
  • 348
1
vote
1 answer

How to implement flv -> mp4/ogg live stream transcoding with FMS?

flv is not directly supported by most mobile browsers, so I want to convert to the mp4/ogg format. Is there anyhow I can achieve it with FMS that generated the .flv file from live webcam stream? UPDATE I found a similar question here which partly…
httpinterpret
  • 6,409
  • 9
  • 33
  • 37
1
vote
1 answer

How to retrieve real time video stream(from web camera) from flash media server in a browser?

Or say, How does the url of FMS real time video stream look like? I guess it shouldn't be like http://domain.name/f.flv, then how is it like?
user198729
  • 61,774
  • 108
  • 250
  • 348
1
vote
1 answer

Block Wowza Live repeater connection in FMS

Some unauthorized users are connected and fetch video from my flash media server using "Wowza Live repeater configuration ". Is there any way to block it in FMS configuration level ?. Thanks.
KMG
  • 889
  • 2
  • 14
  • 36
1
vote
1 answer

What is the purpose of FMS server and how does it figure into my requirements?

I had a project requirement which was to stream video to people across the globe (max 100 simultaneous connections) and i was under the impression that a single HTTP server is sufficient. However, a friend of mine said i will have to use an FMS…
YD8877
  • 10,401
  • 20
  • 64
  • 92
1
vote
0 answers

Determining an initial NetStream buffersize based on bandwidth and bitrate

I'm trying to determine an initial value for NetStream.bufferTime based on the client's calculated bandwidth and the video's bitrate. As far as I can tell you can't do this, because you must have an initial buffer set BEFORE you call…
Adam Ritenauer
  • 3,151
  • 4
  • 33
  • 40
1
vote
2 answers

Recording Flash Webcam FMS 4.5 to Mp4 results in terrible quality

I have successfully setup recording webcam to FLV using FMS 4.5 developer edition, so I wanted to attempt recording to an Mp4 next. I am doing a silent save of the video file because the goal here is to be able to have these videos playable outside…