fms3

AS3 concatenate rtmp connection string from xml between two functions

旧城冷巷雨未停 提交于 2019-12-24 18:23:44
问题 I keep getting a 'null' for the instance of the application under flash media server. I can't seem to pass the value from one function to another function XML Sample <bsettings> <obj title="instance">19046</owner> <obj title="id">uniqueid</owner> <obj title="name">somename</owner> <obj title="date">08/01/2012</owner> <obj title="gender">female</owner> </bsettings> AS3 Code <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="initConnection(event)">

FMS FLV to mp3/aac/wav

我是研究僧i 提交于 2019-12-24 07:48:28
问题 How can I decode a FLV's audio if it's recorded from a live stream using Flash Media Server and uses NellyMoser codec? I'm writing a script that process several FLVs, using FFmpeg, so I need a command line solution. Any ideas? 回答1: This should work for you, since NellyMoser is supported by FFmpeg. 1. Using mp3 ffmpeg -i yourinput.flv -vn -acodec libmp3lame output.flv 2. Using AAC (switch aac with libfaac depending on which you have loaded) ffmpeg -i yourinput.flv -vn -acodec libfaac output

Create server-side DVR application to be able to record DVR in FMS

佐手、 提交于 2019-12-06 16:00:32
问题 I want to be able to use the DVR compability in FMS3. But to do that I need to implement a server-side DVR application it says in the documentation. The problem is I cannot find any example on this. "You need to add server-side ActionScript to handle the recording and the correct client-side ActionScript to your media player." http://help.adobe.com/en_US/FlashMediaLiveEncoder/3.0/Using/WS0C4F8D5E-0388-4d1e-AE60-D5B3FB1BC682.html Any help about this server-side script would be greatly

Create server-side DVR application to be able to record DVR in FMS

人盡茶涼 提交于 2019-12-04 20:31:46
I want to be able to use the DVR compability in FMS3. But to do that I need to implement a server-side DVR application it says in the documentation. The problem is I cannot find any example on this. "You need to add server-side ActionScript to handle the recording and the correct client-side ActionScript to your media player." http://help.adobe.com/en_US/FlashMediaLiveEncoder/3.0/Using/WS0C4F8D5E-0388-4d1e-AE60-D5B3FB1BC682.html Any help about this server-side script would be greatly appreciated! Regards Niclas I believe this explains the server side script fairly well: http://labs.influxis