Advertisement
Guest User

Untitled

a guest
Aug 7th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ffmpeg -i input.ts -i input2.mov -i input3.ts \
  2. -c:v libx264 -c:a aac \
  3. -b:v 3M -b:a 64k \
  4. -filter_complex " \
  5. color=black:600x55[blank];
  6. [0:v]scale=-2:620[main]; \
  7. [1:v]scale=-2:720[bg]; \
  8. [blank]setsar=1,drawtext=text='#hashtag':fontsize=50:fontfile=Diodrum-Semibold.otf:fontcolor=white:x='(w-tw)/2':y='(h-th)/2',split[txt][alpha]; \
  9. [txt][alpha]alphamerge,rotate=-0.1:ow=rotw(-0.1):oh=roth(-0.1):c=black@0,format=yuva420p[txt]; \
  10. [bg][main]overlay=0:0:shortest=1[v]; \
  11. [v][txt]overlay=1040-(w/2):660-(h/2):shortest=1[v]; \
  12. [v][2]concat=2:1[v];
  13. [0:a][2:a]concat=2:0:1[a]" \
  14. -map "[v]" -map "[a]" \
  15. -t 2 \
  16. -y output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement