The official Adobe Media Server community.
Recently active
Hi everyone,I am new here. I want to know how can I get the videos from IP Cam and store on the Flash Media Server then clients can see the videos from the browser.Could anyone give me some ideas that what kind of software and technique I have to use ?
Hi have used these setting for mike,but i am facing echo and some disturbance problem.SO can anyone tell me how to reduce that issueprivate function setMic():void { microphone = Microphone.getMicrophone(); microphone.setLoopBack(true); microphone.setUseEchoSuppression(true); microphone.rate = 11 microphone.gain = 65; microphone.setSilenceLevel( 5, 1000 );
I know i can find this answer in documentation but I thought I would ask here to save myself some time as I work on a project for a client so i can do otherthings while i wait on this answer. Anyway what ports do i need to open so I can stream video with hls for Apple/IOS devices? i've opened 80,8080,1935 but i think i saw somewhere that i need to open a port range. Not sure hence this question. thanks for your time.
Problem: I would like to enable code hinting and highlighting in either Flash Professional or Flash Builder when developing an Actionscript Communications File (.asc).Steps Taken:Searched Google with limited success, most signs all pointed to FMSGuru.com where one may obtain an Eclipse Plugin, but:It was created in 2007 (likely out dated)It has known bugs that haven't been addressedSearched this forum / adobe's web site to find a solution, to no avail.Posted this, now, in an attempt to put this to restRequest: If anyone knows how I can enable FP or FB to give code hints / syntax highlighting, I would really apprecaite some direction. If not, I appreciate the fact you even read this.Have a good one. Happy Coding.
Hello,I like to protect, with a password and user name, the incoming stream to the FMS (application Live Packager). How can I instal a password (I don't mean SSL), to prevent that unauthorized persons can stream their own content over my server. This means, the Flash Media Encoder should ask for a password and username.I'm thankful for any help.Cheers
When I use Adobe Flash Media Server 4.5 publish http live stream. I found a message from Server Log of Manage Servers of Adobe Flash Media Administrator Console. It says that "Failed to record live stream (disk quota exceeded)." How can I do to solve the question?
Hi guys,Ive been able to setup FMS 4.5 and stream RTMP videos locally from a webcam stream but if i try to access it remotely i cant get a connection. Ive forwarded port 1935 through to my local IP from my router but still no connection, what do i need to configure on the servers end to tell it that its behind an NAT etc. Do i just add the public ip to the hostname line in the fms.ini, or is there more i need to do too? Do i log into the admin panel and change the server name from localhost to my public IP? Any help is greatly appreciated =]
Can't login to the Admin Console.FMS 4.5 Dev edition is working locally http://localhosthttp://ComputerNamehttp://IPAddressAll load the splash screenrtmp://localhostrtmp://ComputerNamertmp://IPAddresswith username (verified by Install Dir/conf/FMS.ini) accuratepassword is very generic so while the chane exists that I fubarred it, it's slim.What are my options? Uninstall/Reinstall?Any others?
when i enter the following commendusers add -u username -p passwordit returned the following errorusers: invalid option -- uplease help me
I send INVITEs to two different SIP servers from FMG. The INVITE to another FMG returns:-------------------------------------------SIP/2.0 200 OKFrom: "Dennis Ernst via FMS"<sip:mms1devFMG@mms1dev.vin.com>;tag=43ec080-0-13c4-5506-f1c9-d6351ad-f1c9To: <sip:8888@209.204.188.250>;tag=40b5fa0-0-13c4-5506-876a-7ff2895-876aCall-ID: 43f2548-0-13c4-5506-f1c9-521b3a17-f1c9CSeq: 2 INVITEVia: SIP/2.0/UDP 10.10.10.190:5060;branch=z9hG4bK-f1c9-3b07d0f-3ee6b1f0Contact: <sip:8888@209.204.188.250>Content-Type: application/sdpContent-Length: 250v=0o=MG 2630303 2630303 IN IP4 209.204.188.250s=Flash Media Gateway 2,0,0,72c=IN IP4 209.204.188.250b=AS:612b=CT:612t=0 0m=audio 49158 RTP/AVP 0 101a=rtpmap:0 PCMU/8000a=rtpmap:101 telephone-event/8000a=fmtp:101 0-16a=sendrecv-----------------------------------------and RTP packets quickly follow and every thing works as it should.The other one (Avaya IP Office) returns this:-----------------------------------------SIP/2.0 200 OkVia: SIP/
Recently I'm really confused,i want to use FMS4+multicast in our "live Application", I found a lot of information that about p2p live broadcast,but it seems that there are not enough practical applications.In our "live Application",we are using FMS3,and there are lots of live streams,and each streams has about 1000-6000 subscribers,and each live streaming will be released about 8 hours.So we spend a lot of money for the purchase of bandwidth,i think, if we can use FMS4+multicast ,so we can save a lot of money,but the FMS4 which is "developer version" has 50 connections limit,and if the client use the "p2p" features,it will pop up a "Peer Assisted NetWorking" dialog...Therefore, we can not use a "multicast" player that is hidden in a web page,and so we can not implement a large-scale test on our web site.As an employee,I am very eager to create benefits for the company,and now i have created a "multicast" player,and i have deployed the FMS4(developer version),and we h
Hello,I have followed this link to republish my local stream to other local application instance : http://help.adobe.com/en_US/FlashMediaServer/3.5_Deving/WS5b3ccc516d4fbf351e63e3d11a0773d56e-7ffb.htmli have used this script code into main.asc and it is working :// Called when the client publishes application.onPublish = function(client, myStream) { trace(myStream.name + " is publishing into application " + application.name); // This is an example of using the multi-point publish feature to republish // streams to another application instance on the local server. if (application.name == "live/_definst_"){ trace("Republishing the stream into remote app/anotherinstance"); nc = new NetConnection(); nc.connect( "rtmp://localhost/live" ); &nb
Hello, I have a device which sends MPEG2 multicast udp live stream, I can read it from udp://@236.1.1.14:34000 for instance. Next it is transcoded with vlc :cvlc -vvv udp://@236.1.1.14:34000 --sout \ "#transcode{venc=x264{keyint=60,profile=baseline,level=3.0,nocabac},vcodec=x264,vb=250,scale=0.6,acodec=mp4a,ab=96,channels=2,samplerate=48000}:rtp{dst=127.0.0.1,port=10013,mux=ts}" 2>1 > /dev/null &My question is how to read from udp://@127.0.0.1:10013 using FMS and send it to flash clients ?Thank you
Hello,I have following questions and your help to answer them would be very much appreciated.Note: By 2 way I mean a video conferencing kind of application.1. About Edge/Origin - Can edge-origin be used for 2 way live streaming, where in all users publish to the specific set of origin srvers, and all users subscribe to live streams from the edges? What kind of delays would be introduced?2. About Multipoint publishing - Is Multipoint better that Edge/Origin for two way live streaming? If yes, then in what way (latency ???). If no, why?3. About Edge/origin Vs Livestreamcast - In our experiments, we noticed that unless the first client connects to a particular edge, the caching of a particular stream does not start. However in case of Livestreamcast the bootstrap for the first stream to the intermediate and edge is initiated at the time of app start itself. Can you validate the truth of this finding or is something wrong with our setup? 4. The Best way - Which of the above 4 c
Hi all,i'm testing hds and hls as well and i see my streams/livestream directory full of f4x and f4f files. I set into Event.xml the following value:<DiskManagementDuration>1</DiskManagementDuration> that should delete all files over than 1 hour. Is there a value to set into this tag minus that 1 hour (es. 30 minutes)?.Thanks
Hi,can i use a single RTMP link included on FMLE with multiple servers, means, that RTMP link will do the redirection to the other RTMP links.with hight number of simultanous users, that feature will manage the use of serversRegards,Morsi
Hi,I am using the new Flash Player 11 ability to encode H264 video within the Flash Player. I am streaming the webcam via RTMP to a FMS. I am using the following settings:H.264 BaselineLevel 5.1Keyframe freq. 5 seconds25 FPSInput size: 1280 x 720 (720p)Output size: 1280 x 720 (720p)Bit Rate: 1000KbpsWhen I am using these settings with FMLE 3.2, the final stream plays very fluent with a good amount of FPS. If I am using Flash Player 11 for the encoding job instead, the final video is not as fluent as before and achieves less FPS (maybe 5 FPS).So the question is: is Flash Player 11 not as good as FMLE 3.2 or am I missing some configuration? FP11 should be capable of encoding and streaming a fluent 720p stream, shouldn't it?Thanks a alot.BestMalte
I'm trying to find in the documentation why Apache is required for the feature set that FMIS 4.5 provides. Is it that there are modules/scripts/other built in to that Apache build that make the features work.... or is it that Apache is simply pre-configured to work and provide these services?If it's merely a configuration issue, is there an outline somewhere of the set up so I can mirror the setup with iis?
I am using a flash app.I can send and receive streaming data to FMS by using this app, like the chart I attached.http://dl.dropbox.com/u/4793236/FMS_Question.pdfThis app uses RTMP to access to FMS.I want to upgrade this app to display sound level of each client.Is it possible by using Actionscript and FMS?If so, which class should I use?Any suggestions are helpful for me.Could anyone give me some advice?Thanks in advance!
Hi thereI am experiencing an issue with playback on RTMPE streams. after investigation it seems that the FMS server is firing the NetStream.Play.Complete message at random points, indicating that a stream has ended. This is happening and random points during the stream, not even close to the end.The order of Status messages is as follows:Thu Oct 20 2011 04:15:17 PM :: NetStream.Play.Start : statusThu Oct 20 2011 04:32:40 PM :: NetStream.Play.Stop : statusThu Oct 20 2011 04:32:40 PM :: NetStream.Buffer.Flush : statusThu Oct 20 2011 04:32:58 PM :: NetStream.Buffer.Empty : statusThu Oct 20 2011 04:32:58 PM :: onPlayStatus : NetStream.Play.CompleteAs you can see roughly 17mins into playback...although the stream is 1 hour 24mins longI have tested this numerous times, and each time it is at a different point in the stream.Intermittently the NetStream.Play.InsufficientBW warning is being fired prior to NetStream.Play.Stop. I am using a player built on OSMF 1.5.Just need to know why the
Dear Adobe. I attempted to Install FMS 4.5 with all its modules by installing apache seperately from the FMS installer on Linux However the installation notes do not specify how or where to get the information on how to install all the FMS 4.5 functionality such as HLS to Apple/IOS. But this is the part that messes me up if I install YOUR version of apache then it is supported. Now correct me if I'm wrong because this was the case the last time I tried to install your version of apache. Last time I installed your bundled version of apache and then attempted to install PHP for apache with the modules GD,php_mysql and it didn't work. I attempted to make it work for days. So please tell me how do I install PHP,PHP_GD and PHP_MySql on your bundled version of apache? Also How do I install FMS 4.5 including HLS for Apache on Linux/Windows that is not bundled or for Microsoft IIS ? Maybe you will answer this maybe you won't in the past I've usually been on my own at this point. Lu
I am currently testing security hardening with FMS 4.0.3 r4011 in an Origin Edge setup.What I have found is that the SWF verification can only be processed on the Origin, is this correct? The config ( adobe/fms/conf/_defaultRoot_/_defaultVHost_/Application.xml ) within the Edge server is ignored when <SWFVerification enabled="true"> is set and the correct SWF file copied to the correct directory, once this config is enabled on the Origin then SWF-v takes place.RTMPE calls from client to edge fails on the origin with error message connection rejected by server. Reason : [ Server.Reject ] : Connection failed. We know RTMPE from edge to origin does not work ( with this version of FMS ), however if I remove the rtmp block ( <DisallowedProtocols></DisallowedProtocols> ), rtmpe from client to edge works and is accepted by the origin server. If I do the same call (rtmpe) direct to the Origin with rtmp blocked it works fine.My questions really are how do I only allow rtmpe an
I'm doing a test install before we update our old server to 4.03.I've got the server software installed and configured (4.03 server, using iis for web).All the test stuff on the sample index page works, except for the dynamic stream tab.I've eyeballed the .f4m file, and tried putting in a complete url to the samples...but no luck.i just keep getting the stock connection timed out message. Where do i need to look to start confiriming where this issue may be coming from?I've made made sure I can reach all the test videos by making flash players for them, calling them via rtmp... no problems.It's got to be something dumb with either the f4m file, or the way it's being served (btw, i have added all the mime types to iis , including .f4m as video/mp4....which is one of two ways I've seen it added).next steps in trouble shooting this?
i have encountered a problem last night. my code looks like the following:<?xml version="1.0" encoding="utf-8"?><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> <fx:Declarations> <!-- Place non-visual elements (e.g., services, value objects) here --> </fx:Declarations> <fx:Script> <![CDATA[ private function onCreateComplete():void &nb
Hi all,i'm testing HLS on fms4.5 with apache. I set all required files (like Location hls-live correcty into httpd.conf and Event.xml into livepkgr application subfolder), but when i start a single bitrate on flash media encoder, i cannot see any live video on my ipad through the following url: http://serverfms/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8 (sometimes the video starts, but then it breaks after few seconds) and i get the following error on apache log file: [error] mod_hlshttp [500]: Unknown exception when processing /hls-live/streams/livepkgr/events/_definst_/liveevent/livestreamNum157077.ts.If i try to see the same live video in HDS (http://serverfms/hds-live/livepkgr/_definst_/liveevent/livestream.f4m) i get no errors and i see the video. Also if i try to see any on demand mp4 file by http streaming for iOS through: http://serverfms/hls-vod/sample1_1500kbps.f4v.m3u8 i get no errors and i see the on demand video correctly.Any advice?Thanks
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.