OnSpecQC
Who It's For Workflow Features Editions QC Checks
Request Evaluation Copy
Legal

Open-Source Corresponding Source

Version 1.1.0 · Last updated June 23, 2026

OnSpecQC incorporates components licensed under the GNU Lesser General Public License (LGPL). In accordance with the applicable LGPL versions, OnSpecQC Software, LLC makes the complete corresponding source for those components — including build configuration, configure scripts, and toolchain specifications sufficient to reproduce the distributed binaries — available at no charge.

Download: onspecqc-oss-source-1.16.2-beta.zip

This written offer is valid for at least three (3) years from the date of the OnSpecQC build you received. For questions or to request a copy by email, contact support@onspecqc.com.

Full license texts and the complete third-party component inventory appear in the application under Help → About → Third-Party Software Attributions & Licenses.

Table of Contents

  1. What is in the archive
  2. 1. In-house FFmpeg build
  3. 2. mpv (libmpv) and python-mpv
  4. 3. LGPL libraries linked into FFmpeg
  5. 4. PyAV and opencv-python (bundled FFmpeg)
  6. 5. fpdf2
  7. 6. Components not included in this archive
  8. Rebuilding the in-house FFmpeg binaries
  9. Reverse engineering

What is in the archive

Each release ships a downloadable archive (onspecqc-oss-source-<version>.zip) containing upstream source tarballs, build scripts, and checksums (SHA256SUMS) for every LGPL component listed below. Components under permissive licenses (MIT, BSD, Apache, ISC, PSF, and similar) are not included; they carry no corresponding-source obligation under those licenses.

FolderContents
ffmpeg/FFmpeg upstream source, build script, version pins, verbatim configure invocation, and build-system patches
mpv/mpv upstream source and libmpv build metadata (LGPL build)
lgpl-sublibs/Source for each LGPL library linked into the in-house FFmpeg build
fpdf2/fpdf2 source at the version shipped with the product
pyav-opencv/Build references for the LGPL FFmpeg libraries bundled inside the PyAV and opencv-python wheels
README.txtPlain-language index for the archive
SHA256SUMSSHA-256 checksums for every file in the archive

1. In-house FFmpeg build

OnSpecQC ships FFmpeg and FFprobe binaries (branded as OnSpecQC Worker and OnSpecQC Worker-probe) built in-house from upstream FFmpeg source. The build is configured as LGPL-only: --enable-gpl and --enable-nonfree are not set, --enable-version3 is not set, and --disable-network is set so network protocol code paths are not compiled in.

FieldValue
UpstreamFFmpeg
Versionn7.1.1
License (shipped binary)LGPL-2.1-or-later
Build scriptIncluded in the archive as ffmpeg/invoke_ffmpeg_build.ps1
Configure recordIncluded as ffmpeg/build-manifest.json

Configure invocation (Windows x64)

The following flags were used to produce the x64 binaries recorded in build-manifest.json:

--target-os=mingw32 --arch=x86_64 --cc=/ucrt64/bin/gcc --cxx=/ucrt64/bin/g++
--pkg-config=/ucrt64/bin/pkg-config
--enable-shared --disable-static --enable-ffmpeg --enable-ffprobe --disable-ffplay
--disable-doc --disable-debug --disable-gpl --disable-nonfree --disable-network
--enable-zlib --enable-asm --enable-x86asm --enable-optimizations
--enable-runtime-cpudetect --extra-cflags='-O3 -march=x86-64-v2 -mtune=generic -ftree-vectorize'
--enable-libzimg --enable-libdav1d --enable-libvpx --enable-libopus --enable-libvorbis
--enable-libtheora --enable-libspeex --enable-libopenjpeg --enable-libwebp --enable-libsoxr
--enable-libmysofa --enable-libass --enable-libbluray --enable-libfreetype --enable-libharfbuzz
--enable-fontconfig --enable-libxml2 --enable-lcms2 --enable-libaom --enable-librav1e
--enable-libsvtav1 --enable-libopenh264 --enable-libkvazaar --enable-libmp3lame
--enable-libtwolame --enable-libvmaf

The Windows ARM64 (win-arm64) bundle uses the same configuration except for toolchain and CPU flags: --arch=aarch64 --enable-neon with -march=armv8-a instead of --enable-x86asm and -march=x86-64-v2. The ARM64 configure line is recorded in build-manifest.json when that architecture is shipped.

Post-build verification confirms that GPL-only and nonfree symbols, encoders, and filters are absent from the distributed binaries.

2. mpv (libmpv) and python-mpv

OnSpecQC uses libmpv for preview playback and the python-mpv binding (LGPL-2.1-or-later option) to integrate it with the application.

FieldValue
Upstream (mpv)mpv-player/mpv
Versionv0.39.0
License (shipped binary)LGPL-2.1-or-later
Build typeLGPL-only (lgpl_mode: true in libmpv-2.dll.buildinfo.json)
Build harnessshinchiro/mpv-winbuild-cmake

The archive includes the mpv source tarball and build metadata. libmpv links FFmpeg dynamically; the FFmpeg source covered in section 1 applies to the FFmpeg libraries mpv uses.

python-mpv source is available upstream at github.com/jaseg/python-mpv. In the shipped application it is packaged as importable Python modules that can be replaced without relinking the application.

3. LGPL libraries linked into FFmpeg

The in-house FFmpeg build links external libraries via --enable-lib*. Of those, the following are licensed under LGPL and have corresponding source included in the lgpl-sublibs/ folder at the exact versions linked into the shipped x64 build:

LibraryVersionLicenseUpstream
libkvazaar2.3.2LGPL-2.1-or-laterultravideo/kvazaar
libmp3lame (LAME)3.100LGPL-2.0-or-laterlame.sourceforge.io
libtwolame0.4.0LGPL-2.1-or-latertwolame.org
libsoxr0.1.3LGPL-2.1-or-latersoxr on SourceForge
libplacebo7.360.1LGPL-2.1-or-laterVideolan libplacebo
libbluray1.4.1LGPL-2.1-or-laterVideolan libbluray

Other libraries linked into FFmpeg (for example libdav1d, libvpx, libopus, libaom, libopenh264, libvmaf) are under BSD, MIT, ISC, or similar permissive licenses and are not separately published in this archive. Their use is documented in the in-app third-party notices.

These LGPL libraries are linked from the MSYS2 UCRT64 toolchain at build time, not vendored inside the FFmpeg source tree, so each requires its own source tarball at the linked version.

4. PyAV and opencv-python (bundled FFmpeg)

OnSpecQC includes the PyAV (av) and opencv-python Python packages. Each wheel bundles its own FFmpeg shared libraries under LGPL-2.1-or-later (dynamic link), separate from the in-house FFmpeg build in section 1.

PackageShipped versionPackage licenseBundled FFmpeg
PyAV (av)17.0.1BSD-3-Clause (bindings)FFmpeg 8.0.1, LGPL-2.1-or-later
opencv-python4.13.0Apache-2.0 (OpenCV)LGPL-2.1-or-later (FFmpeg libs in wheel)

The archive pyav-opencv/ folder contains pointers to:

ReferenceLocation
PyAV source and build recipePyAV-Org/PyAV (tag matching the shipped av version)
opencv-python FFmpeg buildopencv/opencv-python (release matching the shipped version)
Upstream FFmpeg (PyAV bundle)FFmpeg/FFmpeg tag n8.0.1

To verify the FFmpeg version bundled in your installed copy:

python -c "import av; print(av.__version__, av.ffmpeg_version_info)"
python -c "import cv2; print(cv2.__version__)"

5. fpdf2

fpdf2 (LGPL-3.0-or-later) generates PDF reports. The archive includes the fpdf2 source at the shipped version (2.8.7), available from py-pdf/fpdf2.

OnSpecQC is packaged so that fpdf2 ships as separate, importable Python modules in the application directory. You may replace those modules with a modified, interface-compatible build of fpdf2 without relinking the application.

6. Components not included in this archive

The following are intentionally excluded because they are not subject to an LGPL corresponding-source obligation in this distribution, or because source is provided elsewhere:

ComponentReason
PySide6 / QtDynamic link; Qt source is published by The Qt Company for the shipped Qt version
MIT, BSD, Apache, ISC, PSF, and similar componentsPermissive licenses — no LGPL source offer required
PyInstallerBuild-time tool only; not redistributed in the application
MediaInfoBSD-2-Clause
Blackmagic DeckLink SDKProprietary; governed by Blackmagic Design license terms

Rebuilding the in-house FFmpeg binaries

To reproduce the OnSpecQC Worker FFmpeg/FFprobe binaries from the archive:

  1. Extract ffmpeg/ffmpeg-n7.1.1.tar.gz.
  2. Apply the patches in ffmpeg/patches/ if present.
  3. Run ffmpeg/invoke_ffmpeg_build.ps1 on a Windows host with MSYS2 UCRT64 (x64) or CLANGARM64 (ARM64), using the version pins in ffmpeg/pins.env.
  4. Configure with the flags recorded in ffmpeg/build-manifest.json.

The build script enforces three license constraints on every architecture: --disable-gpl, --disable-nonfree, and --disable-network.

Reverse engineering

Nothing in the OnSpecQC End User License Agreement restricts your right to reverse-engineer, decompile, or modify any LGPL-licensed component distributed with this product for the purpose of debugging modifications to that component, as permitted by the applicable version of the GNU Lesser General Public License.

OnSpecQC

Product

Features QC checks Editions Workflow

For Teams

Agencies Post-production

Get Started

Request a Pro evaluation copy Talk to us

All trademarks and brand names are the property of their respective owners and are referenced for identification and compatibility only, without implication of endorsement, affiliation, or sponsorship. Delivery profiles are derived from publicly available specifications and OnSpecQC's engineering interpretation and may not reflect a provider's current requirements. Users are responsible for confirming all delivery requirements with their delivery partners.

Copyright © 2026 OnSpecQC Software · Privacy Policy · Terms & Conditions
Made with ❤️ in Louisiana