2022-06-08 01:50:14 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-01-27 23:25:28 +08:00
|
|
|
"""一个简单的我的世界音频转换库
|
2023-02-01 21:48:12 +08:00
|
|
|
音·创 库版 (Musicreater)
|
|
|
|
是一款免费开源的针对《我的世界》的midi音乐转换库
|
|
|
|
Musicreater(音·创)
|
|
|
|
A free open source library used for convert midi file into formats that is suitable for **Minecraft**.
|
2022-06-08 01:50:14 +08:00
|
|
|
|
2023-02-01 21:48:12 +08:00
|
|
|
版权所有 © 2023 音·创 开发者
|
|
|
|
Copyright © 2023 all the developers of Musicreater
|
2022-04-05 23:43:03 +08:00
|
|
|
|
2023-01-27 23:25:28 +08:00
|
|
|
开源相关声明请见 ../License.md
|
|
|
|
Terms & Conditions: ../License.md
|
2022-04-05 23:43:03 +08:00
|
|
|
"""
|
|
|
|
|
2023-01-27 23:25:28 +08:00
|
|
|
# 音·创 开发交流群 861684859
|
|
|
|
# Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com EillesWan@outlook.com
|
|
|
|
# 版权所有 金羿("Eilles Wan") & 诸葛亮与八卦阵("bgArray") & 鸣凤鸽子("MingFengPigeon")
|
|
|
|
# 若需转载或借鉴 许可声明请查看仓库目录下的 License.md
|
2022-06-08 01:50:14 +08:00
|
|
|
|
2022-08-09 15:10:52 +08:00
|
|
|
from .main import *
|
2023-01-28 11:56:09 +08:00
|
|
|
|
2023-02-01 21:48:12 +08:00
|
|
|
__version__ = "0.2.3"
|
2023-01-27 23:25:28 +08:00
|
|
|
__all__ = []
|
2023-02-01 21:48:12 +08:00
|
|
|
__author__ = (("金羿", "Eilles Wan"), ("诸葛亮与八卦阵", "bgArray"))
|
2023-01-27 23:25:28 +08:00
|
|
|
|
2022-06-08 01:50:14 +08:00
|
|
|
|