I’m trying to read H.264 MPEG-TS files and publish a stream from a Java application to Wowza 2.x. I was thinking about using Red5 RTMP implementation. Is there a RTMP library that I can use in Wowza? Any examples that you are willing and able to share?
I think I need to clarify what I’m trying to do. I don’t have an encoder or live video camera. I have TS files that I need to use to create a live stream. This needs to happen in a java application. I am using FFMPEG for this now. But “-re” option forces “real-time” behavior which is not exactly what I want. The application that uses FFMPEG is written in Java. So I need to emulate what FFMPEG is doing to publish a stream in java - I need RTMP java library that would allow me to publish a live stream to Wowza. Does Wowza provide any java library for me to do that? Red5 does have a org.red5.server.stream.message.RTMPMessage and org.red5.server.stream.provider.FileProvider classes for me to follow as examples. I’m hoping for something similar in Wowza.