Questions tagged [rtsp-server]
18 questions
0
votes
0 answers
Arduino IDE: "No such file or directory" but file exist
I'm trying to compile a sketch in Arduino IDE that was originally written for PlatformIO.
I'm getting a "No such file or directory" error for a file that actually exists. Indeed, I added the file to the sketch.
How can I fix that error?
enter image…

chio
- 1
- 1
0
votes
0 answers
FFMPEG Pipeline
I created an FFMPEG pipeline so that I can stream video frames to an RTSP server. I created a synthetic video for testing where each frame is a green number on a black background. The video plays on my screen but it does not stream to the server…

user20623229
- 1
- 1
0
votes
1 answer
How to response to RTSP Client over TCP in C++
I am writing a custom RTSP server over TCP in C++. Below is my code.
int main(int argc, char const *argv[])
{
int server_fd, new_socket, valread;
struct sockaddr_in address;
int opt = 1;
int addrlen = sizeof(address);
char buffer[1024] =…

O Connor
- 4,236
- 15
- 50
- 91