sora-sdk 2025.2.0__tar.gz → 2025.5.0.dev9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/MANIFEST.in +1 -0
  2. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/PKG-INFO +45 -16
  3. sora_sdk-2025.2.0/src/sora_sdk.egg-info/PKG-INFO → sora_sdk-2025.5.0.dev9/README.md +39 -35
  4. sora_sdk-2025.5.0.dev9/VERSION +1 -0
  5. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/buildbase.py +684 -108
  6. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/pypath.py +1 -3
  7. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/pyproject.toml +15 -18
  8. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/run.py +179 -54
  9. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/setup.py +23 -4
  10. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk/__init__.py +23 -0
  11. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk/sora_sdk_ext.cpython-311-darwin.so +0 -0
  12. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk/sora_sdk_ext.pyi +29 -18
  13. sora_sdk-2025.2.0/README.md → sora_sdk-2025.5.0.dev9/src/sora_sdk.egg-info/PKG-INFO +64 -15
  14. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk.egg-info/SOURCES.txt +6 -2
  15. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_amd_amf.py +80 -34
  16. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_apple_video_toolbox.py +20 -73
  17. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_authz.py +15 -51
  18. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_authz_simulcast.py +21 -70
  19. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_ca_cert.py +4 -22
  20. sora_sdk-2025.5.0.dev9/tests/test_capability.py +50 -0
  21. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_degradation_preference.py +8 -41
  22. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_encoded_transform.py +46 -33
  23. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_intel_vpl.py +153 -206
  24. sora_sdk-2025.5.0.dev9/tests/test_key_frame_request.py +75 -0
  25. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_messaging.py +3 -15
  26. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_messaging_header.py +3 -15
  27. sora_sdk-2025.2.0/tests/test_nvidia_video_codec_sdk.py → sora_sdk-2025.5.0.dev9/tests/test_nvidia_video_codec.py +75 -51
  28. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_openh264.py +47 -34
  29. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_openh264_simulcast.py +26 -69
  30. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_opus.py +2 -12
  31. sora_sdk-2025.5.0.dev9/tests/test_raspberry_pi.py +269 -0
  32. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_re_offer_re_answer_sdp.py +5 -22
  33. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_sendonly_recvonly.py +16 -28
  34. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_signaling.py +4 -22
  35. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_signaling_message.py +8 -34
  36. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_signaling_notify.py +3 -16
  37. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_simulcast.py +2 -11
  38. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_sora_disconnect.py +36 -108
  39. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_type_disconnect.py +8 -32
  40. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_type_switched.py +9 -41
  41. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/tests/test_vad.py +27 -19
  42. sora_sdk-2025.5.0.dev9/tests/test_version.py +17 -0
  43. sora_sdk-2025.2.0/tests/test_capability.py +0 -94
  44. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/LICENSE +0 -0
  45. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/setup.cfg +0 -0
  46. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk/py.typed +0 -0
  47. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk.egg-info/dependency_links.txt +0 -0
  48. {sora_sdk-2025.2.0 → sora_sdk-2025.5.0.dev9}/src/sora_sdk.egg-info/top_level.txt +0 -0
@@ -1,3 +1,4 @@
1
1
  include buildbase.py
2
2
  include run.py
3
3
  include pypath.py
4
+ include VERSION
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sora_sdk
3
- Version: 2025.2.0
3
+ Version: 2025.5.0.dev9
4
4
  Summary: WebRTC SFU Sora Python SDK
5
5
  Home-page: https://github.com/shiguredo/sora-python-sdk
6
6
  Author-email: "Shiguredo Inc." <contact+pypi@shiguredo.jp>
@@ -12,6 +12,11 @@ Classifier: Programming Language :: Python :: 3 :: Only
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.14
16
+ Classifier: Programming Language :: C++
17
+ Classifier: Operating System :: MacOS :: MacOS X
18
+ Classifier: Operating System :: POSIX :: Linux
19
+ Classifier: Operating System :: Microsoft :: Windows
15
20
  Requires-Python: >=3.11
16
21
  Description-Content-Type: text/markdown
17
22
  License-File: LICENSE
@@ -24,6 +29,7 @@ Dynamic: license-file
24
29
  [![image](https://img.shields.io/pypi/pyversions/sora_sdk.svg)](https://pypi.python.org/pypi/sora_sdk)
25
30
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
26
31
  [![Actions status](https://github.com/shiguredo/sora-python-sdk/workflows/build/badge.svg)](https://github.com/shiguredo/sora-python-sdk/actions)
32
+ [![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?logo=discord&logoColor=white)](https://discord.gg/shiguredo)
27
33
 
28
34
  Sora Python SDK は [WebRTC SFU Sora](https://sora.shiguredo.jp/) の Python クライアントアプリケーションを開発するためのライブラリです。[Sora C++ SDK](https://github.com/shiguredo/sora-cpp-sdk) をベースにしています。
29
35
 
@@ -45,14 +51,19 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
45
51
 
46
52
  ## 特徴
47
53
 
54
+ - PyPI 経由で `uv add sora-sdk` や `pip install sora-sdk` でインストールできる
55
+ - Raspberry Pi 向けパッケージ `sora-sdk-rpi` の提供
56
+ - `uv add sora-sdk-rpi` でインストールできる
57
+ - Raspberry Pi 向けに libcamera 用の `create_libcamera_source` を提供
48
58
  - [Sora C++ SDK](https://github.com/shiguredo/sora-cpp-sdk) ベース
49
59
  - WebRTC 部分の機能は [libwebrtc](https://webrtc.googlesource.com/src/) を採用
50
- - Windows / macOS / Linux (Ubuntu) プラットフォームに対応
60
+ - Windows / macOS / Linux (Ubuntu / Raspberry Pi OS) プラットフォームに対応
51
61
  - [WebRTC 統計情報](https://www.w3.org/TR/webrtc-stats/) の取得が可能
52
62
  - [WebRTC Encoded Transform](https://www.w3.org/TR/webrtc-encoded-transform/) に対応
53
63
  - 回線が不安定になった際、解像度とフレームレートどちらを維持するかの設定をする [DegradationPreference](https://w3c.github.io/mst-content-hint/#degradation-preference-when-encoding) に対応
54
- - MAINTAIN_FRAMERATE / MAINTAIN_RESOLUTION / BALANCED が指定できる
55
- - Intel / Apple / NVIDIA のハードウェアデコーダー/エンコーダーに対応
64
+ - `MAINTAIN_FRAMERATE` / `MAINTAIN_RESOLUTION` / `BALANCED` が指定できる
65
+ - 発話区間の検出が可能な VAD (Voice Activity Detection) に対応
66
+ - Intel / Apple / NVIDIA / Raspberry Pi のハードウェアデコーダー/エンコーダーに対応
56
67
  - Apple Video Toolbox (H.264 / H.265)
57
68
  - macOS arm64 で利用できる
58
69
  - Intel VPL (AV1 / H.264 / H.265)
@@ -61,10 +72,13 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
61
72
  - Ubuntu x86_64 / Windows x86_64 で利用できる
62
73
  - AV1 エンコードは Windows x86_64 でのみ利用できる
63
74
  - VP9 はデコードのみ利用できる
64
- - NVIDIA Video Codec SDK (VP8 / VP9 / AV1 / H.264 / H.265)
75
+ - NVIDIA Video Codec (VP8 / VP9 / AV1 / H.264 / H.265)
65
76
  - Ubuntu x86_64 / Windows x86_64 で利用できる
66
77
  - VP8 と VP9 はデコードのみ利用できる
67
78
  - NVIDIA Jetson JetPack SDK (AV1 / H.264 / H.265)
79
+ - Raspberry Pi (H.264)
80
+ - Raspberry Pi 4 / Raspberry Pi 3 / Raspberry Pi 2 Model B v1.2 / Raspberry Pi Zero 2 W で利用できる
81
+ - V4L2-M2M API を利用している
68
82
  - [各プラットフォームで利用可能な HWA への対応](https://github.com/shiguredo/sora-cpp-sdk?tab=readme-ov-file#%E7%89%B9%E5%BE%B4)
69
83
  - [OpenH264](https://github.com/cisco/openh264) を利用した H.264 のソフトウェアエンコーダー/デコーダーに対応
70
84
  - Ubuntu x86_64 / Ubuntu arm64 / Windows x86_64 / macOS arm64 で利用できる
@@ -72,7 +86,6 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
72
86
  - 映像デバイス処理に [opencv-python](https://pypi.org/project/opencv-python/) などが利用できる
73
87
  - 音声認識などの入力に受信した音声を利用できる
74
88
  - 物体検出などの入力に受信した映像を利用できる
75
- - `uv add sora_sdk` や `pip install sora_sdk` でインストール可能
76
89
  - [NVIDIA Jetson JetPack SDK](https://developer.nvidia.com/embedded/jetpack) に対応
77
90
 
78
91
  ## 利用イメージ
@@ -92,18 +105,16 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
92
105
 
93
106
  ## sora_sdk パッケージの追加
94
107
 
95
- ### uv
96
-
97
- [uv](https://docs.astral.sh/uv/)
108
+ [uv](https://docs.astral.sh/uv/) の利用を推奨します。
98
109
 
99
110
  ```bash
100
111
  uv add sora_sdk
101
112
  ```
102
113
 
103
- ### pip
114
+ ### Raspberry Pi OS 向けパッケージ
104
115
 
105
116
  ```bash
106
- pip install sora_sdk
117
+ uv add sora_sdk_rpi
107
118
  ```
108
119
 
109
120
  ### NVIDIA Jetson 向けパッケージ
@@ -115,7 +126,7 @@ PyPI 経由ではインストールできません。
115
126
 
116
127
  ## システム条件
117
128
 
118
- - WebRTC SFU Sora 2024.1.0 以降
129
+ - WebRTC SFU Sora 2024.2.0 以降
119
130
  - Python 3.11 以上
120
131
 
121
132
  ## Python サポートポリシー
@@ -127,12 +138,31 @@ PyPI 経由ではインストールできません。
127
138
  - Ubuntu 24.04 LTS x86_64
128
139
  - Ubuntu 24.04 LTS arm64
129
140
  - Ubuntu 22.04 LTS x86_64
130
- - Ubuntu 22.04 LTS arm64 (NVIDIA Jetson JetPack SDK 6)
131
- - PyPI からではなくパッケージファイルを利用してください
141
+ - Ubuntu 22.04 LTS arm64
132
142
  - macOS Sequoia 15 arm64
133
143
  - macOS Ventura 14 arm64
134
144
  - Windows 11 x86_64
135
- - Windows Server 2022 x86_64
145
+ - Windows Server 2025 x86_64
146
+ - Raspberry Pi OS armv8
147
+
148
+ ### Raspberry Pi OS 向け
149
+
150
+ - Raspberry Pi OS bookworm (64bit)
151
+ - Raspberry Pi 5
152
+ - Raspberry Pi 4
153
+ - Raspberry Pi 3
154
+ - Raspberry Pi 2 Model B v1.2
155
+ - Raspberry Pi Zero 2 W
156
+
157
+ > [!CAUTION]
158
+ >
159
+ > - Raspberry Pi 5 は H.264 ハードウェアエンコーダーが搭載されていません
160
+ > - Raspberry Pi 5 の H.265 ハードウェアデコーダーに対応していません
161
+
162
+ ### NVIDIA Jetson 向け
163
+
164
+ - Ubuntu 22.04 LTS arm64 (NVIDIA Jetson JetPack SDK 6)
165
+ - PyPI からではなくパッケージファイルを利用してください
136
166
 
137
167
  ### macOS の対応バージョン
138
168
 
@@ -156,7 +186,6 @@ PyPI 経由ではインストールできません。
156
186
  ### 優先実装が可能な機能一覧
157
187
 
158
188
  - Windows 11 arm64
159
- - Ubuntu 22.04 arm64
160
189
  - Ubuntu 22.04 arm64 (NVIDIA Jetson JetPack SDK 6.1)
161
190
  - Ubuntu 20.04 arm64 (NVIDIA Jetson JetPack SDK 5)
162
191
 
@@ -1,29 +1,10 @@
1
- Metadata-Version: 2.4
2
- Name: sora_sdk
3
- Version: 2025.2.0
4
- Summary: WebRTC SFU Sora Python SDK
5
- Home-page: https://github.com/shiguredo/sora-python-sdk
6
- Author-email: "Shiguredo Inc." <contact+pypi@shiguredo.jp>
7
- License-Expression: Apache-2.0
8
- Project-URL: Source, https://github.com/shiguredo/sora-python-sdk
9
- Project-URL: Documentation, https://sora-python-sdk.shiguredo.jp
10
- Project-URL: Discord, https://discord.gg/shiguredo
11
- Classifier: Programming Language :: Python :: 3 :: Only
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Requires-Python: >=3.11
16
- Description-Content-Type: text/markdown
17
- License-File: LICENSE
18
- Dynamic: home-page
19
- Dynamic: license-file
20
-
21
1
  # Sora Python SDK
22
2
 
23
3
  [![PyPI](https://img.shields.io/pypi/v/sora_sdk)](https://pypi.org/project/sora-sdk/)
24
4
  [![image](https://img.shields.io/pypi/pyversions/sora_sdk.svg)](https://pypi.python.org/pypi/sora_sdk)
25
5
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
26
6
  [![Actions status](https://github.com/shiguredo/sora-python-sdk/workflows/build/badge.svg)](https://github.com/shiguredo/sora-python-sdk/actions)
7
+ [![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?logo=discord&logoColor=white)](https://discord.gg/shiguredo)
27
8
 
28
9
  Sora Python SDK は [WebRTC SFU Sora](https://sora.shiguredo.jp/) の Python クライアントアプリケーションを開発するためのライブラリです。[Sora C++ SDK](https://github.com/shiguredo/sora-cpp-sdk) をベースにしています。
29
10
 
@@ -45,14 +26,19 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
45
26
 
46
27
  ## 特徴
47
28
 
29
+ - PyPI 経由で `uv add sora-sdk` や `pip install sora-sdk` でインストールできる
30
+ - Raspberry Pi 向けパッケージ `sora-sdk-rpi` の提供
31
+ - `uv add sora-sdk-rpi` でインストールできる
32
+ - Raspberry Pi 向けに libcamera 用の `create_libcamera_source` を提供
48
33
  - [Sora C++ SDK](https://github.com/shiguredo/sora-cpp-sdk) ベース
49
34
  - WebRTC 部分の機能は [libwebrtc](https://webrtc.googlesource.com/src/) を採用
50
- - Windows / macOS / Linux (Ubuntu) プラットフォームに対応
35
+ - Windows / macOS / Linux (Ubuntu / Raspberry Pi OS) プラットフォームに対応
51
36
  - [WebRTC 統計情報](https://www.w3.org/TR/webrtc-stats/) の取得が可能
52
37
  - [WebRTC Encoded Transform](https://www.w3.org/TR/webrtc-encoded-transform/) に対応
53
38
  - 回線が不安定になった際、解像度とフレームレートどちらを維持するかの設定をする [DegradationPreference](https://w3c.github.io/mst-content-hint/#degradation-preference-when-encoding) に対応
54
- - MAINTAIN_FRAMERATE / MAINTAIN_RESOLUTION / BALANCED が指定できる
55
- - Intel / Apple / NVIDIA のハードウェアデコーダー/エンコーダーに対応
39
+ - `MAINTAIN_FRAMERATE` / `MAINTAIN_RESOLUTION` / `BALANCED` が指定できる
40
+ - 発話区間の検出が可能な VAD (Voice Activity Detection) に対応
41
+ - Intel / Apple / NVIDIA / Raspberry Pi のハードウェアデコーダー/エンコーダーに対応
56
42
  - Apple Video Toolbox (H.264 / H.265)
57
43
  - macOS arm64 で利用できる
58
44
  - Intel VPL (AV1 / H.264 / H.265)
@@ -61,10 +47,13 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
61
47
  - Ubuntu x86_64 / Windows x86_64 で利用できる
62
48
  - AV1 エンコードは Windows x86_64 でのみ利用できる
63
49
  - VP9 はデコードのみ利用できる
64
- - NVIDIA Video Codec SDK (VP8 / VP9 / AV1 / H.264 / H.265)
50
+ - NVIDIA Video Codec (VP8 / VP9 / AV1 / H.264 / H.265)
65
51
  - Ubuntu x86_64 / Windows x86_64 で利用できる
66
52
  - VP8 と VP9 はデコードのみ利用できる
67
53
  - NVIDIA Jetson JetPack SDK (AV1 / H.264 / H.265)
54
+ - Raspberry Pi (H.264)
55
+ - Raspberry Pi 4 / Raspberry Pi 3 / Raspberry Pi 2 Model B v1.2 / Raspberry Pi Zero 2 W で利用できる
56
+ - V4L2-M2M API を利用している
68
57
  - [各プラットフォームで利用可能な HWA への対応](https://github.com/shiguredo/sora-cpp-sdk?tab=readme-ov-file#%E7%89%B9%E5%BE%B4)
69
58
  - [OpenH264](https://github.com/cisco/openh264) を利用した H.264 のソフトウェアエンコーダー/デコーダーに対応
70
59
  - Ubuntu x86_64 / Ubuntu arm64 / Windows x86_64 / macOS arm64 で利用できる
@@ -72,7 +61,6 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
72
61
  - 映像デバイス処理に [opencv-python](https://pypi.org/project/opencv-python/) などが利用できる
73
62
  - 音声認識などの入力に受信した音声を利用できる
74
63
  - 物体検出などの入力に受信した映像を利用できる
75
- - `uv add sora_sdk` や `pip install sora_sdk` でインストール可能
76
64
  - [NVIDIA Jetson JetPack SDK](https://developer.nvidia.com/embedded/jetpack) に対応
77
65
 
78
66
  ## 利用イメージ
@@ -92,18 +80,16 @@ Please read <https://github.com/shiguredo/oss/blob/master/README.en.md> before u
92
80
 
93
81
  ## sora_sdk パッケージの追加
94
82
 
95
- ### uv
96
-
97
- [uv](https://docs.astral.sh/uv/)
83
+ [uv](https://docs.astral.sh/uv/) の利用を推奨します。
98
84
 
99
85
  ```bash
100
86
  uv add sora_sdk
101
87
  ```
102
88
 
103
- ### pip
89
+ ### Raspberry Pi OS 向けパッケージ
104
90
 
105
91
  ```bash
106
- pip install sora_sdk
92
+ uv add sora_sdk_rpi
107
93
  ```
108
94
 
109
95
  ### NVIDIA Jetson 向けパッケージ
@@ -115,7 +101,7 @@ PyPI 経由ではインストールできません。
115
101
 
116
102
  ## システム条件
117
103
 
118
- - WebRTC SFU Sora 2024.1.0 以降
104
+ - WebRTC SFU Sora 2024.2.0 以降
119
105
  - Python 3.11 以上
120
106
 
121
107
  ## Python サポートポリシー
@@ -127,12 +113,31 @@ PyPI 経由ではインストールできません。
127
113
  - Ubuntu 24.04 LTS x86_64
128
114
  - Ubuntu 24.04 LTS arm64
129
115
  - Ubuntu 22.04 LTS x86_64
130
- - Ubuntu 22.04 LTS arm64 (NVIDIA Jetson JetPack SDK 6)
131
- - PyPI からではなくパッケージファイルを利用してください
116
+ - Ubuntu 22.04 LTS arm64
132
117
  - macOS Sequoia 15 arm64
133
118
  - macOS Ventura 14 arm64
134
119
  - Windows 11 x86_64
135
- - Windows Server 2022 x86_64
120
+ - Windows Server 2025 x86_64
121
+ - Raspberry Pi OS armv8
122
+
123
+ ### Raspberry Pi OS 向け
124
+
125
+ - Raspberry Pi OS bookworm (64bit)
126
+ - Raspberry Pi 5
127
+ - Raspberry Pi 4
128
+ - Raspberry Pi 3
129
+ - Raspberry Pi 2 Model B v1.2
130
+ - Raspberry Pi Zero 2 W
131
+
132
+ > [!CAUTION]
133
+ >
134
+ > - Raspberry Pi 5 は H.264 ハードウェアエンコーダーが搭載されていません
135
+ > - Raspberry Pi 5 の H.265 ハードウェアデコーダーに対応していません
136
+
137
+ ### NVIDIA Jetson 向け
138
+
139
+ - Ubuntu 22.04 LTS arm64 (NVIDIA Jetson JetPack SDK 6)
140
+ - PyPI からではなくパッケージファイルを利用してください
136
141
 
137
142
  ### macOS の対応バージョン
138
143
 
@@ -156,7 +161,6 @@ PyPI 経由ではインストールできません。
156
161
  ### 優先実装が可能な機能一覧
157
162
 
158
163
  - Windows 11 arm64
159
- - Ubuntu 22.04 arm64
160
164
  - Ubuntu 22.04 arm64 (NVIDIA Jetson JetPack SDK 6.1)
161
165
  - Ubuntu 20.04 arm64 (NVIDIA Jetson JetPack SDK 5)
162
166
 
@@ -0,0 +1 @@
1
+ 2025.5.0.dev9