如何使用FFMpeg -timestamp语法

时间:2012-09-06 06:04:05

标签: video ffmpeg video-streaming video-processing

enter image description here

嗨,全部!

     ffMpeg -timstamp 

选项有效吗? 07:21:54 07/07/05黑匣子容器中的白色文字。

在ubuntu 12.04中 输入这样的执行。

     ffmpeg -y -f video4linux2 -s vga -r 30 -fs 1M -i /dev/video0 -timestamp now -copyts ./USB1_Test_vga.mp4

但它没有用。

显示视频录制时间还有其他选项吗?

1 个答案:

答案 0 :(得分:11)

曾经有一个drawtext过滤器。

ffmpeg -i in.mp4 -vf "drawtext=fontfile=/usr/share/fonts/truetype/DroidSans.ttf: timecode='09\:57\:00\:00': r=25: \
x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000000@1" -an -y out.mp4

见这里:http://ffmpeg.org/trac/ffmpeg/wiki/FilteringGuide

我相信你可以用类似sprintf的语法替换确切的时间码。

ffmpeg -f video4linux2 -i /dev/video0 -s 640x480 -r 30 -vf \
"drawtext=fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf: \
text='\%T': fontcolor=white@0.8: x=7: y=460" -vcodec libx264 -vb 2000k \
-preset ultrafast -f mp4 output.mp4

见这里: http://einar.slaskete.net/2011/09/05/adding-time-stamp-overlay-to-video-stream-using-ffmpeg/