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
4
votes
1 answer

Any .NET API for RED5 Media Server or any other cross platform media server with .NET API?

I need to implement a streaming Audio/Video Client in C# using RED5 Media Server. Can anybody tell me if there is any .NET API available for this??? Also, if there is no API for .NET available, then please guide if there is an open source, cross…
Steve Johnson
  • 3,054
  • 7
  • 46
  • 71
4
votes
1 answer

Streaming avi to a red5 server

I have a problem with Red5 Media Server. I installed it on Windows machine and I'm trying to stream *avi file to the server using ffmeg: ffmpeg -i testfile.avi -re -acodec libfaac -ar 22050 -vcodec libx264 -f flv…
babell00
  • 81
  • 7
4
votes
1 answer

Getting started with RTMFP

I need to implement a realtime connection between 2 or more players, that will play a Flash game. I've read that RTMFP is a good choice to make this connection the best possible (were best=less lag between actions), but, Im quite new to this kind of…
Artemix
  • 8,497
  • 14
  • 48
  • 75
4
votes
2 answers

How to add screen sharing to my app

Are there any off the shelf components for adding a screen sharing feature to my app? I've built real time text chat for a group chat room - now I'd like to have a button where a user can share their screen with the other members of the chat. …
Jim Jones
  • 2,767
  • 4
  • 33
  • 39
4
votes
2 answers

How to install red5 on heroku server

I am trying to build an audio recorder and have 3 questions: Is red5 enough for building an audio recorder? No need for a flash recorder or something? How can I install red5 on heroku server? Is there a tutorial for audio recorder in rails?
gal
  • 929
  • 4
  • 21
  • 39
4
votes
3 answers

Directly upload video captured from webcam

I'm working on a site, which needs to have a feature of users capturing their opinions about a specific topic with their webcam, and uploading them to the server. After a short research, and viewing similar questions like this one I ran out of…
Teo.sk
  • 2,619
  • 5
  • 25
  • 30
4
votes
2 answers

multi threading in red5

I have a working red5 application and I am using MultiThreadedApplicationAdapter but the multi threading doesn't really work. Here is the example, what I want it to do is to have multiple clients call test() and returns without blocking other…
4
votes
2 answers

java: printing current backtrace

is there a way to add a command in Java to add the current backtrace ? I'm writing a red5 application and the appDisconnect function is being called twice. whenever a user changes room. I want to add a function at the beginning of the appDisconnect…
ufk
  • 30,912
  • 70
  • 235
  • 386
4
votes
1 answer

How can I publish a video stream at red5pro in android?

I already have a http video stream coming from an IP camera in my android hotspot. I want to publish that stream in a red5pro server or in another media service. How can I do that? The red5pro sdk examples only use a camera from android. I want to…
4
votes
4 answers

ScreenVideo encoder in Java

Anyone know of a Java video encoder for ScreenVideo (v1 or v2) which is free? I know ffmpeg has a C++ version and Lee Felarca wrote one in AS3; but I really would like to have one in Java. AS3:…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
4
votes
2 answers

Is Red5 production-ready?

I'm considering using Red5 instead of wowza and Flash Media Interactive Server. But it looks like a new project and it hasn't even reached full v1, so I'm worried about using it in a production environment. Has anyone used it in a real production…
devling
  • 291
  • 1
  • 3
  • 6
4
votes
2 answers

SoundTransform panning not working on a rtmp stream with ActionScript 3.0

I'm having a strange problem, I'm using the SoundTransform function to play the sound of an RTMP stream from red5 server only on the left speaker and to lower it's volume with stream.soundTransform = new SoundTransform (0.5,-1.0); on Actionscript…
4
votes
0 answers

Red5 RTMPS failed connection with self signed certificate

I'm using Red5 1.0.3, and trying to accomplish RTMPS over port 8443, with a self-signed certificate. What I've done already: Enabled RTMPS in conf/red5-core.xml Added my self-signed certificate to the keystore and truststore Confirmed that the…
Adam
  • 1,962
  • 2
  • 17
  • 30
4
votes
2 answers

JSP class not found exception

I am trying to run a war file in Red5 0.9.0 server with embedded tomcat-6.0.24. After deployment of WAR file I can access the index page sucessfully. But when I try to access any other jsp page, system throws error…
Chintan Patel
  • 729
  • 3
  • 14
  • 31
4
votes
2 answers

convert rtmp streaming to rtsp and http streaming

i was installed red5 server on ubuntu 12.04 lts for live and vod video streaming. i just want to convert my RTMP protocol stream to RTSP and HTTP protocol stream. i was studied and search about FFMPEG. but i did not understand correctly. so please…
1 2
3
58 59