Skip to content

Commit ffd6ba8

Browse files
committed
Updated readme.
1 parent af63dde commit ffd6ba8

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Published introduction article: ["Easy to implement video image capture with Fla
131131

132132
.NET platforms supported are as follows (almost all!):
133133

134-
* .NET 8 to 5 (`net8.0` and etc)
134+
* .NET 9 to 5 (`net9.0` and etc)
135135
* .NET Core 3.1, 3.0, 2.2, 2.1, 2.0 (`netcoreapp3.1` and etc)
136136
* .NET Standard 2.1, 2.0, 1.3 (`netstandard2.1` and etc)
137137
* .NET Framework 4.8, 4.6.1, 4.5, 4.0, 3.5 (`net48` and etc)
@@ -141,6 +141,7 @@ Platforms on which capture devices can be used:
141141
* Windows (DirectShow devices, tested on x64/x86)
142142
* Windows (Video for Windows devices, tested on x64/x86)
143143
* Linux (V4L2 devices, supported on x86_64/i686/aarch64/armv7l/mips)
144+
* OSX (AVFoundation devices, supported on x86_64/arm64)
144145

145146
## Tested devices
146147

@@ -155,6 +156,7 @@ Verified capture devices / cameras:
155156
* Microsoft LifeCam Cinema HD720 (Windows/Linux)
156157
* Unnamed cheap USB capture module (Windows/Linux)
157158
* Spirer RP28WD305 (Linux)
159+
* Magewell Pro Capture, Eco Capture, USB Capture Series (Windows)
158160

159161
Verified computers:
160162

@@ -170,13 +172,13 @@ Verified computers:
170172
* Acer Aspire One ZA3 inside camera (i686, Linux)
171173
* Imagination Creator Ci20 (mipsel, Linux)
172174
* Radxa ROCK5B (aarch64, Linux)
173-
* Loongson-LS3A5000-7A2000-1w-EVB-V1.21 (loongarch64, Linux)
174175

175176
Couldn't detect any devices on FlashCap:
176177

177178
* Surface2 (arm32, Windows RT 8.1 JB'd)
178179
* Any devices are not found, may not be compatible with both VFW and DirectShow.
179-
180+
* Loongson-LS3A5000-7A2000-1w-EVB-V1.21 (loongarch64, Linux)
181+
* A port was done in the past but it is broken (see #158).
180182

181183
----
182184

@@ -876,6 +878,13 @@ for the Windows environment and are not compatible with the variation for target
876878

877879
----
878880

881+
## Contributions
882+
883+
Here is a list of people who have made major contributions to FlashCap. Thank you!
884+
885+
* Yoh Deadfall ([@YohDeadfall](https://github.com/YohDeadfall)) : Port to Mac OSX AVFoundation API
886+
* Felipe Ferreira Quintella ([@ffquintella](https://github.com/ffquintella)) : Port to Mac OSX AVFoundation API
887+
879888
## License
880889

881890
Apache-v2.
@@ -885,6 +894,10 @@ Apache-v2.
885894

886895
## History
887896

897+
* 1.11.0:.
898+
* Mac OSX AVFoundation API is now supported [#45](https://github.com/kekyo/FlashCap/issues/45) .
899+
We continue to welcome your help as we still have a few cases remaining in the porting status.
900+
* Added .NET 9.0 tfm assembly.
888901
* 1.10.0:
889902
* Supported for NV12 format transcoding. [#132](https://github.com/kekyo/FlashCap/issues/132)
890903
* Supported buffer pooling. [#135](https://github.com/kekyo/FlashCap/issues/135) [#138](https://github.com/kekyo/FlashCap/issues/138)

README_ja.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ await deviceObservable.StartAsync();
132132

133133
対応する.NETプラットフォームは以下の通りです(ほぼ全てです!):
134134

135-
* .NET 8 to 5 (`net8.0` and etc)
135+
* .NET 9 to 5 (`net9.0` and etc)
136136
* .NET Core 3.1, 3.0, 2.2, 2.1, 2.0 (`netcoreapp3.1` and etc)
137137
* .NET Standard 2.1, 2.0, 1.3 (`netstandard2.1` and etc)
138138
* .NET Framework 4.8, 4.6.1, 4.5, 4.0, 3.5 (`net48` and etc)
@@ -142,6 +142,7 @@ await deviceObservable.StartAsync();
142142
* Windows (DirectShowデバイス, x64/x86)
143143
* Windows (Video for Windowsデバイス, x64/x86)
144144
* Linux (V4L2デバイス, x86_64/i686/aarch64/armv7l/mips)
145+
* OSX (AVFoundationデバイス, x86_64/arm64)
145146

146147
## テスト済みデバイス
147148

@@ -156,6 +157,7 @@ await deviceObservable.StartAsync();
156157
* Microsoft LifeCam Cinema HD720 (Windows/Linux)
157158
* Unnamed cheap USB capture module (Windows/Linux)
158159
* Spirer RP28WD305 (Linux)
160+
* Magewell Pro Capture, Eco Capture, USB Capture Series (Windows)
159161

160162
確認したコンピューター:
161163

@@ -171,13 +173,13 @@ await deviceObservable.StartAsync();
171173
* Acer Aspire One ZA3 inside camera (i686, Linux)
172174
* Imagination Creator Ci20 (mipsel, Linux)
173175
* Radxa ROCK5B (aarch64, Linux)
174-
* Loongson-LS3A5000-7A2000-1w-EVB-V1.21 (loongarch64, Linux)
175176

176177
確認した、動作しない環境:
177178

178179
* Surface2 (arm32, Windows RT 8.1 JB'd)
179180
* デバイスが見つかりませんでした。VFWとDirectShowの両方に対応していない可能性があります。
180-
181+
* Loongson-LS3A5000-7A2000-1w-EVB-V1.21 (loongarch64, Linux)
182+
* 過去に移植が行われましたが壊れています (#158を参照)
181183

182184
----
183185

@@ -808,6 +810,13 @@ Windows環境に最適化されていて、ターゲットのABIと互換性が
808810

809811
----
810812

813+
## 貢献
814+
815+
FlashCapへの大きな貢献をして頂いた方のリストです。ありがとうございます。
816+
817+
* Yoh Deadfall ([@YohDeadfall](https://github.com/YohDeadfall)) : Mac OSX AVFoundation APIへの移植
818+
* Felipe Ferreira Quintella ([@ffquintella](https://github.com/ffquintella)) : Mac OSX AVFoundation APIへの移植
819+
811820
## License
812821

813822
Apache-v2.
@@ -817,6 +826,10 @@ Apache-v2.
817826

818827
## 履歴
819828

829+
* 1.11.0:
830+
* Mac OSXAVFoundation APIに対応しました [#45](https://github.com/kekyo/FlashCap/issues/45) 。
831+
移植ステータスにはまだ残件があるため、引き続き、協力を募集します。
832+
* .NET 9.0アセンブリを追加。
820833
* 1.10.0:
821834
* NV12フォーマットのトランスコードに対応しました。 [#132](https://github.com/kekyo/FlashCap/issues/132)
822835
* バッファプーリングに対応しました。 [#135](https://github.com/kekyo/FlashCap/issues/135) [#138](https://github.com/kekyo/FlashCap/issues/138)

0 commit comments

Comments
 (0)