This repository was archived by the owner on Jan 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed
src/ffmpegio_plugin_numpy Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55
66## [ Unreleased]
77
8- ## [ 1.0.0] - 2022-02-13
8+ ## [ 0.3.1] - 2022-02-13
9+
10+ ### Added
11+
12+ - Added ` squeeze ` argument to ` bytes_to_video ` and ` bytes_to_audio ` hooks
13+ ## [ 0.3.0] - 2022-02-13
914
1015### Added
1116
1217- First release.
1318- A plugin to convert raw media I/O data of ` ffmpegio ` to use ` numpy.ndarray ` objects.
1419
15- [ Unreleased ] : https://github.com/python-ffmpegio/python-ffmpegio/compare/v1.0.0 ...HEAD
16-
20+ [ Unreleased ] : https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.1 ...HEAD
21+ [ v0.3.1 ] : https://github.com/python-ffmpegio/python-ffmpegio/compare/v0.3.0...v0.3.1
Original file line number Diff line number Diff line change 11[metadata]
22name = ffmpegio
3- version = 0.3.0
3+ version = attr: ffmpegio_plugin_numpy.__version__
44description = Media I/O with FFmpeg and NumPy array
55long_description_content_type = text/x-rst
66long_description = file: README.rst
@@ -30,7 +30,7 @@ classifiers =
3030package_dir =
3131 =src
3232install_requires =
33- ffmpegio-core
33+ ffmpegio-core >= 0.3.1
3434 numpy >= 1.20
3535python_requires = >=3.7,
3636packages =ffmpegio_plugin_numpy
Original file line number Diff line number Diff line change 88
99hookimpl = HookimplMarker ("ffmpegio" )
1010
11+ __version__ = "0.3.1"
12+
1113__all__ = [
1214 "video_info" ,
1315 "audio_info" ,
You can’t perform that action at this time.
0 commit comments