You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-10
Original file line number
Diff line number
Diff line change
@@ -69,20 +69,13 @@ The following instructions are used for building the project on Windows with Vis
69
69
70
70
This script requires users to install `urllib3`. The `tqdm` is also recommended to be installed.
71
71
72
-
4. Building `mpegCoder` requires `GLIBC>=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 by
5. Build `mpegCoder` by running the following script. The built file would be stored in`./build`. If you has not fetched the dependencies in the step 2, running the `setup.py` may trigger an event for fetching the online dependencies.
72
+
4. Build `mpegCoder` by running the following script. The built file would be stored in`./build`. If you has not fetched the dependencies in the step 2, running the `setup.py` may trigger an event for fetching the online dependencies.
80
73
81
74
```shell
82
75
python setup.py build
83
76
```
84
77
85
-
6. Rename 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 :package:](https://github.com/cainmagi/FFmpeg-Encoder-Decoder-for-Python/releases/download/deps-3.0.0/so-linux-ffmpeg_4_4.tar.xz) and add the `lib` folder to your `LD_LIBRARY_PATH`:
78
+
5. Rename 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 :package:](https://github.com/cainmagi/FFmpeg-Encoder-Decoder-for-Python/releases/download/deps-3.0.0/so-linux-ffmpeg_4_4.tar.xz) and add the `lib` folder to your `LD_LIBRARY_PATH`:
86
79
87
80
```shell
88
81
mkdir -p /apps/ffmpeg-4.4
@@ -92,7 +85,7 @@ The following instructions are used for building the project on Windows with Vis
If you want to run the `mpegCoder` with a different environment (which means you have compiled `mpegCoder`in another environment), you still need to setup the dependencies by this step. Running FFMpeg still requries `GLIBC>=2.29`, so you may need to add the dependency by
88
+
6. Running `mpegCoder` requires `GLIBC>=2.29`. This requirement is not satisfied in some cases. However, ifyou 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 by
0 commit comments