Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. INPUT_STREAM="rtp://@239.35.10.2:10000"
  2. OUTPUT_STREAM="udp://127.0.0.1:1234"
  3.  
  4. DELAY=30
  5. INPUT_RESOLUTION="1280x720"
  6.  
  7. ffmpeg -y -nostdin -f lavfi -i nullsrc=s=${INPUT_RESOLUTION}:d=${DELAY} -an -r 50 -i ${INPUT_STREAM} -filter_complex "concat" -an -r 10 -tune zerolatency -preset fast -vcodec libx264 -f mpegts ${OUTPUT_STREAM}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement