『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi,I need setup a server for HTTP live streaming for large CCU (about 1500~2000 connection). So, what system requirement (hardware server) for my request?Thanks
the fms a server supports up to 15,000 connections, but I need 20,000 individuals connected at the same time how to do
I upgraded the adobe flash media server 4.5 to Adobe Flash media server 5.0which flashcoms (flashcoms.com) said that it was compatible with.After trying to start product in administration console i am getting theerror message :"Application (chat71_log_pro/) is not a valid signed application; loadingaccess denied."I need to fix this problem as soon as possible,or i am going to be forced to get a refund of this adobeproduct.thank you.
Hi? I need help for following asI want know If I make 2 or 3 kinds(example: now my FME3 make 1000K, 600K streams for one channel) of bit rate in FME and send to first server then first server publish to other server. not only one bit rate stream frist server have to republish to all bite rates of one channel to other server.find many place but really I'm stupid can't understand.even I'm not coder and don't have enough knowlegments about this. can you explain me detail?example 1. if FME publishs two kinds of bit rate to first server then how can change client side code and what kind of file in client.2. first server now can publish to client both of bit rates well. publish point is "installroot/applications/live". but if want using multi-point publish thenDo I need to change or create new application? if can using live applicions then how can setting mean what kind of file add to live applicaton directory and change code.please help me. almost three months I can't solve this
Hello,I'm working on an application to make a video chat between two people with actionscript 3 and flash media server 4.0. To do this, I followed the tutorial of Tom Krcha to do a P2P video chat with cirrus: http://flashrealtime.com/tuts/p2p-in-flash.html.My application works fine with cirrus but not with fms:The broadcasting netstream through a NetConnection in rtmfp works but the receiving netstream(video of the another person) doesn't work.I put a listener on the receiving netstream video(NetStatusEvent.NET_STATUS) but it returns nothing.However, this code works very well whith cirrus.Miss I a configuration on the fms server?I currently use two server side applications to make a video chat: multicast (which was already present on the server) or live (which was also present). Moreover, in Adaptor.xml, rtmfp is enable.
Using FMS 4.5.2 r517, I am seeing numerous errors in the core logs like the following:#Fields: datetimex-pidx-statusx-ctxx-comment2012-10-1618:32:434056(e)2611178Error from libf4f.dll: [Utils] [metrolive] Failed to swap in file 'C:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\streams\_definst_\metrolive/metrolive.bootstrap'.-2012-10-1618:32:434056(e)2611178Error from libf4f.dll: [Utils] [metrolive] Error in updating bootstrap information in C:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\streams\_definst_\metrolive/metrolive.bootstrap.-#End-Date: 2012-10-18 09:27:56Can someone please what these errors mean, the causes, and I how I can fix these? The actual stream is freezing up all the time (not buffering, but freezing) and I need to know if these errors are causing it.
When a user unpublishes a stream I want to take the recorded file and move it to a different location on our server. I can only get the File.CopyTo to work when it's in the same directory and i'm not sure why; and the error thrown is useless.The following code is the only copy I can get working.application.onUnpublish = function (clientObj, streamObj) { var myFile = new File("streams/" + streamObj.name + "/" + streamObj.name + ".flv"); if (myFile.copyTo("/streams/" + streamObj.name + "/" + streamObj.name + "meow.flv")) { trace("Copy completed"); }}I've tried provided the full paths like C:\a\custom\dir but it never works.Error I keep getting:Sending error message: C:\Program Files\Adobe\Flash Media Server 4.5\applications\myapp\main.asc: line 7
I have error 2032 on Adobe FMS. I have a 64 bit version. HELPPPPPPPPP!!!!!!
Hello, I've searched over internet and found couple sources that claim that livepkgr is working only on a main (default) vHost and cannot be extended (or namespaced) to other vhosts. In other words, the webroot dir is a singleton service living in a global namespace and to namespace HDS/HLS streams you'd need to namespace them by name inside FMLE. Is that all correct? Thanks.
I'm using FMS 4.0. I'm trying to use the Remote SharedObject, which I've I used in the past, but nothing seems to work. Even the most simple example doesn't work. No events are triggered on the SO instance (no NetStatusEvent or SyncEvent). No exceptions, no nothing.import flash.net.NetConnection; import flash.net.SharedObject; import flash.events.NetStatusEvent; import flash.events.AsyncErrorEvent; import flash.events.SyncEvent; import flash.utils.Timer; import flash.events.TimerEvent; var nc:NetConnection = new NetConnection(); var so:SharedObject; var url:String = "rtmp://127.0.0.1/live"; var tm:Timer = new Timer(1000); nc.client = {}; nc.addEventListener(NetStatusEvent.NET_STATUS, function(event:NetStatusEvent):void { trace("nc netstatus event", event.info.code); if (event.info.code !== "NetConnection.Connect.Success") { return; } so = SharedObject.getRemote("settings", nc.uri, true); so.client = {}; so.addEventListen
Howdy -I'm running FMS 4.5.3 r2005 on standard AWS Linux box. I'm recording the streams using NetStream.publish("appendWithGap") from a small custom Flash app running on IE+Windows.Usually, the generated .flv file is fine. However, I've found a number of cases where the .flv file generated was corrupt. By using ffprobe -show_packets I'm able to see that the presentation timestamp (PTS) of sequential packets occasionally remain the same. This happens for both audio and video at times. For example, consider the output of the command:$ ffprobe -show_packets saved.flv | egrep -e '(pts=|codec)'codec_type=videopts=0codec_type=videopts=0codec_type=videopts=0codec_type=videopts=0codec_type=videopts=0codec_type=videopts=0...codec_type=videopts=3912codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944codec_type=videopts=3944I really don't know much about the intern
I just installed the new Adobe Media Server but I have run into some issues. After 10 minutes of streaming, hls stops working and gives an error 500 when you request the playlist.[error] mod_hlshttp [500]: M3u8 generation error (Invalid time limit (possible inconsistent license configuration).) when processing /phls-live/_definst_/liveevent/low.m3u8I have previously set it up on the FMS 4.5 but after getting the new AMS 5.0 this error started occuring. It happens both with encryption on and off. Do you have an idea why this is happening?
How does one connect FMS 4.5 to an rtmp stream sent from a Digital Rapids encoder located on a remote server? So, far AMS does not seem to "see" the stream even though the stream can be successfully sent off-site to UStream. I am very new to AMS and am trying to learn it on the fly but the client wants it done yesterday. Any help would be greatly appreciated. Thank you.
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. Can anyone please help me in solving this issue.Thanks in advance...
I currently have an iOS AIR app that uses rtmp for video conferencing. I am assuming I could get better performance from using a p2p RTMFP. Has anyone had any experience with this? If RTMP works, should it be assumed that RTMFP will work?
Is there a way to change FMS 4.5 time to Display Timestamps? I'm using Digital Rapids StreamZHD encoder that's broadcasting to FMS 4.5. Playback on desktops work fine for multi-bitrate streams, but when viewing on an iPad or iPhone I get a really weird effect. I have no idea how to describe it, something along the lines of a strobe light or during movement people appear to be having seizures. Digital Rapids tech support suggested to change the timestamp to DTS. There assuming FMS is natively set for PTS (Presentation Timestamps).According to this article http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725dfa0-8000.html Adobe FMS requires encoders to be configured with absolute time, and Digital Rapids tech support said this was not possible. Is anyone else using Digtial Rapids encoders? If so were you able to broadcast multi-bitrate RTMP streams to FMS 4.5 and successfully playback ABR streams to deskt
Hey guys, I want to "Duplicate the live service" by "Stream live media (RTMP)" on flashmediaserver_4.0&linux . I have successfully tried 2 ways as follows, they can be previewed by FVPlayer: LIVE2_DIR = /opt/adobe/fms/applications/live2 LIVE3_DIR = /opt/adobe/fms/applications/live3/live2 But in this way as follows cann't be previewed: LIVE4_DIR = /opt/adobe/fms/applications/live4/live3/live2 So whether the maximum numuber of folders can FMS4.0 support in fms.ini's LIVE_DIR deploy under the "/opt/adobe/fms/applications/" is 2 ? I have looked up this in flashmediaserver_4.0_dev_guide.pdf, but there are no releated instuctions mentioned. Can anybody help me ?
Hello?fms Live service had a problem.origin version : 4.0.3 r4010 , 4.5.1.r486edge version : 4.5.1.r486 , 4.5.4.r3003Envivio encoder-fms (origin) - fms (edge) structure service, which is not broadcast restart Origin fms do was solved.In addition, the origin in a special log.The following are known issues in this release :2849944 The LiveCast application edge node does not reconnect to origin node application properly. Because?
We've got chrome and ie9 reporting that some of our pages referenced via https: have insecure content on them.Examining the code in the pages, it looks like all the relative links should be ok... but I'm wondering if the links to the streams are being detected as "insecure."Does this match up with other's experiences? if so...how did you get around the issue?<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Bruce Hall, Times Beach Video</title> </head> <body> <center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='640' height='504' id='single1' name='single1'> <param name='movie' value='player.swf'> <param name='allowfullscreen' value='true'> <param name='allowscriptaccess' value='alwa
Good morning everyone.I've been using FMS for a couple of weeks, and there's this bug that is really annoying me. It is not a trace statement exclusive bug, but it can be better observed with it.Here are a couple of images that will better explain my problem:
there is a problem,we are a live stream shared web site,we are using FMLE to publish a stream to a FMS(the version is 3.0) server,but currently we are trying to use RTMFP; if each live stream that has about 3000 Subscribers,should we change the value of "Netstream.multicastPushNeighborLimit" on server side? Since the default value of "Netstream.multicastPushNeighborLimit" is 4, whether it is enough for so much Subscriber ? If the answer is "yes",then how should we consider this value?i think this is a problem worthy of study,so i hope adobe can give some suggesting,thank you very much.thomas.best wishes.
We recently had the need to bounce an edge server because it looked to loose its connection to the origin and never re-established it. From the logs I have been able to see the below (kicked off at 05:23 and the support team bounced the server at 06:04) but are still non the wiser as to what happened.Any help would be greatly appreciated!core.log:2012-07-1905:23:455606(i)2581247Core (5606) disconnected from edge-2012-07-1905:23:515606(i)2581233Core (5606) disconnecting from admin: 200#Date: 2012-07-192012-07-1906:04:5326418(i)2581237Starting admin app on core (26418)edge.log2012-07-1905:23:454987(i)2581250Edge disconnected from core (5606).-2012-07-1905:25:124987(i)2581537Resending StartCore message to master (vhost: _defaultVHost_, app: , inst: , tag: _1).-2012-07-1905:25:124987(e)2581395Failed to signal process condition: errno(22).-...2012-07-1906:03:134987(i)258153Resending StartCore message to master (vhost: _defaultVHost_, app: , inst: , tag: _1)2012-07-1906:03:134987(e)2581395Fa
I newbie on the fms, im trying to make a live stream .. im already installed the fms and the auth add-in, but when i try to connect from de media encoder im get this error "Aborting auth process : invalid_session_id", and in the edge log shows "2008-10-17 01:11:27 6536 (w)2641213 Connection rejected by server. Reason : [ AccessManager.Reject ] : [ authmod=adobe ] : ?reason=invalid_session_id&opaque= -" and "2008-10-17 00:54:15 6536 (w)2641213 Connection rejected by server. Reason : [ AccessManager.Reject ] : [ code=403 need auth; authmod=adobe ] : -" someone knows how to fix it ?
Using this on AWS with cloudfront/cloudformation. When I created new Cloudformation, my first RTMP will works. i.e I publish at 500kbps.Then if I stop and send single bitrate at say 800kbps, it will not works. i.e OSMF will keep buffering.SSH to my EC2, I restart FMS server, also no different. When I republish at 500kbps, it works again.Then, Create fresh new Cloudformation, and send 800kpbs this time, it works fine.So my conclusion, I can only send 1 known bitrate, and cannot change to another, ( but can change resolution). Must be something wrong here. What exactly happened?
Hi,I have developed on-demand video application and I want to implement encryption/decryption funcationality of the Adobe Flash Access to provide secure video streaming. But i am not able to understand from where to download Adobe Flash Access and what to do to get the adobe access software. So please help me to download it and give me an idea to use secure vidoe streaming from FMS4.5.Thanks Ram.
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.