The official Adobe Media Server community.
Recently active
Hello, is it possible to setup the FMG to register each flash phone number on separate sip server for bidirectional call from flash to sip phones, and from sip phones (which registered on sip server 3cx) to flash app directly (not 1 gateway number ). For example, on my sip server 3cx there is 100, 101, 102 phone numbers, which is registered by FMG and associated witch each flash phone. When I call to 100 from my internal sip server number, it should ring on flash phone 100. And when I call from flash (internal number 100) to 120 (sip server 3cx number – 3cxphome) it should ring on 3cxPhone directly from that flash application without any gateway number.
Hi, I was trying to connect to FMG using x-lite.However, a reply of "REGISTER" did not come back from FMG.It seems that an error had happened as the log message shows.2010-11-01::19:12:41.149 DEBUG SIP 4680 getMGAddressToUse::localIp not set, Using MG Address=192.168.0.22010-11-01::19:12:41.150 DEBUG SIP 4680 Registration successful for profile sipPhone2010-11-01::19:12:41.150 INFO SIP 4680 transcAuthCompletedEventHandler:failed in constructing Date header : sipPhone2010-11-01::19:12:41.151 WARNING SIP 4680 transcAuthCompletedEventHandler:Failed to response to the requestIs there any approach to solve this problem?Thanks.- Hiromi
HelloWondering if FMS/Encoder could handle the following scenario in a relatively 'out of the box' way:Given:- Source video media on the server/web storage, either as solid assets or pre-fragmented into defined 'clip' segments- Source 'overlay' media on the server/web storage, as video-with-alpha assets- Source audio media on the server/web storageGiven a '3 layer' playlist where the desired outcome is to:- Stitch together the selected clips (regions from within the source video media) from various sources into a single, solid video asset.- Composite the 'overlay' media using normal alpha compositing into that asset at variable times (defined by the user).- Mix the audio media into the solid asset (mixing with any audio contained in the original source clips).Producing a cached, solid video asset that can be viewed/transcoded/retrieved from the server.I don't see anything about compositing videos or mixing an audio into a stream. The desired output format would be high quality (as a so
Hi.. Parden me if this question was asked earlier. While installing FMS i have entered the port numbers 1935,100 instead of normal 1935,80 as i already have wamp in my default port 80, but when i try to call the localhost url, both the port (http://localhost:100 & http://localhost:1935) are not working. Please help me how to fix this. Regards,Bala
I just installed FSMS 4 and could not log into theadministration piece (the login s would fail) eventhough I was using the ID and password specifiedin the fms.ini file.During the installation I had specified a different portfor the administration port. I changed the port backto 1111 and I could log in with no problem.Why is the admin login failing if I don't use 1111 asthe admin port number ?
Hi! I'm glad to see this new piece of software. I think Adobe is on the right track with telephony community.Anyway, I'm trying to set this up, but I'm running into problems.Is there way to assign FMG a SIP UserAgent? Currently when I try to register FMS with a Gateway, UserAgent field is empty, and the system I'm trying to connect to expects a UserAgent string.Thanks,-Tom
Hello all,As stated in the title, I want to know how to determine if my server/host has native bandwidth detection.I have FMIS 3.5 installed on my Linux server. Is this a setting in FMIS or is this something I have to call my host to find out?Many thanks in advance.Sincerely,wordman
Hello all,I won't lie, my frustrations with getting a player on my website that uses FMIS is becomeing a process that is immensely frustrating. Lots of you have tried to help, but I obviously don't know how to properly phrase my question, because all I get is partially-cryptic answers that run me in circles.I'm getting desperate and the worst part is, it's like drowning without knowing the correct phrase to scream for help.Learning PHP, MySQL and database design was a BREEZE compared to this nightmare.Now...I read David Hassoun's tutorial, 'Dynamic streaming in Flash Media Server 3.5 – Part 1: Overview of the new capabilities' and discovered FLVPlayback 2.5. A ray of hope shined in on me for a brief instant.I downloaded the tool, installed as per the instructions, but I HAVE NO IDEA what to do to make it work properly. I need help with this...what actionscript does it need to work with RTMP? I need a nuts and bolts guide to help me. Certainly I can not be the only one mired in this.Ple
Hi All,We are migrating from Windows Media Server to Flash Media Server and hence I need some guidance. Below are my requirements:Be able to deliver videos in the form of playlists. Eg: Inserting advertisements before the main video playsRestrict access to certain videos as these will be available to only paid customersBe able to create apps where users can upload their own videos. I guess this one requires the Enterprise server. However this requirement is not critical.Any other tip for first timers is more than welcome. Thanks for taking time to read this post.Thanks,Mushtaq
Hi,I created a video live recorder and its working fine locally.Now I want to add the video recorder to my website.What is the steps to add this in my website?Whether I need to buy and install FMS in my server?Thanks,Shanthi.
Hi, Can anyone help how can I find on fms server that client disconnected if if client disconnected due to power cut off. I client manually close the application then onDisconnect on server is called but if due to power cut off it does not called.Thanks
Hello guys FMS 3.5 There is a big problem in which i stuck . how to know that client has been disconnected if client pulls of cable or manuallu disconnect netconnection. on disconnect event does not fire at fms. Please provide solution to it. I will be really thankfull to you guys. Thanks and regards Mohit
hi guys i stuck in a problem .. i want to write responder in fms 3.5 here is my code but is not working clientCount = function(AppClient) { AppClient.call("fmsping",myResponderSuccess); // fmsping is the function at client side which returns true boolean variable }; function myResponderSuccess(result:Boolean):void { trace("FMS Call Successed : " + result); } Thanks and regards Mohit
Hi,Am trying to record video from my webcam.here is my codevar nc:NetConnection; var ns:NetStream; var nsPlayer:NetStream; var vid:Video; var vidPlayer:Video; var cam:Camera; var mic:Microphone; nc = new NetConnection(); nc.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus); nc.connect("rtmp://localhost/publishlive");function onNetStatus(event:NetStatusEvent):void{ trace(event.info.code); if(event.info.code == "NetConnection.Connect.Success"){ } } function publishCamera(e:Event) { cam = Camera.getCamera(); mic = Microphone.getMicrophone(); ns = new NetStream(nc); ns.attachCamera(cam); ns.attachAudio(mic); ns.publish("myCamera", "live"); displayPublishingVideo(); }function displayPublishingVideo() { vid = new Video(); vid.x = 10; vid.y = 1
Hi,I am newbie FMS.Just i installed FMS 4.created a swf..... the code isvar nc:NetConnection; var ns:NetStream; var nsPlayer:NetStream; var vid:Video; var vidPlayer:Video; var cam:Camera; var mic:Microphone; nc = new NetConnection(); nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus); nc.connect("rtmp://localhost/publishlive"); publishCamera(); displayPublishingVideo(); displayPlaybackVideo(); function onNetStatus(event:NetStatusEvent):void{ trace(event.info.code); txt.text = event.info.code; if(event.info.code == "NetConnection.Connect.Success"){ publishCamera(); displayPublishingVideo(); displayPlaybackVideo(); } } fun
Hi,I used to run stream via icecast streaming server which had php authentication capabilities.My question is, is it possible to do the same with FMS? Put this sort of code in main.asc to verify a viewers credential before allowing him to watch. At the moment the domain/swf restrictions work well but this could add a little more security into the mix?Something like this to determine whether a user has an active subscription to watch a certain video <?phpfunction MySQLConnect( ){$db_host="localhost";$db_username="xyz";$db_password="xyz";$db_name="xyz";$connection= mysql_connect( $db_host, $db_username, $db_password );if (!$connection) { return "FAILED"; }mysql_select_db( $db_name, $connection ) or die ("FAILED");return $connection;}function basic_icecast_check_user_allowed ( $username , $password ){$allow_user_auth_query = " select xyz_members.login,xyz_members.pass from xyzr_members,xyz_payments where xyz_payments.member_id=xyz_membe
Hello my fellow FMS community! Does anyone know of some good classes to attend or books to read on delivering video to the web? Also, some classes strictly geared toward the FMS would be awesome too. I've been using FMS since v1 (I believe it was called Communication Server back then) was released and Flash/Actionscript also for a few years now, but it seems there is still so much to learn about this process. The more I read and learn the more I realize I need to be a video producer, programmer, network engineer, and server engineer all wrapped up into one. Even though I've been doing this for a few year I still see other companies out there delivering better vids that don't hiccup at all. It seems like there are some secrets to the whole process that aren't being shared or something I'm missing. At the company I work for we have people who shoot the video primarily for television. After they do their magic a high res QuickTime video is handed
Hello all,I have gone through Tom Green's helpful tutorials on streaming from the vod folder (FMS Developer) and using his application to stream from the applications folder (FMIS).What I need to know now, is what to do to create a player for use on my video page. Just when I think I have this figured out a little more, I end up stymied.For example, I just downloaded and read through the 22-page intro to the RealEyes REOPS player. This isn't the first time I have researched this player, but every time I start reading up on it, it feels as though it's making sense, then the treatment drifts straight into software engineer-speak and I'm left thinking this will be impossible to grasp.I researched Strobe. Yet another exceedingly-difficult bit of information to understand when you're a beginner. Ultimately leaving me staring at the screen wondering what I just read.I have a full, licensed copy of FMIS running on my web server and I want to stream video from it. I really don't care if the pl
I reverted the admin console account on a new setup of Media server 4 and it will not let me connect or login using the "administrator" login? Does it set the password to some defaut? This is all new to me as this is my first install of this server.How can create a new admin login?How can I change to login?Help!Thanks, Tandrist
Hi,i've recently installed Wowza media server 2 locally, currently only for testing purposes. everything works fine, except of accurate seeking functionality - or in other words advancing frame-by-frame .when i use VLC to play my video file i have no problems advancing frame-by-frame. however, when i use the 'seek()' function to move the playhead a fraction of a second, its seems to move only to the next key frame (meaning that only once every few mouse clicks the playhead advances dramatically).i thought that when using streaming video (unlike progressive download) this issue is resolved. am i wrong? did i miss something?thanks in advance,eRez
Our application is a chat program with about 20 - 30 chat rooms with 10-100 users at a time, only 2 at a time can be writing text/draw on a board in each room. 4 of the rooms also have audio, only spoken by 1 user per room. We used remote shared objects on FMS to share content to the room users.My application has recently started giving the following error sporadically:1124 Failed to open shared object file (%1$S) for write.I've been trying to find information on this error and what can cause it and have had little luck. Can anyone point me in the right direction?
Hi All,we are using RTMP with Flowplayer with dynamic bitrate switching and I'm a bit confused on the bitrate (kbps) that is called out in the code in order to configure the bandwidth check. I presume that this is the target bitrate if encoding using ABR or constant. How about for the rest of us that are using CRF? My understanding is that CRF is the way to go now for H264 (don't want to hijack the thread to a CRF vs ABR discussion). If we are using CRF, can we guess on the target bitrate that is called out in the bwcheck plugin? does it really matter?thanks!Randall
Hello all,This question might be best posed to Graeme Bull, but anyone in the know, please share some info if you please.I see Wowza's top-tier server version is just under $1K. FMIS Runs $3500 more. Is this version of Wowza more like FMSS?I'm curious to know what Wowza offers that is different than FMIS.Many thanks in advance.Sincerely,wordman
could you help me please.Does flash media server 4 support dynamic streaming , i mean choosing video with right bit rate on the server side automaticly ? or do i have to implement this on the client side , switching streams with DynamicStream like shown here : http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_advanced_pt1.html*sorry for mistakesthanks in advance
Hello,I've installed FLASH MEDIA DEVELOPMENT SERVER 4 for testing. I wonder if there is a way to disable Stratus/Cirrus peer introduction services included in this version of FMS, because I need to simulate Flash Media Interactive Server 4 (not the Enterprise version) to adjust my application properly for cheaper solution.I am using NetStream.DIRECT_CONNECTIONS and I want to test, what are the differences of usage and how to do it right, even implement a fallback, when no peer introduction services are working on the server.Thanks.FMS4 versions comparison table: http://www.adobe.com/products/flashmediaserver/helpmechoose.html
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.