FFCreator
FFCreator copied to clipboard
A fast video processing library based on node.js (一个基于node.js的高速视频制作库)
我有如下的代码,我为了实现文字的颜色变换,但是当我尝试使用`addAnimate`后,并没有效果,还是from里的颜色。 ```js text.addAnimate({ from: { x, y: ny, color }, to: { x, y: ny, color: activeColor }, time, delay: 0, ease: "Quartic.In" }) ```
prepend before or append after the scene's transition shader? or can I put some global filter on FFCreator? thx.
ffcreator v6.7.5 在TS文件引用的时候 import {FFScene, FFLottie, FFCreator } from 'ffcreator'; 报 FFLottie Module '"ffcreator"' has no exported member 'FFLottie' ,看下声明文件,的确没有 FFLottie 的声明,请问这里是还没加上,还是有其他原因?导致现在TS里使用只能 const {FFScene, FFLottie, FFCreator } = require('ffcreator');
hello 合成的echarts的图表是否可以是3D的?
生成的视频里,文字中的emoji表情符怎么都变成了单色呢?
# 报错信息 [FF] Synthesis stdout:undefined stderr:undefinedInput format rawvideo is not available # 代码 const { FFScene, FFText, FFVideo, FFAlbum, FFCreator,FFImage } = require("ffcreator"); const path = require("path"); const creator =...
The start time of the subtitle text cannot be set to 0 by default; instead, it should range from the beginning time to the end time. #416
I want to set text to center of video, `alignCenter()` didn't do it. It's possible to center text if text width is measured after `setStyle()` then set x coordinate of...
怎么获取FFText元素的实际宽高、动画执行完成后的实际的XY值?
// add custom effect creator.createEffect('customEffect', { from: { opacity: 0, y: 350, rotate: 190, scale: 0.3 }, to: { opacity: 1, y: 200, rotate: 0, scale: 1 }, ease: 'Back.Out',...