All Projects → PyAV-Org → Pyav

PyAV-Org / Pyav

Licence: bsd-3-clause
Pythonic bindings for FFmpeg's libraries.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Pyav

V4l2test
v4l2 camera test for android platform.
Stars: ✭ 47 (-96.07%)
Mutual labels:  ffmpeg
Dain Vulkan Gui
AI-Powered video interpolater (eg. 30fps -> 60fps) for Vulkan devices. Based on dain-ncnn-vulkan and ffmpeg
Stars: ✭ 58 (-95.15%)
Mutual labels:  ffmpeg
Sickbeard mp4 automator
Automatically convert video files to a standardized format with metadata tagging to create a beautiful and uniform media library
Stars: ✭ 1,142 (-4.52%)
Mutual labels:  ffmpeg
Learningvideo
【Android 音视频开发打怪升级】系列文章示例代码(A demo to introduce how to develop android video)。本项目将从MediaCodec硬解,FFmpeg软解,OpenGL等方面,全方位讲解如何在Android上进行音视频编辑开发。
Stars: ✭ 1,069 (-10.62%)
Mutual labels:  ffmpeg
Sdl kitchensink
A Simple SDL2 / FFmpeg library for audio/video playback written in C99
Stars: ✭ 53 (-95.57%)
Mutual labels:  ffmpeg
Dokai
Collection of Docker images for ML/DL and video processing projects
Stars: ✭ 58 (-95.15%)
Mutual labels:  ffmpeg
Ffmpeg Build
Script for compile and install a static ffmpeg build with nvenc support.
Stars: ✭ 47 (-96.07%)
Mutual labels:  ffmpeg
Fast Youtube To Mp3 Converter Api
Very Fast YouTube to MP3 & MP4 Converter API
Stars: ✭ 69 (-94.23%)
Mutual labels:  ffmpeg
Avane
Adobe Air Native Extension for building video encoding applications
Stars: ✭ 57 (-95.23%)
Mutual labels:  ffmpeg
Video Transcode Queue
A sample video upload platform as a kubernetes cluster (WIP)
Stars: ✭ 66 (-94.48%)
Mutual labels:  ffmpeg
Webxdownloader
Browser extension to download Webex meeting recordings
Stars: ✭ 52 (-95.65%)
Mutual labels:  ffmpeg
Ffmpeg Encoding Course
An introduction to FFmpeg and its tools
Stars: ✭ 53 (-95.57%)
Mutual labels:  ffmpeg
Rtp Streamer
rtp record and rtp streamer
Stars: ✭ 60 (-94.98%)
Mutual labels:  ffmpeg
Pi Camera In A Box
Stream your Raspberry Pi Camera Module directly to your web browser
Stars: ✭ 49 (-95.9%)
Mutual labels:  ffmpeg
Ydls
youtube-dl HTTP download and transcode service
Stars: ✭ 68 (-94.31%)
Mutual labels:  ffmpeg
Yaxg
capture and record your screen with callbacks
Stars: ✭ 47 (-96.07%)
Mutual labels:  ffmpeg
Express Ffmpeg
nodejs ffmpeg video transcode webui,基于nodejs的云转码系统 https://www.efvcms.com
Stars: ✭ 58 (-95.15%)
Mutual labels:  ffmpeg
Qtfm
Qt File Manager
Stars: ✭ 73 (-93.9%)
Mutual labels:  ffmpeg
Androidaudioconverter
Convert audio files inside your Android app easily. Supported formats: AAC, MP3, M4A, WMA, WAV and FLAC.
Stars: ✭ 1,156 (-3.34%)
Mutual labels:  ffmpeg
Playernx
First homebrew video player for Nintendo Switch! (using ffmpeg libraries)
Stars: ✭ 63 (-94.73%)
Mutual labels:  ffmpeg

PyAV

GitHub Test Status
Gitter Chat Documentation
GitHub Python Package Index Conda Forge

PyAV is a Pythonic binding for the FFmpeg libraries. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible.

PyAV is for direct and precise access to your media via containers, streams, packets, codecs, and frames. It exposes a few transformations of that data, and helps you get your data to/from other packages (e.g. Numpy and Pillow).

This power does come with some responsibility as working with media is horrendously complicated and PyAV can't abstract it away or make all the best decisions for you. If the ffmpeg command does the job without you bending over backwards, PyAV is likely going to be more of a hindrance than a help.

But where you can't work without it, PyAV is a critical tool.

Installation

Due to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on PyPI for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:

pip install av

If you want to use your existing FFmpeg/Libav, the C-source version of PyAV is on PyPI too:

pip install av --no-binary av

Alternative installation methods

Another way of installing PyAV is via conda-forge:

conda install av -c conda-forge

See the Conda quick install docs to get started with (mini)Conda.

And if you want to build from the absolute source (for development or testing):

git clone [email protected]:PyAV-Org/PyAV
cd PyAV
source scripts/activate.sh

# Either install the testing dependencies:
pip install --upgrade -r tests/requirements.txt
# or have it all, including FFmpeg, built/installed for you:
./scripts/build-deps

# Build PyAV.
make

Have fun, read the docs, come chat with us, and good luck!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].