Question / Help Timestamp in Ubuntu

omalov23

New Member
Hello!
Help me please: i need set on video current date and time, but i cant find plugin or script for linux. Something like text gdi+ in Windows systems
 

Tuna

Member
Perhaps the GStreamer plugin can help you out here (found in the plugin section)

Maybe something like this:
Code:
videotestsrc is-live=true pattern=blue ! alpha method=blue ! clockoverlay ! autovideoconvert ! video.

A lot of things can be adjusted here. You should just read on the documentation.

EDIT:
Example:
Code:
videotestsrc is-live=true pattern=blue ! video/x-raw, framerate=1/1, width=400, height=80 ! alpha method=blue ! clockoverlay time-format="%F %T" auto-resize=false font-desc="arial 27" !  video.

clockoverlay.jpg
 
Last edited:
Top