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
1. Fix a bug caused by using `MpegClient.terminate()` when a video is closed by the server.
2. Fix dependency issues and cpp standard issues.
3. Add a quick script for fetching the `FFMpeg` dependencies.
2. Download the FFMpeg dependencies, including `include` and `lib`.
26
+
2. Download the FFMpeg dependencies, including `include` and `lib`. Users could download dependencies manually by checking [the release page :link:](https://github.com/cainmagi/FFmpeg-Encoder-Decoder-for-Python/releases/tag/deps-3.0.0). However, we recommend users to use the following script to get the dependencies quickly:
27
+
28
+
```bash
29
+
python webtools.py
30
+
```
31
+
32
+
This script requires users to install `urllib3`. The `tqdm` is also recommended to be installed.
27
33
28
34
3. The following configurations should be setfor`All` (both debug and release) and `x64`. Open the project by `MpegCoder.sln`. Then configure the following paths of the include directories and the library directories. In both configurations, the first item is required to be modified according to your python path, the second item is required to be modified according to your numpy path.
29
35
| Path | Screenshot |
@@ -51,15 +57,21 @@ The following instructions are used for building the project on Windows with Vis
51
57
52
58
1. Fix a severe memory leaking bugs when using `AVPacket`.
53
59
54
-
2. Support the `MpegServer`. This class is used for serving the online video streams.
60
+
2. Fix a bug caused by using `MpegClient.terminate()` when a video is closed by the server.
61
+
62
+
3. Support the `MpegServer`. This class is used for serving the online video streams.
63
+
64
+
4. Refactor the implementation of the loggings.
65
+
66
+
5. Add `getParameter()` and `setParameter(configDict)` APIs to `MpegEncoder` and `MpegServer`.
55
67
56
-
3. Refactor the implementation of the loggings.
68
+
6. Move `FFMpeg` depedencies and the `OutputStream` class to the `cmpc` space.
57
69
58
-
4. Add `getParameter()`and `setParameter(configDict)` APIs to `MpegEncoder` and `MpegServer`.
70
+
7. Fix dependency issues and cpp standard issues.
59
71
60
-
5. Move `FFMpeg` depedencies and the `OutputStream` class to the `cmpc` space.
72
+
8. Upgrade to `FFMpeg 4.4` Version.
61
73
62
-
6. Upgrade to `FFMpeg 4.4` Version.
74
+
9. Add a quick script for fetching the `FFMpeg` dependencies.
0 commit comments