bgrins / videoconverter.js

[UNMAINTAINED] Convert videos in your browser
http://bgrins.github.io/videoconverter.js/
Other
2.34k stars 300 forks source link

Is it possible to implement the drawText command? #56

Open BrentLabasan opened 7 years ago

BrentLabasan commented 7 years ago

"-filters" command on http://bgrins.github.io/videoconverter.js/demo/ shows that drawText isn't a supported filter...I assume implementing it is a lot of hard work?

athlonUA commented 5 years ago

@BrentLabasan Good question. I interesting on this too.

Anyone can help me how to merge the text with the video? Or merge png with video...

akira86071 commented 4 years ago

@BrentLabasan Good question. I interesting on this too.

Anyone can help me how to merge the text with the video? Or merge png with video...

If you want to merge png with video, try "overlay" like this. -i in1.webm -i in2.png -c:v libvpx-vp9 -filter_complex overlay=0:0 out.webm It also works with video and jpg,too. Hope this could help you. ;-)