Skip to content

Instructions to upgrade to v0.11.0

Kesh Ikuma edited this page Dec 23, 2024 · 1 revision

As of v0.11.0, all ffmpegio related projects are to the ffmpegio package. This effectively deprecates the following distribution packages:

It is recommended to uninstall all ffmpegio packages first before proceeding to avoid package and plugin name conflicts.

pip uninstall ffmpegio ffmpegio-core ffmpegio-pluing-mpl ffmpegio-downloader ffmpegio-static--ffmpeg

(Only specify the packages that are on your system.)

Then reinstall only ffmpegio

pip install ffmpegio

In Python, no modification should be necessary UNLESS your use case needs to read media data as dicts AND you have both ffmpegio and numpy installed. Then, use the new use() function to specify the media reader output format:

import ffmpegio

ffmpegio.use('read_bytes') # 'read_numpy' is the default if numpy is found

# rest of your code...
Clone this wiki locally