The official Adobe Media Server community.
Recently active
With a recently acquired AMS 5 Professional we have had good results encoding video to it using a Teradek Vidiu hardware box.The only limitation encountered with this Vidiu device is that it does not provide multiple bit rates out of it. As a result we need to select the lowest common denominator that we are confident our viewers will be able to consume.Is anyone using a similar form factor product for encoding that provides for multiple bit rates? I'm hoping to stay within $2000 to $3000 price range.For portability reasons not interested in the Flash Media Encoder right now.Thanks.
'd like to take a file on an Adobe Media Server and upload it to S3 preferably by using the Server-Side Actionscript API.I've found that the LoadVars class can do HTTP requests, to some extent.The LoadVars.send() says:"All enumerable variables in the myLoadVars object are concatenated into a string that is posted to the URL by using the HTTP POST method."I'm not sure of what, exactly, this means, or where it puts this string, but I'm guessing it inserts it into the url as a querystring. I don't think S3 accepts objects like this.Is it possible to accomplish what I want to do with the server-side scripting language?The most important thing, besides getting the file on S3, is to get some sort of a notification that it's done so that I can tell my Flash client that it has been uploaded. This means that the API needs to be be aware of, or discover that the file has been uploaded.I'm experimenting with this: var lv = new LoadVars(); lv.onHTTPStatus = function(httpStatus) { this.httpStatus
Hi,I am looking for some recommendation and guidance on how to ban AMS from using SSlV3 in with RTMPS clients. I know about that there's a configuration in Adaptor.xml called"SSLCipherSuite" which should be able to somehow prevent a specific protocol, but the Adobe documentation recommends contacting with Adobe before changing that configuration.So I was wondering if Adobe has any official recommendation to prevent RTMPS client from using SSLV3. Could someone please point me to the right direction?Thanks-Irtiza
Hello AMS Team, Do you plan to make the AMS image available for Frankford (eu-central-1)? Thanks, Arnaud
HI There,Am trying to stream a video on to Adobe media server(using RTMP) through FMLE and play it on my web site using JWPlayer. i could stream the video successfully, but know i want to get the timestamp/timecode on the stream. does Adobe media server and FMLE support this kind of use-case ? if not is there any other way to achieve the same. any comments/suggestion/pointers appreciated .Thanks in AdvanceRegardsDeepak
To benefit from adaptive bitrate streaming over HTTP, I have created a file in different bitrates and screen sizes, when I created files in 144p , 240p , 360p and 480p the switching between videos happened, by decreasing the bandwidth the player switched to the video with lower bitrate and by increasing the bandwidth the player switched to the video with higher bitrate.Question 1: But sometimes the video was switched to different lower or higher bitrates without any decrease or increase in bandwidth. How can I cure it?Question 2: When I created files in 720p and 1080p the player only played the video file of 144p without switching to the videos with higher bitrates and kept buffering during the play back of video file of 144p. What should I do to make the player to switch to videos with higher bitrates when the bandwidth is increased properly?ffmpeg -re -i j:\movie\need4speed.mp4-preset ultrafast -threads 1 -vcodec libx264 -b:v 3000k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-ke
Attention please (New finding)In AMS version 5 two errors including: TypeError - Error #1009 and Argument Error invalid-bitrate happens but these errors wont happen in FMS 4.5.Below are the explanations regarding the two errors in AMS version 5 extended edition. 1- When I make multi-bitrate from a video and stream them live on Flash Media Server my users can play this videos in "http live streaming" but sometimes when the second or the third user wants to play this live streams at the same time, previous user becomes DISCONNECTED and gets the Error invalid-bitrate2- I am making mutli-bitrate streaming in FMS and FFMPGE. In FFMPEG, I create 4 bitrates of source video and publish it on the FMS through RTMP protocol (rtmp://my-server/livepkgr/mystreamName1?adbe-live-event=liveevent).Now all configurations are working correctly but I get this error: TypeError - Error #1009Please advise how to correct the above errors in AMS version 5My codes are as followffmpeg -re -i j:\movie\
I am planning to set up a live TV service as like as jagobd.com. Though i am not so geek about streaming media i want to kickstart this project by myself without directly hiring an expert. Can anyone please tell me how can i send multiple streams (approximately 20) with my single pc using an Avermedia analog TV tuner. It could be RTMP or RTSP either one. And what encoder works best with Adobe Flash Media Server that can tune an analog tv tuner and send multiple streams (RTSP/RTMP) to server?
Hello everyoneIs it possible show all bitrate label in the Strobe Media Playback such as JWplayer.Now in the Strobe Media Playback just show HD button. So I want to access to the users can be change the video bitrate on Strobe Media Playback.Please advise me to configure this Strobe Media Playback.any help will be appreciated
Hello everyone,When I make multi-bitrate from a video and stream them live on Flash Media Server my users can play this videos in "http live streaming" but sometimes when the second or the third user wants to play this live streams at the same time, previous user becomes DISCONNECTED and gets the Error invalid-bitrateMy codes are as followsffmpeg -re -ss 00:30:00 -i j:\movie\need4speed.mp4-preset ultrafast -threads 1 -vcodec libx264 -b:v 2048k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 1710*720 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/need4speed720p?adbe-live-event=liveevent-preset ultrafast -threads 1 -vcodec libx264 -b:v 1024k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 1140*480 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/need4speed480p?adbe-live-event=liveevent-preset ultrafast -threads 1 -vcodec libx264 -b:v 600k -r 24 -g 24 -keyint_min 4
Exist any possiblity to install FMS 4.5 on CentOS 6 64 ?ORHow install on Ubuntu 12.04 ?I already search for all places. But yet not find any solution for me !Thank for all replies.
This question was posted in response to the following article: http://help.adobe.com/en_US/flashmediaserver/ssaslr/WS5b3ccc516d4fbf351e63e3d11a11afc95e-7ec3SSASLR.html
I'm trying to implement a solution for "ungraceful" disconnects from my app, such as when the browser window crashes or the network connection drops. For RTMP connections everything is pretty easy, but for RTMFP connections to the server, it's a bit more difficult. In my main.asc file I've tried using Client.ping() as well as trying Client.getStats() and checking the ping_rtt time, but they both don't work as expected with RTMFP (it appears that the client is still alive when it is not). At the moment I'm using a reverse-RPC call and having the server call a method on the client and waiting for a response...it works ok but I'm not sure that's the best solution. Is there a way to configure auto-disconnecting dropped RTMFP connection after a certain period using the xml config files?Message was edited by: Rich Rodecker - Changed Thread title
How do I upgrade Apache 2.2.1 to the latest version in my AMS 5.x installation?
setup :Client Machine (Win 7 ) -----------------Server Machine ( running AMS )1. I have configured a Adobe media server 4.5 on windows 2008 machine (SERVER)2. From the server , I have also configured and also configured the Manifest file . (Waterfall_hds.f4m) . this manifest file has 3 different videos of different bit rate.3. from server machine , I opened the sample video player from server machine using rootinstall/samples/videoplayers/videoplayer.html and able to play the manifest file usinghttp://localhost/hds_vod/waterfall_hds.f4m4. Now , when i go to any of the client machine browser , and type in the same URL , I dont see the video playing ? Do i need a Player ? Flash player is already installed on the client machinehow to play the video from the client browsers ?
I would like to use either the FMS URL (i.e. rtmp://server/application/) or the stream name as a method of authentication.Is it possible to restrict to an application (e.g. livepkgr) based on the FMS URL or the stream name entered in the encoder? This seems to be the method used by YouTube. If not, can the username and password for a stream be saved in a profile.xml file for use by the encoder?
For the past week, since Oct 14, we've been having issues with clients losing connection to our AMS application. We have online classes that include a chat room and sometimes an audio stream from the instructor. This application and its server has been running stable for months... until last week.One of our staff was connected to the app, getting everything set up for a class, and she started complaining of getting disconnected. I looked in the application logs and noticed that the application.onDisconnect was being triggered. However, the client didn't register that it had been disconnected for several seconds afterward. She let me know when she got the "Diconnected" message on her screen, which comes from the NetConnection.onStatus handler.The only other sign of a problem is that in the server's core logs we started getting the following error when we checked bandwidth:> Invalid command message data: unexpected bw response from client 000000001D670170The client number change
Hi all,I'm not familair with Dreamweaver, so perhaps a stupid question:I have a overview page, on mous over on an image a title appears. I'd like to change this title. I check hecked the html file on hte FTP but couldnt change the coding the correct way:current coding with Title : Stils<a href="main/projectpagina_stills.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image15','','images/home/04_stills_roll-over.jpg',1)"><img src="images/home/04_stills.jpg" name="Image15" width="395" height="263" border="0" class="beeld_home_rechts" id="Image15" /></a><br />I want the Title to be Stills (double L)So I thought, let''s change the Name.... but no effect.<a href="main/projectpagina_stills.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Stills','','images/home/04_stills_roll-over.jpg',1)"><img src="images/home/04_stills.jpg" name="Stills" width="395" height="263" border="0" class="beeld_home_rechts" id="Stills" /></a&
Hello everyone,I have making mutli-bitrate streaming in FMS and FFMPGE.In FFMPEG I create 4 bitrate of source video and publish on the FMS through RTMP protocol (rtmp://my-server/livepkgr/mystreamName1?adbe-live-event=liveevent).Now all configuration is work currently but sometimes I get this errors:1- TypeError - Error #10092- Argument Error invalid bitrateThis is my FFMPEG syntaxt to create multi-bitrate:ffmpeg -re -i j:\movie\warz.mkv-preset ultrafast -threads 1 -vcodec libx264 -b:v 720k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 856*360 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation720p?adbe-live-event=relation-preset ultrafast -threads 1 -vcodec libx264 -b:v 600k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 856*360 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/relation360p?adbe-live-event=relation-preset ultrafast -threads 1 -vcodec libx264 -b:v 350
We are leveraging SCORM for our Learning Management System. In as much, we are delivering content to 7,000+ individuals using both iOS and Android/PC; as well as desktop, laptop, tablet, phablet, and smart phone. The question is this, because the internet speed and bandwidth vary we have to leverage Adaptive Bit Rate Streaming. Currently we're using Amazon Web Services Adobe Media Server to Stream our files however if we upload differing bit rates we aren't able to enter in a URL/URI/HTTP with the xml manifest file instructing the player to determine A; if the content is for iOS or Android/Microsoft and B; it's not determining a specific file, put simply whatever we upload is streamed as flash, using RTMP protocol which doesn't work with any Hand-held device because it uses flash (not available on phones) which means that we need to utilize HTTP, but it doesn't matter what I enter into captivate, the streaming service is still utilizing flash. Anyway, moving forward. Here is the soluti
I get this message in my core.xx.log files:Assert failed in .\core\FcRecordedStream.cpp line 2420I would like to know what this error is related to. I assume it is related to the recording or playback of my recorded streams but what exactly? We have problem on the server where stream recording stops after a while, randomly, and I would like to be sure that error has nothing to do with it.I use AMS 5.0.6 on a Windows Server 2008 R2.Any help would be great! Thanks
Hi, i want to know can we restrict Rtmfp to only domain names we want and SWF that comes only from my domain name ... to prevent iframe and embeding my streams in other websites.This feature exists in RMTP but can't find it in RTMFPif yes how can i do it?if No is there another way to secure and prevent my streams to be embeded outside from my website?if yes how can i do it please?Thanks for helping me
Hello,I want to disable SSLv3 in Adobe Media Server 5.0.6. I've tried to change the cipher suite in Adaptor.xml: ALL:!ADH:!LOW:!EXP:!MD5:-SSLv3:@STRENGTHAccording to sslabs report, it disables TLS 1.0 and TLS 1.1 in addition to SSLv3.What is the proper way to disable SSLv3 only?Thanks,Arnaud
Hello!I am using HLS TS Streaming trough JW player for the largest group of users that have flash for streaming video's. Is there an alternative for users without flash? Best regards
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.