File: rtsp-server-perl.README.Debian

package info (click to toggle)
librtsp-server-perl 0.06-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 184 kB
  • sloc: perl: 1,072; sh: 28; makefile: 14
file content (20 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
rtsp-server-perl for Debian
---------------------------

Here is a complete example to restream NASA ISS livestream as a RTSP server

First you need a `streamlink` package to retrieve NASA stream and `ffmpeg`
to publish decoded frames to the RTSP server. Then you can use `vlc` to read
the resulting stream from your RTSP server.

# Install requirements
  apt install streamlink ffmpeg vlc

# Re-stream NASA on local RTSP server (server port on 5545)
  streamlink -O http://ustream.tv/channel/iss-hdev-payload original \
    | ffmpeg -re -i pipe:0 -c copy -f rtsp rtsp://127.0.0.1:5545/nasa-earth

# Read the stream from local RTSP server (client port on 554)
  vlc rtsp://127.0.0.1/nasa-earth

 -- Adam Cecile <acecile@le-vert.net>  Mon, 16 Dec 2019 10:58:33 +0100