Description
Hello, first of all, congratulations for your project. It is really exciting. I am developing an Android project. I want to redirect the video I play with VLC player to a server on the device with FFMPEG and watch it from the VLC player on another android device. For this, I need an RTSP server on my first device. My goal is to send the video I am watching to rtsp://127.0.0.1:8554 on my first device and watch this video on my second device by entering the ip address of the first device. I have been trying various servers on Github for a long time. In general, the servers either require a surface or codec information. I copy the codec of the video I watch with FFMPEG and send it. The code I use for this is "-re -i "+url+" -vcodec copy -an -f rtsp rtsp://127.0.0.1:8554". how can I integrate the server you use into my own project? Thank you.