Advertisement
Guest User

Untitled

a guest
Oct 6th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.61 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. mkdir ~/public_html/gop2
  4.  
  5. ffmpeg \
  6. -hide_banner \
  7. -y \
  8. -threads 0 \
  9. -probesize 1G \
  10. -channel_layout stereo \
  11. \
  12. -f decklink \
  13. -bm_v210 1 \
  14. -channels 2 \
  15. -i 'DeckLink Studio 4K@9' \
  16. \
  17. -vf yadif=1 \
  18. -pix_fmt yuv420p10le \
  19. -force_key_frames "expr:gte(t,n_forced*2)" \
  20. -sc_threshold 0 \
  21. -r 30000/1001 \
  22. -c:v libx264 \
  23. -b:v 3500k \
  24. -maxrate 4000k \
  25. -preset veryfast \
  26. -profile:v high422 \
  27. -bufsize 3500k \
  28. \
  29. -c:a aac \
  30. -b:a 128k \
  31. -ac 2 \
  32. \
  33. -f segment \
  34. -segment_time 60 \
  35. -segment_atclocktime 1 \
  36. -reset_timestamps 1 \
  37. -strftime 1 \
  38. ~/public_html/gop2/gop2-5-%Y%m%d-%H%M%S%z-1080p.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement