mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 10:14:58 +00:00
26 lines
535 B
Bash
26 lines
535 B
Bash
#!/bin/sh -e
|
|
|
|
PUBLISHER_COUNT=20
|
|
PUBLISHER_PROTOCOL=tcp
|
|
|
|
#####################################################
|
|
# publishers
|
|
|
|
CONF=""
|
|
CONF="${CONF}pprof: yes\n"
|
|
echo -e "$CONF" > /source.conf
|
|
|
|
/rtsp-simple-server /source.conf &
|
|
|
|
sleep 1
|
|
|
|
for i in $(seq 1 $PUBLISHER_COUNT); do
|
|
ffmpeg -hide_banner -loglevel error \
|
|
-re -stream_loop -1 -i /video.mkv -c copy -f rtsp \
|
|
-rtsp_transport $PUBLISHER_PROTOCOL rtsp://localhost:8554/source$i &
|
|
done
|
|
|
|
sleep 5
|
|
|
|
go tool pprof -text http://localhost:9999/debug/pprof/profile?seconds=15
|