RtspLibrary
RtspLibrary copied to clipboard
Android library based on FFMpeg for playing given RTSP endpoint.
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"   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!