| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is a fork of ffmpeg, packaged for Zig. Unnecessary files have been deleted, and the build system has been replaced with build.zig.
There are no system dependencies; the only thing required to build this package is Zig.
Zig API bindings are also provided via the "av" module. See doc/examples for API usage examples.
zig fetch --save=ffmpeg https://github.com/allyourcodebase/ffmpeg/archive/refs/tags/7.0.1-5.tar.gz
// build.zig
const ffmpeg_dep = b.dependency("ffmpeg", .{.target = target, .optimize = optimize});Choose one:
Just link ffmpeg:
exe.root_module.linkLibrary(ffmpeg_dep.artifact("ffmpeg"));Add zig bindings with @import("ffmpeg")
exe.root_module.addImport("ffmpeg", ffmpeg_dep.module("av"));More can be added as desired.
These are the instructions to update this package when a new FFmpeg version is released upstream.
This package copies code from upstream ffmpeg project and therefore also copies the original license files, unedited. All the Zig code added on top of this (i.e. build.zig and av.zig) is MIT licensed:
Copyright (c) contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Back | FazBrowse Home | New Git URL |