flash-media-server

h.264 live stream

浪子不回头ぞ 提交于 2020-05-28 08:04:37
问题 After reasearching for a few days, i m still lost with this issue: I have a webcam connected over WiFi to my Android device. I wrote an Android app to connect to a specified Socket of the webcam (IP and port). From this Socket i get an InputStream which is already encoded in H.264. Then i redirect this InputStream from the android device to my server, where i managed to decode it to images/frame by using Xuggler. I would like to stream my webcam live to the internet to a flash player or

h.264 live stream

时光毁灭记忆、已成空白 提交于 2020-05-28 08:01:36
问题 After reasearching for a few days, i m still lost with this issue: I have a webcam connected over WiFi to my Android device. I wrote an Android app to connect to a specified Socket of the webcam (IP and port). From this Socket i get an InputStream which is already encoded in H.264. Then i redirect this InputStream from the android device to my server, where i managed to decode it to images/frame by using Xuggler. I would like to stream my webcam live to the internet to a flash player or

adobe media server 4 cost with amazon?

匆匆过客 提交于 2020-01-14 02:32:11
问题 Has anyone tried using flash media server 4 on Amazon web service? I was wondering what your experience was and the costs of running it? 回答1: This Adobe doc (PDF version) gives the answer: Sign-up for AWS with your credit card at http://www.adobe.com/go/learn_fms_aws_order_en and you will see the prices: USD 5.50: One-time setup fee for FMS USD 5.00: Monthly fee for FMS USD 0.44: Hourly charge, giving you 100 RTMFP simultaneous connections Additionally you need to pay the "Amazon EC2 Linux

NetStream.appendBytes

谁都会走 提交于 2020-01-13 11:17:07
问题 I have a netConnection connected to a Flash Media Server. I am trying to use the new appendBytes function from Flash Player 10.1 to stream a local FLV file to FMS. I'm having issues however... Documentation I get online function playFile(data:ByteArray):void { // data is bytearray data from an already loaded FileReference object netStream.play(null); netStream.appendBytesAction(NetStreamAppendBytesAction.RESET_BEGIN); netStream.appendBytes(data); } However, I'm getting an error with the

How to stream over RTMP on Android?

ⅰ亾dé卋堺 提交于 2020-01-12 03:27:11
问题 I'm trying to play video file on a remote server. Video format is flv and server is Flash Media Server3.5. I'm going to connect to server over RTMP and to implement the palyback of video file using Android Media Player. Really,is it possible? Any help is my pleasure. 回答1: http://www.aftek.com/afteklab/aftek-RTMP-library.shtml I found this one, but haven't had much luck, there are very few docs and after jigging it to try and support Video (no examples as i can see) i found that the core

How to relay complex type via NetConnection to FMS?

那年仲夏 提交于 2020-01-06 04:56:45
问题 I need to send complex type object (marked RemoteClass in Flex) via NetConnection to other clients. [RemoteClass] public class ComplexType { public var _someString:String; public var _someInt:int; } ... and using ... _nc = new NetConnection(); _nc.connect("rtmp://localhost/echo/"); _nc.addEventListener(NetStatusEvent.NET_STATUS, _onNetStatus); _nc.client = {}; _nc.client.echoCallback = _echoCallback; var dto:ComplexType = new ComplexType(); dto._someInt = 4; dto._someString = "abrakadabra";

Publish webcam feed to Flash Media Server

匆匆过客 提交于 2020-01-03 00:38:20
问题 I have a fairly high-end webcam (snc-rz25n) that I need to rebroadcast using the Flash Media Server. I can get the picture as MPEG-4 (not h.264). So I need to transcode to h.264 and publish at multiple bitrates to FMS. The only solution I have been able to come up with thus far is to transcode the stream using ffmpeg and then also use ffmpeg to downconvert the stream (for the multiple bitrates) and then publish all of these transcoded streams to FMS via custom Java code (using Red5). Surely

Red5 Security Tutorial

拈花ヽ惹草 提交于 2019-12-30 02:28:06
问题 I am looking for a step by step tutorial on securing Red5 from intrusion. This seems to be a question that comes up alot in a google search, but is never really answered in a way that makes sense to your average flash developer. 回答1: You can secure red5 for Publishing, Playback, or SharedObjects using the security framework. The client does not matter in this case, but if you want to secure oflaDemo for instance you will need to add the security hooks on the backend. Here is the tutorial that

Server to stream RTSP to android

会有一股神秘感。 提交于 2019-12-29 05:37:31
问题 Can Flash Media Server 3.5 serve a video rtsp stream to the Android media player? Or do we need to use Wowza or red5 to serve an rtsp stream to the Android media player rtsp client? Are there any other rtsp servers to consider when the video needs to be viewed on Android (without the Adobe Flash app)? 回答1: Try darwin streaming server. This can stream MPEG-4 and 3GPP. Note that Videoplayer in Android supports RTSP streaming as per 3GPP PSS Streaming specifications. i.e fileformat is 3GP/MP4

FFmpeg Stream Transcoding

左心房为你撑大大i 提交于 2019-12-25 04:56:10
问题 I have got a streaming application that displays the stream sent from a Flash Media Server. I want to grab that stream and transcode it to a output stream with a different bitrate using ffmpeg. Could such kind of thing be done using ffmpeg? 回答1: This will get input from a feed, and transcode it to an MKV file with default audio and video codecs, and 1024k bitrate for the video stream (audio bitrate is specified with '-ab'): ffmpeg -i "http://my_server/video_feed" -b 1024k output.mkv For a