New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ffmpy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ffmpy

A simple Python wrapper for FFmpeg

  • 0.5.0
  • PyPI
  • Socket score

Maintainers
1

.. 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 simple FFmpeg <http://ffmpeg.org/>_ command line wrapper. It implements a Pythonic interface for FFmpeg command line compilation and uses Python's subprocess <https://docs.python.org/2/library/subprocess.html>_ to execute the compiled command line.

ffmpy requires Python 3.8 or greater.

Installation

::

pip install ffmpy

Quick example

.. code:: python

from ffmpy import FFmpeg ff = FFmpeg( inputs={'input.mp4': None}, outputs={'output.avi': None} ) ff.run()

This will take the 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 <http://ffmpy.readthedocs.io/en/latest/examples.html>_ section for usage examples.

License

ffmpy is licensed under the terms of MIT license

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc