Init example project 0.1.0

This commit is contained in:
VergilWang15
2022-03-23 15:52:49 +08:00
parent 3d618eb43a
commit 454b9dcc6f
13 changed files with 120 additions and 0 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
# PXUA216MB-DL2-M Python例程
## 安装
本项目通过poetry实现包管理
关于poetry的安装及使用方法[poetry](https://python-poetry.org/docs/)
本项目依赖于开源项目 [sounddevice](https://python-sounddevice.readthedocs.io/en/0.4.4/installation.html)
安装poetry后简单使用```poetry install```即可安装依赖
## 使用
###寻找一个格式的子类型:
```
>>> import soundfile as sf
>>> sf.available_subtypes('RAW')
```