live555

JPEG streaming with live555

两盒软妹~` 提交于 2019-11-29 12:26:15
I want to stream JPEG images or motion-JPEG file through live 555. But the problem is that in live 555 implementation for Jpegs is not available. Anyone can help ?? You can find a implementation that was posted to the devel mailing list http://lists.live555.com/pipermail/live-devel/2012-February/014672.html . The code and a sample is available but this modification was rejected by live555 maintainer. First we need to implement an MJPEGVideoSource than can feed a JPEGVideoRTPSink . #include "JPEGVideoSource.hh" class MJPEGVideoSource : public JPEGVideoSource { public: static MJPEGVideoSource*

Anybody has successfully ported live555 to android?

喜你入骨 提交于 2019-11-29 04:11:20
问题 I've been trying to build live555 according to this guide: https://github.com/boltonli/ohbee/tree/master/android/streamer/jni as well as using some other guides, all to no avail. If someone has succeeded in porting live555 to android can you, please, tell me how I can do so? 回答1: I successfully built the project as follows: git clone https://github.com/boltonli/ohbee.git cd ohbee/android/streamer android update project --path . --name "streamer" --target "android-15" cp lib/jnix.jar libs/ #

Live555: X264 Stream Live source based on “testOnDemandRTSPServer”

我怕爱的太早我们不能终老 提交于 2019-11-29 03:59:40
问题 I am trying to create a rtsp Server that streams the OpenGL output of my program. I had a look at How to write a Live555 FramedSource to allow me to stream H.264 live, but I need the stream to be unicast. So I had a look at testOnDemandRTSPServer. Using the same Code fails. To my understanding I need to provide memory in which I store my h264 frames so the OnDemandServer can read them on Demand. H264VideoStreamServerMediaSubsession.cpp H264VideoStreamServerMediaSubsession*

Live555 on Android

南笙酒味 提交于 2019-11-29 02:30:16
I'm trying to get the RTSP video stream play in my Android App using the build-in Videoview/MediaPlayer, but there're always various problems on different ROMs or different network status(UDP packets blocked), it's really annoying so I want to implement my own rtsp client with the live555 source and GLES and ffmpeg. I can figure out how to use ffmpeg and GLES to show a video, but I'm not familiar with live555. Are there any compiled version of live555 on Android? or how could I do that myself? Thanks. I think I found a sample code from github, it works for me. bad news - I think you won't find

How to configure live555 framework for iphone app development?

早过忘川 提交于 2019-11-28 20:58:26
I have the live555 framework with me. How to use it in Xcode? If you haven't managed to configure it yet. Try this command in the terminal in live555 folder make iphoneos It will generate the static libraries for you. 来源: https://stackoverflow.com/questions/5191819/how-to-configure-live555-framework-for-iphone-app-development

MJPEG streaming and decoding

北城余情 提交于 2019-11-27 11:03:43
I want to receive JPEG images from an IP camera (over RTSP). For this, I tried cvCreateFileCapture_FFMPEG in OpenCV. But ffmpeg seems to have some problem with the MJPEG format of the streaming (since it automatically tries to detect the streaming info) and I end up with the following error mjpeg: unsupported coding type I, then, decided to use live555 for streaming. Till now, I can successfully establish streaming and capture (non-decoded) images through openRTSP. The question is how can I do this in my application, e.g., in OpenCV. How can I use openRTSP in OpenCV to get images and save them

MJPEG streaming and decoding

别说谁变了你拦得住时间么 提交于 2019-11-26 17:58:56
问题 I want to receive JPEG images from an IP camera (over RTSP). For this, I tried cvCreateFileCapture_FFMPEG in OpenCV. But ffmpeg seems to have some problem with the MJPEG format of the streaming (since it automatically tries to detect the streaming info) and I end up with the following error mjpeg: unsupported coding type I, then, decided to use live555 for streaming. Till now, I can successfully establish streaming and capture (non-decoded) images through openRTSP. The question is how can I