-
I'm not familiar with the tools to compile FFmpeg.wasm locally, If someone could point me in the direction of some tutorials / docs to compile the latest version of FFmpeg.wasm to convert Video to GIF only, I will be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I found forking the repo and using GitHub actions to be an easy way to create custom builds. The repo has a GitHub action (here) that builds the project after a push. You can then download the build files (referred to as artifacts) if it is successful. I forked this repo so I could test some small changes and this method worked well. I modified the action slightly (mine is here) so that it packages the UMD version together as 1 artifact for download. |
Beta Was this translation helpful? Give feedback.
I found forking the repo and using GitHub actions to be an easy way to create custom builds. The repo has a GitHub action (here) that builds the project after a push. You can then download the build files (referred to as artifacts) if it is successful. I forked this repo so I could test some small changes and this method worked well. I modified the action slightly (mine is here) so that it packages the UMD version together as 1 artifact for download.