Tagged Questions

The live555 library is an Open Source multimedia transport library implementing various IETF standards including RTP/RTCP/RTSP/SIP as well as various codec-specific RTP profiles. The library is primarily written in c++ and can be compiled on many platforms/architectures. It is licensed under the ...

learn more… | top users | synonyms

4
votes
2answers
208 views

How to fix incorrect timestamp calculations? [OpenRtspClient]

My RTSP Source's RTCP SR are not reliable for some of the calculated timestamps of H.264 streams frequently resulting in large negative jumps. Here is an example from the debug log. See how it jumps ...
3
votes
2answers
2k views

Live555 on Android

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 ...
2
votes
0answers
61 views

how to re-run openRTSP programmaticaly

Could you please prompt me how to re-run openRTSP (Live555) programme programmaticaly ? usual scenario example : run openRTSP for any right stream stop openRTSP in the middle of processing re-run ...
2
votes
1answer
2k views

MJPEG streaming and decoding

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 ...
1
vote
0answers
167 views

No such file or directory error while compiling for Android

While am compiling live555 for android using ndk, I got stuck at this error! cd liveMedia ; make make[1]: Entering directory `/home/jomit/Public/jimjh-liveMedia-for-Android-0c18fdd/liveMedia' ...
1
vote
1answer
380 views

Cannot stream with Live555 server - Example not working

Recently I downloaded Live555 server source code from their site. I tried to compile and run testMPEG1or2AudioVideoStreamer.cpp file in the testProgs directory. I compiled the whole project including ...
1
vote
1answer
129 views

Qt Audio playback from Axis Camera

I want to get a RTP audio stream coming from an Axis Camera and then play it back in real time in my Qt project. I'm using Live555 in order to manage the audio stream and decode it with FFMPEG. When ...
1
vote
1answer
2k views

How to configure live555 framework for iphone app devleopment?

I have the live555 framework with me. But don't know how to use it in xcode. please help!
0
votes
1answer
28 views

Compilation of live555 library for iOS simulator

I've compiled live555 library with ./genMakefiles iphoneos make for iOS device, but I can't compile that for iOS simulator. Is anybody has any ideas how to do that? Thanks.
0
votes
0answers
52 views

Streaming webcam

I'm trying to make a server that could deliver live video from my webcam through rtsp, and I would like some opinion on the best way to do. Just before, I programmed a few things with libav and ...
0
votes
2answers
131 views

Wrong Presentation time at H264 streams [Live555 OpenRtspClient]

I modify the OpenRtspClient so that Now instead of writing frames to file I collect them in a queue with incoming presenttaion times Then give the h264 frames to MP4 muxer [ Geraint Davies MP4 mux ...
0
votes
0answers
40 views

Live555 OpenRtspClient destroy client

In openRtspClient i modify shutdown() method: I remove "exit(exitValue)"...Because without exiting the program i try to create new client.... When I use live555 client i see that env object is not ...
0
votes
0answers
80 views

Live555 OpenRTSP Client extern variables-functions- C style callbacks…[ Why it is not in OO ]

I want to modify openRTSPClient so that i can start stop many of them in my program without exit the application....But RTSP Client is full of externs...And externs scope is "Program"... If I put ...
0
votes
0answers
133 views

How do I implement DeviceSource for streaming from webcam in Live555?

I am working on a webcam streaming server project, using Live555 as the server. I need to be able to stream from ordinary USB Webcams, which requires me to implement DeviceSource.cpp as I read on ...
0
votes
0answers
219 views

Live555 OpenRTSP Client : How to delete currrent rtps client properly and start new One

Well, When my OpenRtsp Client lost connection with server, I dispose the old client and other parameters then re-create new client. The Client send Options,Describe request successfully but failed ...
0
votes
1answer
226 views

Live555 OpenRTSP Client Re-Connect to Server

This is the situation: I connect to RTSP Server with Live5555 OpenRtsp Client Then supose that The Server connection is lost To Re-connect the rtsp server, what should i do? Does OpenRtsp Client ...
0
votes
0answers
183 views

Qt browser plugin with Live555 and FFMPEG

I built a widget in Qt that play a rtsp audio/video stream with Live555 and FFMPEG. I works and now I want to include it inside a Qt BrowserPlugin. My plugin at the moment is able to start the RTSP ...
0
votes
0answers
133 views

Android - java.lang.UnsatisfiedLinkError: stream

I know that many questions are already asked on the topic: java.lang.UnsatisfiedLinkError. But the solutions provided by them not seem to solve my error. That is why I am here, asking for help. ...
0
votes
1answer
624 views

Live555 Video Streaming Tutorial

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 ...
0
votes
1answer
146 views

Streaming sequence of image with Live555

Instead of using: videoSink->startPlaying(*videoSource, afterPlaying, videoSink); I'm looking for a way to feed videoSink image by image, one after another. This way I can get my webcam images ...
0
votes
1answer
438 views

Live555 +Cygwin + Android NDK

I am trying to compile live555 for android. My aim is to use it for capturing data from camera and multicasting it. But I am not able to compile the live555 code for android environment using ...
0
votes
1answer
260 views

Streaming more than one file using Live555

Live555 lib has a nice example testOnDemandRTSPServer.cpp This example just stream "one" given file. I want to stream more than one file. Does Live555 has playlist concept or how to stream more than ...
0
votes
1answer
900 views

Using ffmpeg to decode the video stream read from live555

I am trying to use live555 + ffmpeg + GLES to implement my own RTSP client on Android, now I've got live555 compiled and can read RTSP via TCP, which I can see from the capture file from Wireshark. ...
0
votes
2answers
1k views

C++ - RTSP Client with Qt GUI using live555 lib what else do i need?

i like to be able to watch video streaming with my application im doing in Qt first i checked vlc , but its GPL , and also i don't need all its option then i saw it is using live555 that is LGPL for ...