Media Server :: Use Md5 Function In Main.asc?
Feb 21, 2012How can I use md5 function in main.asc. I am passing md5 token to main.asc, but I can not calculate md5 value in main.asc.
View 3 RepliesHow can I use md5 function in main.asc. I am passing md5 token to main.asc, but I can not calculate md5 value in main.asc.
View 3 RepliesAs stated in the title, can FMS and my Linux server share the same IP or must they be differemt?
View 12 RepliesShould I delete the main.far and apply my main.asc?
View 5 RepliesI have a question... Can I use the same server side function to send to all lients 3 different swfURL depending on which button pressed from one of them? If the answer is positive...how can I do it?
View 6 RepliesI have tried to put main.asc sample file on my live application, removed main.far file and restarted my FMS, after that, i couldn't use FMLE on it, it generates an error !how to put properly the main.asc on FMS 4 (it works good for FMS 3.5)
View 14 RepliesI am trying to collect appstats using this code in main.asc. What is wrong here?
[Code]...
How can I detect in my Main.asc if the live stream is in the VP6 format or H.265 format?
View 2 RepliesDoes anyone know if it's possible to execute an external script with the onDisconnect function on FMS?
I'm trying find a better way to log when a user disconnects from a chat application.
Basically trying to update a "userlist" shared object everytime someone connects.Administration console live log reads:"Sending error message: ...main.asc: line 12: TypeError: this.usersSO has no properties"
I'm connected ok. Here's the server code Doesn't like "usersSO.setProperty()" call:
application.onAppStart = function(){ this.uniqueID=1; this.users = new Object(); this.usersSo = SharedObject.get("userlist", false); }
[code].....
I need the main.asc file to return the current directory listing to a flash application.
[Code]...
i'm trying to use this code but i can't to access to function nc.onFCSubscribe. how can i do it? someone know about that?¿ the original site of the code is http://www.flashcomguru.com/index.cfm/2009/8/14/flvplayback-obtain-nc- reference
// listen to player events and kill manual connection once we're streaming player.addEventListener("playing", playListener); player.addEventListener("stateChange", stateListener); player.addEventListener("ready", readyListener); /* this is the hack: check once every frame if the NC has been defined inside the FLVPlayback component */ this.onEnterFrame = function()
[Code]...
The upgrade version of FMS 3.5.3 append the new function about buffered stream, in order to resolve problem when the bandwidth no good caused the video getting more and more slow, but I can't find the configuration in which file.
View 2 RepliesI have a function at the server side that loads an XML and makes a photo/link array from it.I want to pass this array to the clients swf to use it for a photoGallery.nd the array = [1,2,3,4] to the client and trace it at the client side?
View 1 Replieshow to detect the call of a function in the plugin Auth.Is there something like getNotifyAction?The idea is to read the username and password of the connection. Serverscript already did but I need to do it with a SQL database so I use the Plugin. helpvar connection: NetConnection = new Conecction ();connection.connect ( "rtmp: / / 127.0.0.1", "username", "password");
View 3 RepliesonDisconnect function called automatically at any time on script side. idea why it's getting called at random time.tell us how to handle this situation.
View 9 RepliesCan Adobe Flash Media Streaming Server 3.5 run on AMD Athlon Dual Sock Quad Core?I just requested a Dell server to be added to our farm to run as a Media Server and to my surprise, while reading the requirements for FMS it states the following: 3.2GHz Intel® Pentium® 4 processor (dual Intel Xeon® or faster recommended)
View 2 RepliesGot a really big problem here. I keep on getting "NetConnection.Connect.Failed" when I load a .asc file on my main.asc file, i use the method load() in my code. I really don't understand why this happens, but when i comment out the code that loads the asc file, I can successfully connect to fms. I can't figure out what's happening here. Btw, i'm using fms4 in windows 7 32bit.
View 6 RepliesI'm trying to troubleshoot a Flash Media Server working with a little video playback application I wrote a few years ago that has suddenly stopped working.I'm using CS3/Actionscript 3.My app uses the FLVPlayback Component, and was working well last time I checked. I recevied a report that the videos stopped working, and have been looking into it.I figured I'd add a bunch of event listeners to the FLVPlayback's ncMgr.netConnection so I could get debug info on things like io errors, net status, etc.The problem I'm running into is that the netConnection is null when I set it to anything on my Flash Media Server, and adding any event listeners to this netConnection throws errors.Here's what I've tried so far:
Playback of a local FLV file works fine.In the FLVPlayback documentation, I found an example and stole the URL of the stream they were using in the example, and that works fine, although it is an HTTP protocol stream rather than RTMP.Any attempt to access FLV files on my Media Server, which has worked fine in the past, basically cause the FLVPlayback object to sit and hang in "buffering" mode and never progresses beyond this point.The netConnection object in this case is null.Here's my code:[code]........
Again the purpose of this is to troubleshoot the video streaming from the Flash Media Server, and it seems like there is no netconnection to the server being created.Does this mean that the server is not working, or is there a problem with the way I'm trying to access the content on the server?This was all working fine before, and I have set up the server-side application .ASC files and such to allow things to work fine on the server end.
How can we automatically configure edge from the admin console of flash media interactive server?
View 1 RepliesI would like to know the number of connection allowed in the free developer ediiton of Flash Media Server.
View 4 RepliesI'm trying to make a software which sends video and audio data to a flash media server by using RTMP protocol. Currently, my program can communicate with a flash media server correctly. RTMP specifications does not describe about the raw data in video/audio messages, so I muxed raw H.264 and AAC data into video/audio messages and sent to the server. The server seems to accept them, but a video player cannot playback the stream sending from the server. The player just says "Loading..." For a test purpose, I sniffed the network packets between Wirecast and the flash media server and ripped off only video and audio data. Then, I muxed those data into video/audio message and sent to the flash media server. In this case, the video player connected to the server can playback the stream correctly.
I checked the stream sent from Wirecast, the stream seems not to be H.264 raw data because those data are not started from 0x17 instead of H.264 start code. With those situation, I am wondering what kind of container format I should use for H.264/AAC data to the flash media server.
I was working with FMS 3.5 and using the function 'copyTo()' to copy a file to a desired location. Code: fileObject.copyTo("store/"+name+".flv") store is a virtual directory defined in Application.xml file in the server side and name is a variable that stores the fileName without extension This was working fine with FMS 3 and FMS 3.5. Now, I moved to FMS 4 and noticed that this copyTo() function is not working. In the FMS Admin Console, it throws an error:Error: File operation copyTo failed.
View 10 RepliesI have a 10 second Intro video that I would like to play before each main video plays. The videos are streaming through FMS 3.5. At the moment I have to attach the intro to the start of the main videos and render out in Premiere Pro CS5 Ideally I would like to set it up so that the intro starts for the 10 seconds and then auto switches to the manin video. To show an example of what I need to do here is a link to an Archery site ( I also do archery as a hobby and noticed this)[URL] If you click on any of the 8 parts for either day 1 or Day two, you will notice a couple the 5 second intro screens and it then automatically goes back to 0 to start the main video.
View 4 RepliesI have to a problem using the Flash Media Interactive Server Feature Explorer. I want use the sample: RecordStream. I can see the instance "RecordStream" in console FMS 3.5. and show me the video in app AIR, but does not save the .FLV in my server.
View 6 RepliesApply the security patch found here:http:[url]............For more information see the followingresource:CVE: 2009-1365
View 1 RepliesI have Flash Media Streaming Server 3.5 (not Interactive) running on RHEL5.5 x86_64 Linux.All is working well, however how do I prevent unauthorized access to connecting to the live stream and streaming content?How can I setup the server to require a user and password to stream live media to the server?I am new to this product and I have been reading some documentation but I have not found a clear cut answer on how to force a username and password to connect to the server to stream live content only.I am using the Adobe FMS Apache install, what files need changing?[code]I want to lock down a person from connecting to the server on the public internet and starting a live stream?Can this be done with a user name and password?
View 13 RepliesOur flash media server stops taking connection sometime. Any one have any idea about sophos antivirus?
View 8 RepliesWe purchased FMIS and we are encoding large 15+ hour MP4 recordings using flash media encoder. When opening these large files for playback, which have not been opened recently the player displays the loading indicator for up to 4 minutes! Once it has apparently been cached on the server it opens immediately from any browser even after clearing local browser cache. So a few questions for the experts
1. Why is it taking so long to load the file. Is it because the MP4 metadata is in the wrong format and the file is so huge? I read somewhere that Media Encoder records with incorrect MP4 metadata is that still the case?
2. Once its cached on the server, exactly how much of it is cached. Some of these files are larger than 500mb.
3. What fms settings do you suggest I change. FMIS is running on windows server R2 64 bit, but FMIS itself is 32 bit. We have not upgraded to the 64 bit version. We have 8GB of ram. Is it OK to set FMS cache to 3GB. And would that only have enough room for 3-4 large files, because we have hundreds of them.
is it possible fast forward, rewind video in flash media server through flash action script ?
View 5 RepliesI am using flash media server 4.5 for video streaming and genrate log files. In log file i have found the user publish point name in "x-sname" filed but this filed contains blank values in many events.This fileds contains value only in "PUBLISH,UN_PUBLISH,RECORD and PUBLISH_CONTONUE" event and other then these 4 events all events are not user related event.?I like to fetch the user bandwidth detials using these log files which user used how many bandwidth.I also like to know I can see serval files on flash log folder name "access.00.log,access001.log and admin.00.log,admin.001.log" Any one please explain what is the name convation for this filed how can i identifiy which files contains information for which date.?
View 1 Replies