Questions tagged [red5]

Red5 is an open source media server written in Java as an alternative to Adobe's proprietary Flash Media Server(FMS).

Red5 is an Open Source media server written in Java that may be used in-place of Adobe FMS or Wowza; it currently supports:

  • Streaming Video Formats (FLV, F4V, MP4, 3GP)
  • Streaming Audio Formats (MP3, F4A, M4A, AAC)
  • Recording Client Streams (FLV and AVC+AAC in FLV container)
  • Shared Objects
  • Live Stream Publishing
  • Remoting
  • Protocols: RTMP, RTMPT, RTMPS, and RTMPE
  • Codecs: Any flash supported codec (PCM, FLV1, ScreenVideo, VP6, NellyMoser, MP3, AAC, AVC/h.264)

Includes plug-in support with several existing applications.

  • NSV streaming
  • RTP/RTSP streaming
  • SIP
  • MPEG/TS streaming (Live and VOD)
  • Security

Red5 installs and runs using Tomcat. Applications are typically compiled as .war files and placed in the $RED5_PATH/webapps folder where the server unpacks them and creates the appropriate folders.

Red5 Project page | Users list | Organization

871 questions
3
votes
3 answers

Video Recording from Browser using Flash, PHP, Red5

I wish to build an application using which I can record video (along with audio) and also audio (only audio preferably in mp3 format). From some research I did, I found I need a client app in flash or flex, a RTMP Server (RED5 preferable as its…
John Wisley
  • 31
  • 1
  • 2
3
votes
0 answers

Using red5recorder in Asp.Net page

I have setup the red5 server on my local machine and want to create a Asp.Net application which will have a recorder module (red5recorder) to enable recording the video using the client webcam and microphone. Have gone through the red5recorder site,…
Chinjoo
  • 2,697
  • 6
  • 28
  • 45
3
votes
1 answer

Diff. between a web server and a media server?

Can some please explain me in-detail. Can't i just upload flv or other media files to my web server and play them on a webpage with embed tags? Why do i need media server for this? Or when do i need a media server?
sam
  • 31
  • 1
3
votes
1 answer

red5 client in android

Is it possible to create a red5 client for android ? I have already used red5 in flash and in java desktop application and I think there is a way to use it in Android. Is there any sample of a red5 live video stream shown on an android view ?
Joel
  • 3,427
  • 5
  • 38
  • 60
3
votes
1 answer

Prevent download attempts of videos in a video server

Any way to achieve this with Red5 and Flash player? Right now this is theoretical only: I deliver streams with verification token that is dynamic for each video. Streams are over RTMPE. When a user asks for a stream, the server generates him a link…
Ron
  • 6,543
  • 4
  • 23
  • 29
3
votes
4 answers

Red5 video recording quality is terrible

I installed Red5 1.0 on EC2 running linux. My goal is to record webcam video from my website -- connect to a user's webcam and save the video to S3. I tried out the video recorder application in the pre-installed demo apps. It works, but when I…
Tom Osborne
  • 31
  • 1
  • 2
3
votes
1 answer

Hold Button On Red5Phone

I have configured Red5Phone on Red5 Server. I am able to connect to Asterisk Server its working fine. I have used Flex as a client. Red5 and Asterisk are on the same server. Now i want a implement a hold button, can any oen please guide me, i am…
Sunil Silumala
  • 917
  • 5
  • 22
3
votes
0 answers

How to connect RAILS with Red5 Server

I am trying to develop an Application with Red5 Server. I did some of the steps: I set up the Red5 server into our local machine (Ubuntu) I installed the MangoDB database locally with Rails configuration. Now My problem is: I am using Jruby(Java…
Anil Gupta
  • 1,155
  • 1
  • 19
  • 26
3
votes
0 answers

Red5 Error "Scope Not Found"

I have created a Red5 server project in Eclipse with the Red5 plugin. But every time i start the server i get an error "scope not found" [WARN] [RTMPConnectionExecutor-4] org.red5.server.net.rtmp.RTMPHandler - Scope not found …
3
votes
2 answers

RTMP Streaming Server implementation: connect/createStream/play message sequence passed, but no video/audio in flashplayer

Hi! Writing RTMP Streaming Server for streaming AVC+AAC video. And it works fine with rtmpdump. But I can't force it to work in flowplayer and other flash video players. The message sequence after handshake is similar to FMS / RED5 / erlyvideo /…
zxcat
  • 2,054
  • 3
  • 26
  • 40
3
votes
1 answer

Scheduled Media Streaming

I have a video that needs to be delivered through streaming, but all viewers need to be synchronized at the same time regardless of when they started the video. If the video starts streaming at 7:00 and someone visits the page at 7:05, they should…
vla
  • 299
  • 1
  • 3
  • 6
3
votes
1 answer

Which codec does Flash use to stream video from web cameras to RTMP, RTMFP servers?

Which codec does Flash use to stream video from web cameras to RTMP, RTMFP servers? What I ment to say: we connect to some server like Red 5, we start streaming video onto it from our flash RIA. In what codec video is traveling from RIA to Red 5?
Rella
  • 65,003
  • 109
  • 363
  • 636
3
votes
1 answer

Annoyance - Warning when using Mina 2.x with Spring 3.x

Anyone know of a good way to get rid of this warning, besides increasing the log level? Mind you everything in the server still works as expected, but this occurs every time the server is restarted. o.s.b.f.c.CustomEditorConfigurer - Passing…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
3
votes
1 answer

Integrate Red5 Server in existing Java application

In my Java Application, I need to create an RTMP (or RTSP) livestream server and feed raw RGB image data to it. I'd like to use the Red5 Server project, as it is available via Maven and the Apache 2.0 license fits my needs. However, I haven't found…
CrushedPixel
  • 1,152
  • 2
  • 13
  • 26
3
votes
0 answers

Publish RTMP stream to Red5 Server form iOS camera

Please look at following code, I have transformed CMSampleBufferRef into AV_CODEC_ID_H264 but I don't know how to transmit it to Red5 server. Thanks, - (void) captureOutput:(AVCaptureOutput *)captureOutput …