In Flex you can stream microphone audio to an FMS/Red5 server using NetStream.attachAudio, which requires a Microphone object. Is it possible to stream audio through the NetStream from somewhere other than a Microphone? For example, from a file/embedded resource?
The reason I'm asking is that I'd like to be able to run automated tests...
FLash cs4 output:
Connecting...
Error #2044: unhandled NetStatusEvent:。 level=error, code=NetConnection.Connect.Rejected
at HelloWorld/connectHandler()
Server log:
Sat 01:54:17 PM: Core (4072) connection to admin accepted.
----------------connect again----------------------------
Sat 02:09:31 PM: Core (1196) connection to admin acc...
I have following object in the FMS
User = function(userName,userId)
{
this.userName = userName;
this.userId = userId;
}
I need to send the list of user to the client swf. Once I initialized the User object collection to an array, array element is undefined when I read it from the client.
However I can’t send the generic object too...
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. ...
Usually, flash streaming is done by capturing webcam video/audio and streaming using NetConnection and other objects to servers like FMS,Red5,Wowza etc.
I haven't found any example on how to create your own stream of images and stream as a video to the server.
I know it would be possible to convert the image to bytes and send via Share...
Dear everyone,
May I ask a qeustions about Flash Media Server for far.exe utility?
Why it's can't be work ? When I enter following command
For Example.
C:\Program File\Adobe\Flash Media Server 3.5\tools>far -package -archive
test -files main.asc
Because I can't found my test.far file. Who can tell me, Thanks a lot.
...
I need to aggregate several live streams from web cams.
Then generate a single live stream for the client.
I see several apps to capture the web cam stream, but nothing that will splice the streams together.
...
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...
Can't get any love anywhere on this and it's pretty hard to believe. Live streaming and a buffer on a NetStream do not mix. Why? The docs don't say you can't do this.
The playback gets hosed. Buffer is supposed to fill to what you set it to before playing. Instead though, about half the time, the player starts playing right away an...
Hi
I'm working on project that includes technologies like: ASP.NET, FMS 3.5, SQL Server 2008 ...
At some point I found it easy to send information from FMS to Web server using web service, where FMS Server can invoke webservice hosted on ASP.NET site.
but I had a problem to do the opposite, I need to make the website (ASP.NET page) to in...
I am trying to build a karaoke system in Flash. However, I've run into a problem with synchronizing the base and loop track because of a random delay in NetConnection.publish().
To test this I play a video and publish a recording at the same time with the headphone jack going into my line-in jack. I would expect there to be a small but ...
The problem is when using function publish from NEtStream object.
Error event is "NetStream.Record.NoAccess".
I think problem is with configuration FMS.
How i connect(it connect successfully)
connection.connect("rtmp://localhost/vod");
connection.client = this;
Trying:
connection.connect("rtmp://localhost/live");
connection.connec...
I'm trying to find 1, just 1, working sample project for Red5 that's updated to work against the latest 0.9 release without missing jars and other nonsense.
Right now, it's at v0.9 and the libs are different from other versions. They have 5 pathetic examples on their website, but all were built with the older versions. For these 5 old ...
When using Flash Media Server and when using Sip Server ?
What is the difference ?
What would you recommend ?
.
Thanks ;)
...
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 using
./fmsmgr server fms start
it shows error message and i checked in messages file it gives already that port is used by someone
"Mar 2...
I am getting errors when re-publishing a stream from one application to another on flash media server.
I am getting a "NetStream.Record.NoAccess" error on the FMS and the same error as an Unhandled NetStatusEvent on the client
The error code itself refers to the following....
NetStream.Record.NoAccess
Error
The client tried to record a...
If I have flash media server and apache installed on windows, How do I go about implementing this? I have built my own player to handle http and rtmp streaming. I've searched all over and have not been able to find a solution.
...
Hi!
I would like to develop public audio conference (some sort of personal radio). Now I am looking for the best solution to do this.
I think, that there will be one, two, three, maybe 5 people who has right to talk. Others can only hear them. And, the leading man can give this possibility to talk or deny it.
I see some ways, all of th...
I have two classes that inherit from NetConnection and both establish connections to two different FMS Applications.
Class A connects to the vod application on FMS
Class B connects to the BWCheck application on FMS
BWCheck calls two callbacks on ClassB "onBWCheck" and "onBWDone" (these methods are members of Class B, but not Class A)...
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 NetStream.play() (or use the default 2 seconds) and FMS does not call NetStream.onMetaData, where one wo...