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

Like this in code ![image](https://user-images.githubusercontent.com/9611099/154264754-f2c50f90-76d5-4a04-b68b-517541de59e2.png) Or how to add scenes stack?

FFMPEG版本 4.4.1,Ubuntu 20.04,Node 14 ---- 我们用了Lite版本官方demo里面的video.js做参考,将视频和图片进行组合的时候。 sence1 = 原视频,有声音 sence2 = 原图片转的视频 视频合成是没有问题的。但cache中的sence1.mp4将原视频中的音频丢失掉了。 我们试图用API,FFVideo中提供的audio部分设置为true,但组合视频的时候,却又碰到这样的错误提示: TypeError: fvideo1.setAudio is not a function 然后我们就不知道怎么办了。随后我们把官方demo中的lite版本,下载到本地,在上述环境中运行,官方demo中的video.js生成出来的demo,同样没有音频。。。 **请问这大概是什么原因造成的呢?是我们有什么库没有安装?还是Node或其他依赖库的版本问题?** ---- 附注我们运行时的log 第一部分,视频准备: single: ffmpeg -loop 1 -i...

hi, 各位大神,当场景超过一定数量,出现```Maximum call stack size exceeded```错误。错误信息如下: ```javascript FFCreator start FFCreator error: {"type":"error","pos":"preProcessing","error":"Maximum call stack size exceeded"} [FF] Creator production error. FFEvent { type: 'error', pos: 'preProcessing', error: 'Maximum call stack...

ubutnu 2004 安装了如下的包 ,有一块RTX2080的显卡 apt-get install libcairo2-dev libjpeg-dev libpango1.0-dev libgif-dev apt-get install libglvnd-dev libgl1-mesa-dev 如果用GPU的话是不是不需要安装 xvfb ? 按照我的理解,libgl1-mesa-dev 是开源的opengl驱动,应该不用装,可是不安装的话 npm i ffcreator --save 就报错了 请问:如何能把GPU请起来? npm run examples > [email protected]...

webgl.obj : error LNK2019: 无法解析的外部符号 "__declspec(dllimport) public: class std::shared_ptr __cdecl v8::ArrayBuffer::GetB ackingStore(void)" (__imp_?GetBackingStore@ArrayBuffer@v8@@QEAA? AV?$shared_ptr@VBackingStore@v8@@@std@@XZ),函数 "public: __cdecl Nan::TypedArrayContents::TypedArrayContents(class v8::Local)" (??0?$TypedArrayContents@D@Nan@@QEAA@V?$Local@VValue@ v8@@@v8@@@Z) 中引用了该符号 [D:\gy\videos\node_modules\gl\build\webgl.vcxproj] D:\gy\videos\node_modules\gl\build\Release\webgl.node : fatal error LNK1120: 1 个无法解析的外部命令 [D:\gy\videos\node_modules\gl\build\webgl.vcxproj]

Hello guys! I'm trying to create a text with a specific Script font, the text looks cut. Here my code ``` const text = new FFText({ text: title, fontSize: parseInt(titleFontSize...

能否让FFText这个Api,也支持设置宽高 因为,在开发在线制作工具时,每段文字块,会需要自己的背景颜色 ![1634106900393](https://user-images.githubusercontent.com/6290595/137079844-b77a9960-0891-4965-b6b1-e2c91974d3e6.jpg)

## 复现方法: 修改官方demo:examples/vtuber.js,如下图: ![image-20210925170738619](https://user-images.githubusercontent.com/28629101/134766143-99497da0-c8f3-4b2a-bf18-d406d26174dd.png)

![QQ图片20220114185620](https://user-images.githubusercontent.com/15070251/149504859-87135e2b-dcb8-4284-903c-29b240324544.png) 有大神可以看下吗

我是前端,对线程等理解不深。 目前使用egg框架开发后台,在准备部署项目的时候出现了问题。因为ffcreator用到了headless-gl,需要增加一个显示设备给headless-gl做输出绑定,开发模式下xvfb-run -s "-ac -screen 0 1280x1024x24" npm run dev 这样运行可以正常运行。 但是egg开发部署的时候发现没有办法后台运行,我想求助各位大佬,你们在生产环境部署的时候是怎么做的,或者你们以什么方式来运行ffcreator? ============这样可以运行======= xvfb-run -s "-ac -screen 0 1280x1024x24" yarn start yarn run v1.22.15 $ egg-scripts start --port=7001 --env=prod --title=egg-server-zhipianxing...