Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
25 views

Flash Media Server 3.5 memory usage

My problem is that FMS 3.5 memory grows up during work on generic play on demand video (rtmp streaming). To reproduce I used 100MB flv video in vod application in standard configuration server. When I ...
1
vote
1answer
278 views

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 ...
1
vote
1answer
196 views

Flex 3.4 and FMS 3.5.1 - Problem sending ByteArray on RTMP call

I installed a FMS 3.5 on my machine and created a new application with main.asc like this : application.onAppStart = function() { /* Allow debugging */ this.allowDebug = true; } //Client ...
1
vote
0answers
405 views

flash media server FMS 3.5 and IIS on same machine

We are deploying a media management system within a local network. FMS will be used to serve the media within the local network. Since we will only have max 100 users and we have a powerful dual 4 ...
1
vote
2answers
153 views

fms port error after installed

I installed fms 3.5 and actually am running apache for php in 8080 and want to make this fms service in different port and made it as 8083 while installing, After installed when am starting fms ...
1
vote
3answers
2k views

Create server-side DVR application to be able to record DVR in FMS

I want to be able to use the DVR compability in FMS3. But to do that I need to implement a server-side DVR application it says in the documentation. The problem is I cannot find any example on this. ...
0
votes
1answer
149 views

FMS server died daily while enable rtmfp

All I have a fms 3 server runing a video chat room application. It goes well except everyday it will die once or twice. After restarting the fms server, everything goes working again. I really need ...
0
votes
1answer
123 views

Start fms with an application loaded automatically

Is it possible at flash media server, to start an application automatically when the server starts? Or a way to check if it running, and if it's not, make it start automatically.
0
votes
1answer
59 views

Have any free flash media services for testing my project?

I am using FMS. But I use this only in locally. Are there any free flash media server services to test my project? Thanks.
0
votes
1answer
97 views

Flash 3.5.3 - breaking change on playing pre-recorded files?

installing Adobe FMS 3.5.3 seems to completely wipe out all our interactive applications, and I wondered if anybody else had the same experience. Back in the happy days of 3.5.2, to add a ...
0
votes
2answers
367 views

Flash media server delayed streaming

I have a RED5 server I'm using to pass a live streaming between users' cameras. What I need now is a way to create a delayed broadcast of the camera (intended delay) so that "super users" will be ...
0
votes
2answers
519 views

fms: what's the difference between client.prototype.function and clientObj.function()?

i saw that people declare functions in two ways: 1. application.onConnect = function(clientObj, uid,gameName) { clientObj.functionname= function() { ... } } 2. Client.prototype.functionName ...