『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hello, i need some advices about hls-live and hls-vod applications.Ok we have 24/7 Multiple Live Streams with dvr built on FMS (rtmp for flash player), also we have built edge/origin infrastructure to serve many concurrent connections and everything works well for rtmp. (sometimes it has problems when there are more than 10k conncurent connections but its ok)now we want to do same for ios/android devices using livepkgr.hls-live app works good, but when we are trying to read f4v files from hls-vod app it works very slow (1 connection only)does anyone tested hls-vod on many connections? how it works? does it have problems?also we are thinking to convert f4v files using f4vpp to mp4 and serve them via apache HTTP streaming without packager, will it be faster and better than hls-vod? is it worth to convert all this files?and one more question, what is the best way to count active connections on hls-live and hls-vod apps.Thanks and sorry if my english was bad
hellofrom FMS i try to Communicate with: asp.net c sharpthis way:application.onConnect = function(client){ application.acceptConnection(client); var myResult = new Object(); myResult.onResult = function (resultText) { trace(resultText); }; myResult.onStatus = function (resultText) { trace(resultText); }; var my_conn = new NetConnection(); my_conn.onStatus = function(info){ tra
Hi guys,This looks like a very promising product, however we cannot begin using it unless we know the pricing model and licensing behind it. Can someone please let us know what this will be when it's released? And what is the expected release date?Thank you,Costin
i just not understand how fms manage netGroup? i try to find in multicast application but none,its just republish use rtmfp, any one can tell me how do that? when client do nc = new NetConnection();nc.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus);nc.conncet('rtmfp://192.168.1.10/multicast');nc.client = this;protected function onNetStatus(event:NetStatusEvent):void{ trace(event.info.code); switch(event.info.code) { case 'NetConnection.Connect.Success': ns= new NetStream(nc,groupSpec); ns.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus); break; &
Why since this last update of flash playerhas it affected all of my games? It also keeps crashing
I have been testing for a few days the FMS 4.5 on both linux and windows. Sometimes when the number of connections reach around 1000, the application unloaded and reloaded. This drops all connections. It can happens or it could reach to higher connections with no problem so it is hard to track down the issue. The log only shows unload application error. I wonder if anyone has the same issue
For an rtmfp to function properly do you require a Flash Media Server? I took a look Flash Media Servers on Adobe page and the prices seem very high. I have flash player 10.1 which a rtmfp requires and flash cs3 professional. Is their an alternative cheaper method to purchase a Flash Media Server? Or, another method that i can work with?
Is there a way to protect an origin server from being pulled by some edge servers? Right now anyone who knows my origin IP can pull its content easily. There should be a way, like IP restriction that allow certains IPs to pull
What version of FMS is best for FMG? Will the base version of FMS 4.5 suffice? Will there be a limit of the number of concurrent calls?Or is FMS Enterprise a must? (Please say no. I am not sure if I can afford it). I have it working on FMS AWS, but I a stuck with devloper restrictions. Thanks in advance
I tried to capture microphone sound data. so I searched in internet for someone to help me.finally I find this address : http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7d1d.htmlthis address belong Adobe help centerunfortunatelly the last code encounter error and doesn't work.import flash.events.ActivityEvent; import flash.events.StatusEvent; import flash.media.Microphone; const DELAY_LENGTH:int = 4000; var mic:Microphone = Microphone.getMicrophone(); mic.setSilenceLevel(0, DELAY_LENGTH); mic.gain = 100; mic.rate = 44; mic.addEventListener(SampleDataEvent.SAMPLE_DATA, micSampleDataHandler); var timer:Timer = new Timer(DELAY_LENGTH); timer.addEventListener(TimerEvent.TIMER, timerHandler); timer.start(); function micSampleDataHandler(event:SampleDataEvent):void { while(event.data.bytesAvailable) { var sample:Number = event.data.re
Hi,Does anyone know how to prevent rtmpdump from capturing FMS streams? I was alarmingly surprised how easy it was to capture my own content using a program like rtmpdump. As far as i know its capable of bypassing swfverificaiton and rtmpe. I had domain restriction only to my domain, so you can imagine my surprise when I was able to rip all the content from my website in under a minute.Thanks in advance, Jason
We have FMS 4.5 installed in the usual location on the C: drive of a server.We want to store vod video content in E:\Videos with sub folders for differentiation between content sets; our test uses a subfolder with videos and a manifest file. The manifest looks like this:------------------------------------------------------------------------------------------------<manifest xmlns="http://ns.adobe.com/f4m/2.0"> <media href="../hds-vod/test/sample1_150kbps.f4v.f4m" bitrate="150"/> <media href="../hds-vod/test/sample1_500kbps.f4v.f4m" bitrate="500"/><media href="../hds-vod/test/sample1_700kbps.f4v.f4m" bitrate="700"/><media href="../hds-vod/test/sample1_1000kbps.f4v.f4m" bitrate="1000"/><media href="../hds-vod/test/sample1_1500kbps.f4v.f4m" bitrate="1500"/></manifest>---------------------------------------------------------------------------------------------------We have a website displaying videos using the following syntax:---
I use the default multicast app in fms4.It will be ok if i connect to origin server.
So the instruction is like thisrtmfp://edge-fms-server/?rtmfp://origin-fms-server/applicationhowever, it is not working for me. I even triedrtmfp://edge-fms-server/?rtmp://origin-fms-server/applicationbut it is still not working.The firewall is disabled on both origin and edge servers.Does have anyone have any experience in this issue? I have seen other users having the same issue but none has the soution yet.
Hi, how can I publish my webcam with RTMP to Helix server? I can publish it to FMS but not Helix. Helix accepts connections from a rtmp client but there is no streaming response to below publish command.... _netStream.publish("test","live");
i build a p2p multicast video application ,and when i connect circus use develop key everything is ok ,but when i deploy in server, and connect to fms in our public ip address server doesnot work? i think the problem may be fms configure or my server configure,but i donot detail,does any one can help me ?
Hi, I'm trying to make a P2P video chat application with Flash Builder 4.5 and Flash Media Server 4.5.First, I've tried a simple sample application using Cirrus(Stratus). It worked very well!NetConnection -> NetGroup -> 2 NetStreams -> netstream play and publish -> last, netgroup postThe sample was all OK.But now, I've changed the server url to my flash media development server.rtmfp://p2p.rtmfp.net/XXXXXXXXXXXXXX -> rtmfp://my-fms/applicationHere is my application trace log about NetStatusEvent:[object NetConnection] NetConnection.Connect.Success[object NetConnection] NetGroup.Connect.Success[object NetStream] NetStream.Play.Reset[object NetStream] NetStream.Play.Start[object NetStream] NetStream.Publish.Start[object NetConnection] NetStream.Connect.Success[object NetConnection] NetStream.Connect.SuccessI couldn't get events about NetGroup and NetStream any more!!!!When using Stratus, It worked well...I am not familiar with FMS.. did I skip something in FMS setting?
Hello i have one simple question.is it possible to seek inside m3u8 file?For example i have file:http://localhost/hls-vod/sample2_1000kbps.f4v.m3u8and i need to start playing this file from 10 secondsis it possible to have url something like in pseudostreaming:http://localhost/hls-vod/sample2_1000kbps.f4v.m3u8?start=10
I am getting an Error #2032 after downloading the FMS Developer on my Windows 7 machine. There was a message that said "All NetConnections Failed" and the Error #2032 appears when I try any of the streaming samples.It seems that the install was not successful. I uninstalled it and then ran the downloaded exe file again and the installed appears to run successfully (as it did the first time also). But then I get the same problem when I am on the test page: C:\Program Files\Adobe\Flash Media Server 4.5\webroot\index.htmlDo you have any suggestions for me?Thank you very much.*** Correction ***I do have success, but only when I click on the "RTMP Dynamic Streaming Sample - Single Bitrate". The other theree samples all get the Error #2032 message.I did include Apache as part of the installation...don't know what went wrong. I can't seem to uninstall and start over.
Hi,I am using FMS 4.5.1 and Windows 2008 (64 bits) OS. I am loading the media files from a different machine. Thus I started running the FMSMaster as Network service on the console. Ever since this is running on a console, the error logs have stopped appearing on the Admin panel. I am getting following error on the console while FMS is running:Failed to open log file C:\Program Files\Adobe\Flash Media Server 4.5\logs\master.00.log errno=13Machine configuration:Windows 2008 R2 Enterprise,SP1, 64-bit Operating SystemRAM 16GBProcess Intel(R) Xeon (R) CPU E5607 @ 2.27GHzPlease suggest.thanks,Komal
i try record the incoming rtmp stream in the multicast app with Stream.get(streamContext.streamName).record("record",20);in the core log i get libflv.so: Recording H264 to FLV is unsupportedi also try Stream.get("mp4:" + streamContext.streamName).record("record",20);the stream file is 0 bytesi publish with fmle 3.2 and h264 codecbest regards
At any odd program that is running I keep getting the stops that state as follows:"Adobe FlashPlayerUpdateService 11.3r300" has encounter a problem and "needs" to close. We are sorry for the inconvenience.If you were in the middle of something, the information you were working on might be lost.Please tell Microsoft about this problem, etc."PLUS sometimes this error message::Adobe Flash Player Update Server 11.3r300 The instruction at "0x008i0020d" referenced memory at "0x808211e0." The memoryt could not be "read." C;ick on OK to terminale the programClikck on CANCEL to debug the program" OK CANCELI am running Windows XP Professional SP3 on a Dell 3700 Vostro Laptop. This error happens in various programs like Outlook Express in EMAIL or other s
I dont want to loose my settings and need help resetting the administrator password on my windows media server encoder 4Thanks ahead for all the help.
I am having an issue with my Flash Media Server. I have an application that works as a video conference system using FMS 4.0. A few days ago it stopped connecting the two sides. Rebooting the server fixed the problem, but this has happened before so we know it will come up again. I was looking at the log files to see if I could find the problem. There wasn't any error messages directly related to the connection issue, but there were lots off errors about memory and core failures. I posted some of the log lines below. These are from today so they don't have anything to do with the connection problem, but I am wondering if this is the start of the problem. Has anyone experienced this or have an idea to what is going on?2012-07-16 08:41:36 1484 (w)2581171 System memory load (91) is high. -2012-07-16 08:41:42 1484 (i)2581172 System memory load (90) is now below the maximum threshold. -2012-07-16 08:54:10 1484 (i)2581221 Core (5804) started, argumen
It seems your documentation is incomplete. Upon launching and trying to connect to the admin panel for FMS 4.5 the documentation is not clear on how to actually setup the username and password.I did notice:http://forums.adobe.com/thread/991753#4343869However that is not located here:http://help.adobe.com/en_US/flashmediaserver/amazonec2/flashmediaserver_4.5_amazonec2.pdfFurthermore, the password field does not exist in the server config. Can you please clarify how to actually connect to the admin panel successfully, it just rejects login.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.