gpt4 book ai didi

python - 有没有办法通过ffmpeg中的启用功能在最后3秒在视频中添加drawtext过滤器

转载 作者:行者123 更新时间:2023-12-04 23:34:34 25 4
gpt4 key购买 nike

我想问我只想在最后 3 秒内为视频添加 drawtext 过滤器,可以是任何长度的视频,如 2 分钟或 20 分钟,无论如何。我想要 Python 格式的。

最佳答案

使用 MoviePy 您可以获得 durationend 并将其用于 start 的文本 end-3duration-3

from moviepy.editor import *

video = VideoFileClip("input.mp4")

print('duration:', video.duration)

text = TextClip('Hello', fontsize=70, color='white')
text = text.set_position('center')
text = text.set_start(video.end-3)
text = text.set_end(video.end)
#text = text.set_start(video.duration-3)
#text = text.set_end(video.duration)

result = CompositeVideoClip([video, text])
result.write_videofile("output.mp4")
编辑:
ffmpeg-python 相同的方法。
首先我得到持续时间,然后我将它与 enable=f"between(t,{duration-3},{duration})" 一起使用
我使用 x='(w-text_w)/2', y='(h-text_h)/2' 使文本居中。
import ffmpeg

info = ffmpeg.probe('input.mp4')
duration = float(info['format']['duration'])

print('duration:', duration)

(
ffmpeg
.input('input.mp4')
.drawtext(text='Hello', x='(w-text_w)/2', y='(h-text_h)/2', fontsize=70, fontcolor='red', enable=f'between(t,{duration-3},{duration})')
.output('output.mp4')
.run(overwrite_output=True)
)

编辑:
使用 ffmpeg-python 您甚至可以显示程序 ffmpeg 的参数
video = (
ffmpeg
.input(filename)
.drawtext(text='Hello', x='(w-text_w)/2', y='(h-text_h)/2', fontsize=70, fontcolor='red', enable=f'between(t,{duration-3},{duration})')
.output('output.mp4')
)

video.run(overwrite_output=True)

video.view(detail=True) # image

print(video.get_args()) # text
结果:
['-i', 'input.mp4', '-filter_complex', '[0]drawtext=enable=between(t\\,4.036\\,7.036):fontcolor=red:fontsize=70:text=Hello:x=(w-text_w)/2:y=(h-text_h)/2[s0]', '-map', '[s0]', 'output.mp4']
enter image description here

关于python - 有没有办法通过ffmpeg中的启用功能在最后3秒在视频中添加drawtext过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68526561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com