FFCreator icon indicating copy to clipboard operation
FFCreator copied to clipboard

A fast video processing library based on node.js (一个基于node.js的高速视频制作库)

Results 176 FFCreator issues
Sort by recently updated
recently updated
newest added

```go scene1.addAudio({path:path.join(__dirname, "source/voice/1.wav")}); const subtitle = new FFSubtitle({ comma: true, // 是否逗号分割 backgroundColor: '#00219C', color: '#fff', fontSize: 24, x: width / 2, y: height / 2 + 300, // 1....

```javascript const { FFScene, FFText, FFVideo, FFAlbum, FFImage, FFCreator, FFVideoAlbum, FFChart } = require("ffcreator"); const path = require("path"); const outputDir = path.join(__dirname, "./output"); const cacheDir = path.join(__dirname, "./cache"); // 创建FFCreator...

const filmHeader = new FFVideo({ path: asstes.materials.filmHead, width: size.width, height: size.height, x: size.width / 2, y: size.height / 2, }) filmHeader.setLoop(true) creator.on('complete', e => { 这里面的逻辑永远不会触发,进程进入假死状态 })

我写了以下代码,以使元素text3旋转实现倾斜效果。 现在需要对应角度的正切值来实现移动动作,因此求问其中rotate这个属性的单位,目前观察的不像是以角度或弧度为单位。 (或者有更好的实现方法,我的理解并不深入) ``` text3.addAnimate({ from: { rotate: 0, alpha: 0 }, to: { rotate: -19, alpha: 0 }, time: 0.4, delay: 0, ease: 'Quadratic.In' }); ```

Mac M1 下直接运行此样例, 中间的video 就会消失不见 https://github.com/tnfe/FFCreator/blob/master/examples/video.js 此issue 似乎在这个里面提过,不过目前看还没人解决 https://github.com/tnfe/FFCreator/issues/153

对图片格式是有要求吗,目前看png的是正常

webp 类型的网络图片显示不出来

透明通道的视频设置失效

动态折线图lines, 通过fchart.update更新的数据,,没有过渡动画效果。

使用AE实现文字打印特效并导出对应json'文件,在lottie-web测试文件可用,可以正常显示,但是在FFCreator中使用FFLottie生成的视频没有打印特效,请问是什么原因?