ffmpegwasm / ffmpeg.wasm

FFmpeg for browser, powered by WebAssembly
https://ffmpegwasm.netlify.app
MIT License
14.01k stars 816 forks source link

`ffmpeg.wasm-core` fails to build in docker #492

Open jimhigson opened 1 year ago

jimhigson commented 1 year ago

Describe the bug Fresh checkout of ffmpeg.wasm-core on main branch n4.3.1-wasm fails to build using bash ./build-with-docker.sh

To Reproduce

git clone git@github.com:ffmpegwasm/ffmpeg.wasm-core.git
cd ffmpeg.wasm-core 
bash ./build-with-docker.sh

Error is:

CMake Error: The source directory "/src/third_party/zlib" does not appear to contain CMakeLists.txt.
benz2012 commented 1 year ago

You seem to be missing step 2 from the README:

git submodule update --init --recursive

Ran the following and the image built just fine for me.