{"library":"python-ffmpeg","title":"python-ffmpeg","description":"A Python binding for FFmpeg that provides both synchronous and asynchronous APIs to transcode, process, and stream media files. Current version is 2.0.12, with active development and regular releases.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install python-ffmpeg"],"cli":null},"imports":["from ffmpeg import FFmpeg","from ffmpeg.progress import Progress"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import asyncio\nfrom ffmpeg import FFmpeg\n\nasync def main():\n    ffmpeg = FFmpeg()\n    ffmpeg.input('input.mp4')\n    ffmpeg.output('output.mp4')\n    await ffmpeg.execute()\n\nasyncio.run(main())","lang":"python","description":"Basic async usage: transcode an MP4 file.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}