# ffmpy **Repository Path**: pipieger/ffmpy ## Basic Information - **Project Name**: ffmpy - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-10 - **Last Updated**: 2025-09-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README .. image:: https://github.com/Ch00k/ffmpy/workflows/test/badge.svg :target: https://github.com/Ch00k/ffmpy/actions :alt: Tests .. image:: https://codecov.io/gh/Ch00k/ffmpy/branch/master/graphs/badge.svg :target: https://codecov.io/github/Ch00k/ffmpy :alt: Coverage .. image:: https://readthedocs.org/projects/ffmpy/badge/?version=latest :target: http://ffmpy.readthedocs.io/en/latest/?badge=latest :alt: Documentation .. image:: https://img.shields.io/pypi/v/ffmpy.svg :target: https://pypi.python.org/pypi/ffmpy :alt: Latest version ffmpy ===== ffmpy is a simplistic `FFmpeg `_ command line wrapper. It implements a Pythonic interface for FFmpeg command line compilation and uses Python `subprocess `_ module to execute compiled command line. Installation ------------ You guessed it:: pip install ffmpy Quick example ------------- .. code:: python >>> import ffmpy >>> ff = ffmpy.FFmpeg( ... inputs={'input.mp4': None}, ... outputs={'output.avi': None} ... ) >>> ff.run() This will take ``input.mp4`` file in the current directory as the input, change the video container from MP4 to AVI without changing any other video parameters and create a new output file ``output.avi`` in the current directory. Documentation ------------- http://ffmpy.rtfd.io See `Examples `_ section for usage examples. License ------- ffmpy is licensed under the terms of MIT license