Skip to main content

Video processing library using JAX.

Project description

JaxVidFlow

Video processing pipeline using JAX. Especially suitable for experimenting with custom video processing operations.

Why?

  • FFmpeg has done great things for the community over the past decades, and has been the go-to for automated video processing, but -
    • It's really hard to extend with filters. Writing high performance C code is hard, and very hardware-dependent
    • Only a handful of filters have GPU implementations, and generally using them requires very messy command line options
    • Every new CPU or GPU architecture requires new code
    • Floating point formats not supported, requiring carefully choosing pixel formats to minimize quality loss for multi-stage processing, and different filters support different formats.
  • JAX is a high performance and very user-friendly array computing library.
    • Write simple Numpy expressions, get well-optimised native code performance on CPU/GPU/TPU
    • Very easy to implement most custom operations. As long as you can express it as matrix operations, you are 80% of the way there!
    • Code generation for:
      • CPUs (compiled into Eigen operations with good vectorization for x86, ARM, and other architectures)
      • GPU (NVIDIA CUDA is best supported, AMD ROCm experimental, Intel oneAPI also experimental, Apple Metal Performance Shaders Graph on all Apple GPUs also experimental)
      • Google TPUs
      • Future architectures as they come out, without having to change our code (in theory)
    • We can do everything in floating point. FP is the state of the art for minimal-loss multi-stage video processing, and we can do it very fast with GPUs (and CPUs with SIMD).

Current Status

You can run benchmarks.py to see how fast things are, but it doesn't really have a UI yet (not even a CLI). It's just a library. See examples/process_dive_video.py for a typical pipeline setup for filtering a video.

Implemented functions

  • Decode / encode pipeline using FFmpeg (through PyAV)
    • Reasonably optimised - only about 10% slower than using FFmpeg directly for a straight transcode with hardware encoding
      • For a straight transcode, use FFmpeg instead
    • Supports hardware encoders

Transforms

  • YUV to RGB and back, including chroma subsampling/supersampling
  • Rec709 to linear and back
  • 3D LUT application with trilinear filtering
  • Resizing with Lanczos interpolation (ok, this is really just a one line call to jax.image.resize())
  • Denoising using NL-Means (both pixelwise and blockwise variants implemented)
    • ~50 fps at 4K on NVIDIA RTX 3060 Ti, compared to ~2 fps with FFmpeg's CPU implementation

Installation Instructions

Windows (no GPU-accelerated Jax or encoding)

# Install JaxVidFlow.
pip install JaxVidFlow

Mac

# Install JaxVidFlow.
pip install JaxVidFlow

# Optional: Install JAX with the experimental METAL backend.
pip install jax-metal

Linux (Debian/Ubuntu) or Windows (with WSL2, in an Ubuntu VM)

# Install dependencies.
sudo apt install pkg-config python3 libavformat-dev libavcodec-dev libavdevice-dev \
  libavutil-dev libswscale-dev libswresample-dev libavfilter-dev

# Setup a virtual environment (optional).
python3 -m venv venv

# Activate the virtual environment (optional).
source venv/bin/activate

# Install PyAV from source (this links against system ffmpeg libraries, which is necessary to get hardware-accelerated decoders and encoders).
pip3 install av --no-binary av

# Install JAX (with NVIDIA GPU support).
pip3 install jax[cuda12]

# Or, install CPU-only JAX.
pip3 install jax

# See Jax documentation for installing JAX with experimental backends (eg. AMD ROCm):
# https://jax.readthedocs.io/en/latest/installation.html

Acknowledgements

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jaxvidflow-0.0.7.tar.gz (18.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jaxvidflow-0.0.7-py3-none-any.whl (26.7 kB view details)

Uploaded Python 3

File details

Details for the file jaxvidflow-0.0.7.tar.gz.

File metadata

  • Download URL: jaxvidflow-0.0.7.tar.gz
  • Upload date:
  • Size: 18.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for jaxvidflow-0.0.7.tar.gz
Algorithm Hash digest
SHA256 a3dba5dfd96a998c2797ad6d2d279c5f6cf3b26fab7ac13f233a7245a6c9e7e0
MD5 49015fae41699265249ab4f70bafe6cb
BLAKE2b-256 e5f7d062f935dd8bc527805b05102bc7a7ce9b4c6a5482caf74d3e3a0c221c58

See more details on using hashes here.

File details

Details for the file jaxvidflow-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: jaxvidflow-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for jaxvidflow-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 8fb798786da3d3b213720bbdd8d54afb259d7980f63b7430dbe0de72b9ab0b08
MD5 66ffd4e703d90395ee423146dc33860b
BLAKE2b-256 7a2244bed3dd845bdc68226ada1823dd0bd2e2b958521541b215bb90773add78

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page