My current work requires me to stream video using live555. Although it needs to be done in android, I think I can handle the JNI. What I requires now is a good tutorial or blog post about video streaming using live555 in C/C++. If you have any links, please share them.

EDIT: I have already done searching for this on google. But the results are either links to some unanswered questions like this, or some packages of live555.

What I really requires is a simple application or tutorial demonstrating the use of live555 for streaming a video file over LAN or WiFi.

link|improve this question

80% accept rate
2  
How about searching for it on google? Or You are expecting us to search for you? – Als Nov 6 '11 at 7:07
@Als Oh no, I already done searching on google, but I can't find a good reference. That is why I am here. – Jomoos Nov 6 '11 at 7:53
2  
Have you stated that in your Question? If you need answers you should be providing all relevant information,What have you searched? What are your findings? How are the findings not good enough to solve your problem? What exactly is the point that blocks/confuses you? This is not a demand and supply forum really.Show us your effort not just your need/requirement. – Als Nov 6 '11 at 7:58
@Als, agreed, besides it doesn't get much simpler than the provided example applications. – Ralf Nov 6 '11 at 15:22
@Jamoos: the packages or example applications in the live555 library are there exactly for the purpose of showing you how to use the library. – Ralf Nov 6 '11 at 15:23
feedback

2 Answers

up vote 1 down vote accepted

There is none that I know of. The best way to learn the live555 is to work through the provided test executables such as openRTSP, the media server and the various streaming apps. It doesn't get much easier than that. Support is provided via the mailing list which has a pretty fast response time, but as Als indicated in his comments, you would need to be more specific and have a targeted question. You state that you want a simple application that show video streaming over LAN or Wifi and that's exactly what the sample applications are.

  • openRTSP is an application that shows you exactly how to build an RTSP client.
  • The MediaServer application shows you how to build an RTSP server.
  • testMPEG1or2VideoReceiver and testMPEG1or2VideoStreamer is another example of how to stream video.

FYI, the use of live555 on android can be seen in the VLC code. An older version of the VLC code (IIRC around August 2011) automatically compiled live555 as a 3rd party library. However a later version of the code removed it from the default build settings. However if you're comfortable with JNI, you don't have to go this route in any case.

link|improve this answer
feedback

I would start with testprogs/testRTSPClient if you can build or find a RTSP server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.