2

Me and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8.

I use Flash Media Live Encoder to broadcast to Red5's oflaDemo application and the stream works great, except for the fact that I want the stream to work with iOS. I am developing an app for it, but I still need to convert my stream to Apple's HTTP Live Streaming protocol for it to work. Can anybody help me convert the RTMP stream to MPEG2-TS, because that's the format that mediastreamsegmenter supports? I already have Apple's HTTP Live Streaming Tools installed on the server, so the segmenter's not a problem.

FFmpeg doesn't work, at least not with the code I found here. With it a always get an "Operation not permitted" error. Xuggler doesn't work, not even with a Linux box. Can anybody please help me? I'd really, really appreciate it.

-Reynir Aron

2 Answers2

3

This invocation is what I successfully use to convert a red5 live stream into m3u8 HLS format with TS files:

ffmpeg -re -i "rtmp://domain/oflaDemo/test live=1" -hls_time 10 -hls_wrap 7 -hls_list_size 3 -f hls test.m3u8

Option "-hls_list_size 3" takes care there are 3 TS files listed in the m3u8 file. Option "-hls_wrap 7" takes care the .TS files are automatically removed after 7 files.

So there is no need for other tools, ffmpeg can do the complete job for you. If you do not specify option "-hls_wrap" the complete stream will be saved in TS files of 10 seconds (-hls_time 10).

By the way, I use ffmpeg 1.2.1 on CentOS v5.8 compiled with rtmpdump v2.3 and the latest x264 lib from git://git.videolan.org/x264.git with the following configuration options:

./configure --enable-librtmp --enable-libx264 --enable-gpl
user1839424
  • 251
  • 1
  • 4
  • That code worked on my Linux box, except for the fact that I always get a Segmentation fault (core dumped) error. Can you please help? –  Jun 18 '13 at 20:46
  • Do you use the latest ffmpeg version 1.2.1? Otherwise please consult the ffmpeg mailing list, see: https://lists.ffmpeg.org/mailman/listinfo/ffmpeg-user/ – user1839424 Jun 19 '13 at 08:58
  • I cloned it from git, so I guess I'm using the latest version… –  Jun 19 '13 at 16:56
0

If you'd like to continue using Red5 for your streaming, you could try my HLS plugin, the source may be found here: https://github.com/Red5/red5-hls-plugin

Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131