show-rtmp-in 276 B

12345678910
  1. #!/bin/sh
  2. RTMP_KEY="$(cat /etc/videopc_rtmp_key)"
  3. while true; do
  4. mpv rtmp://localhost:1935/live/"$RTMP_KEY" --no-cache --untimed \
  5. --no-demuxer-thread --video-sync=audio --vd-lavc-threads=1 \
  6. --no-resume-playback --title="rtmp_in"
  7. sleep 0.5
  8. done