mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2025-03-05 05:15:53 +08:00
92 lines
3.4 KiB
Markdown
92 lines
3.4 KiB
Markdown
# 演示程序使用教程
|
||
|
||
*由于先前的 **读我文件**(README.md) 过于冗杂,现另辟蹊径来给大家全方位的教程。*
|
||
|
||
*这是演示程序的使用教程,将在这里提供演示程序的相应的使用教程*
|
||
|
||
## 视窗(Windows)操作系统
|
||
|
||
### 运行环境安装
|
||
|
||
0. 安装python3.6+
|
||
|
||
首先需要下载Python的安装包
|
||
|
||
> [下载64位Python安装包](https://www.python.org/ftp/python/3.8.10/python-3.8.10-amd64.exe)
|
||
> [下载32位Python安装包](https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe)
|
||
|
||
在安装时,最好需要勾选 `Add Python 3.X to PATH` ,如下图所示,当然,如果您对自己非常自信,您也可以手动设置此项目:
|
||
|
||
若您对Python一知半解或者不怎么了解、并对自己的系统盘有大约150*MB*的信心的话,您可以在安装时直接选择*快速安装*(Install Now)
|
||
|
||
若您选择了*自定义安装*(Customize Installation),请务必勾选 `pip` 和 `py launcher` 便于后续安装依赖,如下图:
|
||
|
||
安装结束之后可以在*终端*(命令行/PowerShell/Bash/etc)中输入:python 试试是否安装成功,成功安装之后,在终端中输入python会显示诸如如下图片的提示:
|
||
|
||
<img src=https://foruda.gitee.com/images/1659972669907359295/cmd.png>
|
||
|
||
1. 下载本代码库以及演示程序
|
||
|
||
- 若您使用git,请直接拷贝本仓库:
|
||
|
||
`git clone -b pkgver https://gitee.com/EillesWan/Musicreater.git`
|
||
|
||
- 若您不使用git,可以在*码云*(Gitee)或GitHub下载zip包,或者[加入QQ群聊861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr),在群文件中获取。
|
||
|
||
<img src=" https://foruda.gitee.com/images/1659972440341216712/下载.png" >
|
||
|
||
2. 安装依赖
|
||
|
||
请以管理员模式打开您的*终端*(命令行/PowerShell/Bash/etc),例如 命令行,打开方式如下:
|
||
|
||
1. 在*视窗开始菜单*(Windows开始)中搜索 `cmd`
|
||
|
||
2.
|
||
|
||
`pip install mido`
|
||
|
||
`pip install brotli`
|
||
|
||
`pip install openpyxl`
|
||
|
||
3. 开始使用!
|
||
|
||
在目录下打开cmd,进入到目录下,执行以下命令:
|
||
<img src=https://foruda.gitee.com/images/1659974437388532868/输入.png>
|
||
<img src=https://foruda.gitee.com/images/1659974754378201859/输入c.png>
|
||
回车一下,然后:
|
||
<img src=https://foruda.gitee.com/images/1659974794561970425/pip.png>
|
||
|
||
在目录下打开cmd(步骤与上面的图片一致,只是执行的代码换了),进入到目录下,执行以下命令:(选择你需要的)
|
||
|
||
`python example_convert_bdx.py`
|
||
|
||
`python example_convert_mcpack.py`
|
||
|
||
4. 错误补充说明
|
||
如果你遇到了以下这种情况
|
||
<img src=https://foruda.gitee.com/images/1659972789779764953/bug.jpeg>
|
||
那么,请按照这篇文章指引做:
|
||
https://blog.csdn.net/qq_41179280/article/details/123804948
|
||
|
||
感谢Mono帮我们发现这个问题
|
||
|
||
5. 使用补充说明
|
||
<img src=https://foruda.gitee.com/images/1659974810147043475/运行.png>
|
||
midi路径:含有mid文件路径、文件名、后缀的完整绝对路径
|
||
|
||
输出路径:输出文件夹的路径,就写一个英文.(句号)可以表示生成到当前目录下
|
||
(意思就是支持相对路径)
|
||
|
||
是否重置计分板:1或0(歌曲放完是否重置,推荐1)
|
||
|
||
是否启用进度条:1或0(看个人需要)
|
||
|
||
计分板名称:游戏内的计分板名称
|
||
|
||
音量:0-1之间的小数(含0,1)正常来说推荐1
|
||
|
||
变速:float数据,一般写1
|
||
|
||
没有报错且在输出路径下找到mcpack或bdx即为生成成功:
|
||
<img src=https://foruda.gitee.com/images/1659973655881460036/输出.png> |