FFmpeg mpegCoder for Python (Linux)
Instruction of this version
This is the first release version that contains all python built files. The details of the compilation are shown in the following table:
File | FFMpeg | Numpy | Python | GCC/G++ | OS |
---|---|---|---|---|---|
mpegCoder_3_2_0_Linux_py310.tar.xz |
5.0 |
1.22.3 |
3.10.4 |
10.2.1 |
Debian 11 |
mpegCoder_3_2_0_Linux_py39.tar.xz |
5.0 |
1.22.3 |
3.9.12 |
10.2.1 |
Debian 11 |
mpegCoder_3_2_0_Linux_py38.tar.xz |
5.0 |
1.22.3 |
3.8.13 |
10.2.1 |
Debian 11 |
mpegCoder_3_2_0_Linux_py37.tar.xz |
5.0 |
1.21.5 |
3.7.13 |
10.2.1 |
Debian 11 |
mpegCoder_3_2_0_Linux_py36.tar.xz |
5.0 |
1.19.5 |
3.6.15 |
10.2.1 |
Debian 11 |
Note that the above versions only show the environment when building mpegCoder
. It does not mean that they are the dependencies of running mpegCoder
. For example, users could use python 3.9.5
and numpy 1.19.5
to run mpegCoder
.
Running the Linux version may be a little bit tricky. Users need to follow the step 5 and 6 in the instructions of the source code 📄. We copy the instructions here:
-
Extract the built module as
mpegCoder.so
, then you could import it in the same directory. If you have built FFMpeg by our script, you do not need any other dependencies when importing the libs. However, if not, you may need to download the lib dependencies 📦 and add thelib
folder to yourLD_LIBRARY_PATH
:mkdir -p /apps/ffmpeg-5.0 cd /apps/ffmpeg-5.0 wget -O- https://github.com/cainmagi/FFmpeg-Encoder-Decoder-for-Python/releases/download/deps-3.2.0/so-linux-ffmpeg_5_0.tar.xz | tar xJ -C "." echo "export LD_LIBRARY_PATH=/apps/ffmpeg-5.0/lib:\$LD_LIBRARY_PATH" >> ~/.bashrc export LD_LIBRARY_PATH=/apps/ffmpeg-5.0/lib:$LD_LIBRARY_PATH
-
Running
mpegCoder
requiresGLIBC>=2.29
. This requirement is not satisfied in some cases. However, if you have built FFMpeg by our script, the requirement would be fulfilled (i.e. you could skip this step). If users are using our pre-built dependencies, users may need to solve this problem byln -sf /apps/ffmpeg-5.0/lib-fix/libm-2.35.so /lib/x86_64-linux-gnu/libm.so.6
Then, users could import the package by
import mpegCoder