STREAMING DE VIDEO POR RTSP CON PLUGIN TAK ICU

Vídeo explicativo

RTSP por el protocolo TCP puede retransmitirse a cualquier sitio y lugar pero no va tan rápido y eficiente como con UDP

  • Link tak-icu
Support Plugins – Google Drive
  • Link rtsp-simple-server
GitHub - aler9/rtsp-simple-server: ready-to-use RTSP / RTMP / HLS server and proxy that allows to read, publish and proxy video and audio streams
ready-to-use RTSP / RTMP / HLS server and proxy that allows to read, publish and proxy video and audio streams - GitHub - aler9/rtsp-simple-server: ready-to-use RTSP / RTMP / HLS server and proxy t...
  • Empezar el servicio de rtsp-simple-server
./rtsp-simple-server
  • Editar el archivo de configuración de rtsp-simple-server
nano rtsp-simple-server.yml
  • Hay que editar rtsp-simple-server.yml y quitar lo de udp, dejándolo así
protocols: [multicast, tcp]
  • Para crear el servicio
sudo mv rtsp-simple-server /usr/local/bin/
sudo mv rtsp-simple-server.yml /usr/local/etc/
nano /etc/systemd/system/rtsp-simple-server.service
[Unit]
After=network.target
[Service]
ExecStart=/usr/local/bin/rtsp-simple-server /usr/local/etc/rtsp-simple-server.yml
[Install]
WantedBy=multi-user.target
sudo systemctl enable rtsp-simple-server
sudo systemctl start rtsp-simple-server