I am making android app to add timestamp to video using FFMPEG library and also it works fine but it add timestamp using by default date time format provided by FFMPEG.
it's uses YYYY-MM-DD HH:MM:SS
format for timestamp
where android provide different date & time format Click here for examples
ex: I want to use "EEE, MMM d, ''yy"
date format for timestamp.
How to do that?
I an using this FFMPEG Command:
ffmpeg -y -i input.mp4 -vf "drawtext=fontfile=roboto.ttf:fontsize=36:fontcolor=yellow:text='%{pts\:gmtime\:1456007118}'" -preset ultrafast -f mp4 output.mp4