├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── scripts ├── build-deps.sh ├── build.sh ├── configure.sh ├── deps │ ├── x264.sh │ └── zlib.sh ├── install.sh └── optimize.sh └── videos ├── video-1080p-60fps-2s.mp4 └── video-15s.avi /.gitignore: -------------------------------------------------------------------------------- 1 | binaryen 2 | wasi-sdk 3 | 4 | build 5 | *.wasm 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/README.md -------------------------------------------------------------------------------- /scripts/build-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/build-deps.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/configure.sh -------------------------------------------------------------------------------- /scripts/deps/x264.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/deps/x264.sh -------------------------------------------------------------------------------- /scripts/deps/zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/deps/zlib.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/optimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/scripts/optimize.sh -------------------------------------------------------------------------------- /videos/video-1080p-60fps-2s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/videos/video-1080p-60fps-2s.mp4 -------------------------------------------------------------------------------- /videos/video-15s.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastiaanYN/FFmpeg-WASI/HEAD/videos/video-15s.avi --------------------------------------------------------------------------------