This repository was archived by the owner on Jan 19, 2025. It is now read-only.
File tree 3 files changed +12
-5
lines changed
src/ffmpegio_plugin_numpy
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
5
5
6
6
## [ Unreleased]
7
7
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
9
14
10
15
### Added
11
16
12
17
- First release.
13
18
- A plugin to convert raw media I/O data of ` ffmpegio ` to use ` numpy.ndarray ` objects.
14
19
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 1
1
[metadata]
2
2
name = ffmpegio
3
- version = 0.3.0
3
+ version = attr: ffmpegio_plugin_numpy.__version__
4
4
description = Media I/O with FFmpeg and NumPy array
5
5
long_description_content_type = text/x-rst
6
6
long_description = file: README.rst
@@ -30,7 +30,7 @@ classifiers =
30
30
package_dir =
31
31
=src
32
32
install_requires =
33
- ffmpegio-core
33
+ ffmpegio-core >= 0.3.1
34
34
numpy >= 1.20
35
35
python_requires = >=3.7,
36
36
packages =ffmpegio_plugin_numpy
Original file line number Diff line number Diff line change 8
8
9
9
hookimpl = HookimplMarker ("ffmpegio" )
10
10
11
+ __version__ = "0.3.1"
12
+
11
13
__all__ = [
12
14
"video_info" ,
13
15
"audio_info" ,
You can’t perform that action at this time.
0 commit comments