Skip to content

Commit 2e6a176

Browse files
Update README.md
1 parent 7a54198 commit 2e6a176

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
# H264Sharp
22
Cisco's OpenH264 C++/CLI wrapper with optimised image format conversion support. It is very suitable for realtime streaming over network.
33
- Offers managed and unmanaged API.
4-
- Tested on .NetFramework and NetCore(up to 7).
4+
- Tested on .NetFramework and NetCore(up to 8).
55
- Compatible with OpenCV.(i.e. OpenCVsharp)
66
- Tested on WPF application with camera and screen capture (P2P Videocall).
77
- No memory leaks or GC pressure with bitmaps.
8-
- Simple console application example is provided on repo as an example.
8+
- Simple console application example is provided as an example.
99

1010
### Setup
11-
- Default Constructor will look for `openh264-2.3.1-win32.dll` or `openh264-2.3.1-win64.dll` automatically on executable directory depending on process type.
11+
- Default Constructor will look for `openh264-2.3.1-win32.dll` or `openh264-2.3.1-win64.dll` automatically on executable directory depending on process type(64/32 bit).
1212
- You can setup with a different dll name, constructor is overloaded.
1313
``` c#
1414
decoder = new H264Sharp.Decoder();
1515

1616
encoder = new H264Sharp.Encoder();
17-
encoder.Initialize(width, height, bps: 3_000_000, fps: 30, H264Sharp.Encoder.ConfigType.CameraBasic);
17+
encoder.Initialize(width,
18+
height,
19+
bps: 3_000_000,
20+
fps: 30,
21+
H264Sharp.Encoder.ConfigType.CameraBasic);
1822
```
1923

2024
### Encode

0 commit comments

Comments
 (0)