我正在尝试使用带节点的fluent-ffmpeg旋转视频上动态添加的文本。我在他们的文档中找到了很多有关字体大小,字体颜色,位置的选项,但没有关于文本旋转的选项。是否有可能只旋转文本?
input: 'output_part1.mp4',
filters: [{
filter: 'drawtext',
options: {
text: 'HY',
fontfile: 'Canting_Regular_DEMO.ttf',
x: 'main_w / 2 - text_w / 2',
y: '475',
fontcolor: defaultColor,
fontsize: 142,
enable: 'between(t, 0 , 5.75)',
//ex: angle: '45'
}
}]