rodrigopolo

cube-to-equirectangular

Nov 13th, 2021 (edited)
1,364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. ffmpeg \
  4. -y \
  5. -hide_banner \
  6. -i $1 \
  7. -vf "v360=c3x2:e:cubic:in_forder='lfrdbu':in_frot='000313',scale=3840:1920" \
  8. -pix_fmt yuv420p \
  9. -c:v libx264 \
  10. -preset faster \
  11. -crf 21 \
  12. -c:a copy \
  13. -ss 16 \
  14. -t 10 \
  15. -movflags +faststart \
  16. $2
  17.  
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment