mediamtx/bench/publish/start.sh

26 lines
535 B
Bash
Raw Normal View History

2020-09-18 17:59:07 +00:00
#!/bin/sh -e
2020-10-06 11:57:36 +00:00
PUBLISHER_COUNT=20
2020-09-18 17:59:07 +00:00
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