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
+13-8
Original file line number
Diff line number
Diff line change
@@ -13,25 +13,25 @@
13
13
14
14
This is a mpegcoder adapted from FFmpeg & Python-c-api.Using it you could get access to processing video easily. Just use it as a common module in python like this.
15
15
16
-
```python
16
+
```python
17
17
import mpegCoder
18
-
```
18
+
```
19
19
20
20
Noted that this API need you to install numpy.
21
21
22
22
An example of decoding a video in an arbitrary format:
23
23
24
-
```python
24
+
```python
25
25
d = mpegCoder.MpegDecoder()
26
26
d.FFmpegSetup(b'inputVideo.mp4')
27
27
p = d.ExtractGOP(10) # Get a gop of current video by setting the start position of 10th frame.
28
28
p = d.ExtractGOP() # Get a gop of current video, using the current position after the last ExtractGOP.
29
29
d.ExtractFrame(100, 100) # Extract 100 frames from the begining of 100th frame.
30
-
```
30
+
```
31
31
32
32
An example of transfer the coding of a video with an assigned codec:
33
33
34
-
```python
34
+
```python
35
35
d = mpegCoder.MpegDecoder()
36
36
d.FFmpegSetup(b'i.avi')
37
37
e = mpegCoder.MpegEncoder()
@@ -45,11 +45,11 @@ An example of transfer the coding of a video with an assigned codec:
45
45
e.EncodeFrame(i) # Encode current frame.
46
46
e.FFmpegClose() # End encoding, and flush all frames in cache.
47
47
d.clear() # Close the input video.
48
-
```
48
+
```
49
49
50
50
An example of demuxing the video streamer from a server:
51
51
52
-
```python
52
+
```python
53
53
d = mpegCoder.MpegClient() # create the handle
54
54
d.setParameter(dstFrameRate=(5,1), readSize=5, cacheSize=12) # normalize the frame rate to 5 FPS, and use a cache which size is 12 frames. Read 5 frames each time.
0 commit comments