|
|
|
|
|
by demomode
2072 days ago
|
|
I find gstreamer (using gst-launch)[1] a more pleasant experience than ffmpeg. You can't use some expresions on the command line like `x=(w-text_w)/2:y=(h-text_h)` but it can be workaround with some scripting using python bindings for example. Some (simple) text overlay can be acomplished with: gst-launch filesrc location=sample.mp4 \
! decodebin \
! videoconvert \
! textoverlay text="Hello" font-desc="Sans Bold 150px" y-absolute=0.5 \
! autovideosink
1. http://manpages.org/gst-launch |
|