RtspLibrary icon indicating copy to clipboard operation
RtspLibrary copied to clipboard

Android library based on FFMpeg for playing given RTSP endpoint.

Results 6 RtspLibrary issues
Sort by recently updated
recently updated
newest added

Instead of the for loop to create the bitmap in the java code, use this: `IntBuffer intBuf = ByteBuffer.wrap(frame).order(ByteOrder.BIG_ENDIAN).asIntBuffer(); int[] pixels = new int[intBuf.remaining()]; intBuf.get(pixels); bmp = Bitmap.createBitmap(pixels, width, height,...

跑起来了,但是直接OOM了

when a call `rtspClient.dispose();` application gets crash with below log. ``` new Thread(new Runnable() { @Override public void run() { rtspClient.play(loadURL); } }).start(); ``` for Line ` rtspClient.play(loadURL);` ``` 08-18...

hello, i would like to ask you how can i add to th code to be ble to stream the audio thx

Hi Team After using this library i am getting couldn't find "librtsp.so" ![16775879006992656306035962080899](https://user-images.githubusercontent.com/117287678/221856320-4e86fec0-743a-4f9b-b243-28c622d748a9.jpg) ![16775879308302848815599880307634](https://user-images.githubusercontent.com/117287678/221856376-c209a500-6728-4e4b-96e5-7b4b019809fe.jpg) Can anyone please me finding this library

Hi, In C++ code, you have: ` av_dict_set(&option, "rtsp_transport", "tcp", 0);` Why not UDP? (if I change to UDP, it will not work). Thanks!