flash-media-server

Alternatives to Flash Media Server for multiplayer game development

I've used Flash Media Server to create multiplayer flash games, but the cost of deploying a FMS application seems rather high. Are there good alternatives, open source or not, that I should look into to mimic the same functionality? I'm specifically looking at using FMS for the aspect of synching game-play state between users running t...

Prevent FMS3 from creating http directory under my application's directory

I recently upgraded my environment from Flash Media Server 2to Flash Media Server 3, and I'm seeing a new behavior that's bugging me. For some of my applications FMS is creating an "http" directory under the application's directory, and creating subdirectories within that for each application instance. So, for an app called "myApp" sto...

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

Hello! 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 using server components, but I do host this thing on Linux. ...

Getting the status of a stream from FMS in ActionScript

I'm looking for a way to get the status of a stream from Flash Media Server to action script. I need to know if a stream has any publishers/listeners from flex/ActionScript. ...

Preventing progressive download of mp3?

I'm looking for some solutions for creating an mp3 player in flash; one that either uses streaming or some kind of obfuscation to prevent users from downloading the source mp3. If I used a server/solution that used the RMTP: protocol, would that prevent the download? Are there any possibilities for using Amazon S3 server for serving the ...

FLVPlayback won't seek when streaming from flash media server. How to fix?

I have a simple video player set up that streams from a flash media server. The video plays fine, but the majority of the seek commands send it back to the first frame of the video. If I don't use flash media server it will seek to any point which has already been loaded. Any ideas what could cause this? ...

NetStream Loading ID3 information from stream in FMS

I've been following the basic FMS instructions to load an mp3 and play it. This is working very well. I've also got a second NetStream instance (id3Stream) that should load the ID3 data from the same mp3, but all I get is a StreamNotFound error. Why would the mp3 stream and play but the id3 data be "not found"? Any help would be apprecia...

Does webcam recording with Flex strictly requires a media server (FMS, Red5, Wowza,etc.)?

Hi! I'm trying to implement a flex app that will be able to record a video from a webcam and then upload it to a server. I've only found tutorials and examples that require a media server running such as Red5, Flash Media Server and Wowza and an open rtmp stream to the server. However, I want to know if it's possible to record a video...

How do I record streams in chunks on Flash Media Server.

I want to record a stream which is published with Flash Live Encoder to FMS 3.5, but split the recording in files with predefined length. For example if a stream 'webcam' is published I want to record it in chunks of 10 minutes: 'webcam1.flv', 'webcam2.flv' ... From what I can tell there's no facility to work with timers. The only solut...

Connecting two Flash Media Servers via a NetConnection, but not able to use the call method

Hi, I'm wondering if anyone has had any luck connecting one FMS to another FMS (two different physical machines) via a server-side NetConnection, then having the first call a method on the second. I'm able to make the connection fine (though the NetConnection.Connect.Success event never fires). After which I have the Flash client call...

Flash Media Server calling a page that returns JSON data

I am very new to Flash development. I have an asp.net mvc site that has a controller action that returns JSON. I have a Flash Media Server setup that needs to call that controller action every 15 minutes to get the current schedule. I can get the FMS to call the site (and every 15 minutes no problem) and I am getting the JSON right now...

What are differences between Red5 and Flash Media Server

I'm building a simple flash app that records user voice. I'm new to flash. What should I consider when choosing between red5 and flash media server? Can they both be hosted on EC2? Thanks! ...

Flash Media Server, how to use allowedHTMLdomains.txt on 2nd app

Hi, I am configuring our Adobe Flash Media Server 3.5 and need some help. I have carefully followed the documentation on how to duplicate the vod service: http://help.adobe.com/en%5FUS/FlashMediaServer/3.5%5FDeving/WS5b3ccc516d4fbf351e63e3d11a0773cfae-7ff3.html I successfully created multiple applications: vod2, vod3, vod4. Now I wou...

FMS server technology: 10 connections vs. $4.5K

I came across this comparison chart that suggests that FMS costs about 4.5 grands (compared to $995 for wowza and free for Red5). Since I'm at the stage of choosing/learning the technology, I'd rather take free Red5, but Red5 looks like a poorly-organized, poorly-documented, and poorly-featured project compared to FMS or wowza, so I'm go...

what's more secured, adobe flash media server or php for server side programming ?

i want to create a flash application that sends information to a web server and i want the information to be encrypted and secured as possible. i know that using adobe flash media server or wowza it's possible to have some sort of javascript server side programming (asc) and sending and fetching information using the rtmpe protocol. is ...

flash media server: can i record video/audio from a running swf ?

Hi. i have flash media server installed and i wrote some flash games using action script 3. is there a way for me to allow the users to record their plays so they'll be able to watch it later from my fms server? ...

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

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

how to connect from Flash Media Server 3.5 to Zend_Amf

Hi. i want to be able to connect from flash media server 3.5 to Zend_Amf (latest ZendFramework version). i tried doing the following: function amfresponder ( ) { this.onResult = function (result) { trace("Success: " + String(result)); }; this.onStatus = function (fault) { trace("Error: "+ fault.description); }; }; application....

Cancel a net stream to fms server from flex

Hello, Is there a way to cancel a netstream publish from flex to a flash media server? The issue is I have code where I can Start/Stop a recording to my Flash media server. However in my front end I have a cancel button which allows the user to cancel the current recording and all this code essentially does it close the netstream. ...

showing a users list from FMS to the swf; use shared object or just call all clients on Connect/Disconnect

I want to add a users list to simple chat, and I'm thinking if whether there is a difference or is it the same thing (speed) if you have list of users on your server and you update it and call all clients and send this list when somebody connects or disconnects or use a SharedObject instead and handle the sync method on the client So is...