Skip to content

Commit d7ea4c8

Browse files
committed
3.2.1
1. Fix an issue caused by the missing dependency `libcrypto.so.1.1`. This fixture is only required by the Linux version. 2. Format the PyPI release script.
1 parent 175192e commit d7ea4c8

8 files changed

+29
-16
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The script will keep updated with the newest releases of the pre-compiled module
2323

2424
| `mpegCoder` | Uploaded |
2525
| :-----------: | :--------: |
26+
| `3.2.1` | :heavy_check_mark: |
2627
| `3.2.0` | :heavy_check_mark: |
2728
| `3.1.0` | :heavy_check_mark: |
2829

README_PYPI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ With this package, users could:
3333
However, users could not work with this project in such cases:
3434

3535
* Platform limited. Currently, we only support Linux and Windows. The Linux release is pre-compiled on Debian. It has been only tested in Ubuntu, Debian and Windows. In other cases, the pre-compiled library may not work. Users may need to compile the package by themselves.
36-
* Version limited. Currently, our project only works with FFMpeg `4.4`. Users need to download the dependent dynamic libraries to make the package work. The legacy versions of this project supports FFMpeg `3.3`, `3.4.2` and `4.0`. However, the legacy built packages are not technically supported now.
36+
* Version limited. Currently, our project works with FFMpeg `4.4`, and `5.0`. Users need to download the dependent dynamic libraries to make the package work. The `pip` version is able to download the libraries automatically. The legacy versions of this project supports FFMpeg `3.3`, `3.4.2` and `4.0`. However, the legacy built packages are not technically supported now.
3737
* Audio not supported. Although the original FFMpeg supports both video and audio streams, our project only works on video streams. For example, if a video contains audio streams, our package would omit all audio frames in the bottom level. In other words, you **could not** perform audio analysis now. In the future (`v4`), we may support the audio frame analysis.
3838
* Filters not supported. Although the original FFMpeg supports some video processing tools ([`avfilter`][link-avfilter] and [`postproc`][link-postproc]), our implementation drops these modules. Instead, we suggest that users should process the frames with [pillow][pip-pillow] or [openCV][pip-opencv]. On the other hand, our implementation still supports frame scaling and re-sampling (supported by [`swscale`][link-swscale] and [`swresample`][link-swresample]).
3939

mpegCoder-pypi.code-workspace

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
"python.linting.pylintArgs": [
1515
"-d", "C0301"
1616
],
17-
"cSpell.enabled": true
17+
"cSpell.enabled": false,
18+
"python.linting.enabled": true,
19+
"python.linting.flake8Enabled": true,
20+
"python.formatting.provider": "black"
1821
}
1922
}

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
urllib3
1+
urllib3>=1.26.2
22
tqdm>=4.50.0
33
setuptools>=50.3.2

scripts/init_linux.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
import ctypes
1818
from . import webtools
1919

20-
__verion__ = '3.2.0'
20+
__verion__ = '3.2.1'
21+
__inner_version__ = '3.2.0'
2122
PY_VERSION = sysconfig.get_python_version()
2223

2324

@@ -68,11 +69,14 @@ def add_dependencies(self, *names):
6869
if not os.path.isfile(os.path.join(basedir, 'mpegCoder.so')):
6970
webtools.download_tarball(
7071
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
71-
'{0}-linux'.format(__verion__),
72-
get_release_name(__verion__, PY_VERSION),
72+
'{0}-linux'.format(__inner_version__),
73+
get_release_name(__inner_version__, PY_VERSION),
7374
path=basedir, mode='auto', verbose=True, token=''
7475
)
75-
if not os.path.isdir(os.path.join(basedir, 'lib')):
76+
if (
77+
(not os.path.isdir(os.path.join(basedir, 'lib'))) or # noqa: W504
78+
(not os.path.isdir(os.path.join(basedir, 'lib', 'libcrypto.so.1.1')))
79+
): # Fix a missing dependency problem caused by libssh.
7680
webtools.download_tarball(
7781
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
7882
'deps-3.2.0', 'so-linux-ffmpeg_5_0.tar.xz',
@@ -90,7 +94,7 @@ def add_dependencies(self, *names):
9094
'libXdmcp.so.6', 'libbsd.so.0', 'libmd.so.0',
9195
)
9296
__dependencies.add_dependencies(
93-
'libsrt.so.1.4', 'libssh.so.4'
97+
'libsrt.so.1.4', 'libssh.so.4', 'libcrypto.so.1.1',
9498
)
9599
__dependencies.add_dependencies(
96100
'libopencore-amrwb.so.0', 'libogg.so.0', 'libmpg123.so.0',

scripts/init_win.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
import sysconfig
1717
from . import webtools
1818

19-
__verion__ = '3.2.0'
19+
__verion__ = '3.2.1'
20+
__inner_version__ = '3.2.0'
2021
PY_VERSION = sysconfig.get_python_version()
2122

2223

@@ -37,7 +38,7 @@ def get_release_name(mpegcoder_ver='3.x', python_ver='3.6'):
3738
if not os.path.isfile(os.path.join(basedir, 'mpegCoder.pyd')):
3839
webtools.download_tarball(
3940
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
40-
__verion__, get_release_name(__verion__, PY_VERSION),
41+
__inner_version__, get_release_name(__inner_version__, PY_VERSION),
4142
path=basedir, mode='auto', verbose=True, token=''
4243
)
4344
if not os.path.isfile(os.path.join(basedir, 'avcodec-59.dll')):

setup.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def find_packages(path=('.', ), prefix=''):
4343
yield name
4444

4545

46-
VERSION = '3.2.0'
46+
VERSION = '3.2.1'
47+
DEPENDENCY_VERSION = '3.2.0'
4748
PUBLISH_VERSION = ''
4849
# PUBLISH_VERSION Should begin from '', each failed attmpt, it need to be
4950
# changed as '-b', '-c', ...
@@ -112,11 +113,14 @@ def fetch_dependencies(python_ver='3.6', is_linux=False, target_path='.'):
112113
if not os.path.isfile(os.path.join(target_path, 'mpegCoder.so')):
113114
webtools.download_tarball(
114115
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
115-
'{0}-linux'.format(VERSION),
116-
get_release_name(VERSION, python_ver, is_linux),
116+
'{0}-linux'.format(DEPENDENCY_VERSION),
117+
get_release_name(DEPENDENCY_VERSION, python_ver, is_linux),
117118
path=target_path, mode='auto', verbose=True, token=''
118119
)
119-
if not os.path.isdir(os.path.join(target_path, 'lib')):
120+
if (
121+
(not os.path.isdir(os.path.join(target_path, 'lib'))) or # noqa: W504
122+
(not os.path.isdir(os.path.join(target_path, 'lib', 'libcrypto.so.1.1')))
123+
): # Fix a missing dependency problem caused by libssh.
120124
webtools.download_tarball(
121125
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
122126
'deps-3.2.0', 'so-linux-ffmpeg_5_0.tar.xz',
@@ -126,7 +130,7 @@ def fetch_dependencies(python_ver='3.6', is_linux=False, target_path='.'):
126130
if not os.path.isfile(os.path.join(target_path, 'mpegCoder.pyd')):
127131
webtools.download_tarball(
128132
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
129-
VERSION, get_release_name(VERSION, python_ver, is_linux),
133+
DEPENDENCY_VERSION, get_release_name(DEPENDENCY_VERSION, python_ver, is_linux),
130134
path=target_path, mode='auto', verbose=True, token=''
131135
)
132136
if not os.path.isfile(os.path.join(target_path, 'avcodec-59.dll')):

webtools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
try:
2626
from tqdm import tqdm
27-
wrapattr=tqdm.wrapattr
27+
wrapattr = tqdm.wrapattr
2828
except ImportError:
2929
import contextlib
3030

0 commit comments

Comments
 (0)