Advertisement
Guest User

Untitled

a guest
Apr 15th, 2015
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. if [ ! $# = 9 ];
  2. then echo "Usage: createepisode.sh <episode file> <episode file start> <episode file end> <thumbnail 1 file> <thumbnail 1 start> <thumbnail 1 end> <thumbnail 2 file> <thumbnail 2 start> <thumbnail 2 end>"
  3. exit 1
  4. fi
  5.  
  6. ../../ffmpeg -i $1 -i EndCard.mp4 -i $4 -i $7 -filter_complex \
  7. "[2]scale=iw/2.5:ih/2.5 [pip1]; \
  8. [3]scale=iw/2.5:ih/2.5 [pip2]; \
  9. [pip1]fade=t=in:start_time=2.5:d=0.25:alpha=1 [pip1a]; \
  10. [pip2]fade=t=in:start_time=2.5:d=0.25:alpha=1 [pip2a]; \
  11. [pip1a]fade=t=out:start_time=20.2:nb_frames=1:alpha=1 [pip1b]; \
  12. [pip2a]fade=t=out:start_time=20.2:nb_frames=1:alpha=1 [pip2b]; \
  13. [1][pip1b]overlay=main_w/2-overlay_w-10:main_h-overlay_h-320:shortest=1 [pip1]; \
  14. [pip1][pip2b]overlay=main_w/2+10:main_h-overlay_h-320:shortest=1 [pip]; \
  15. [0]select=between(t\,$2\,$3) [main]; \
  16. aevalsrc=0 [silence]
  17. [main] [slience] [pip] concat=n=2:v=1:a=1:shortest=1" \
  18. episode1.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement