2022-06-08 01:50:14 +08:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2022-04-12 14:15:33 +08:00
|
|
|
|
"""一个简单的基于音·创的我的世界音频操作工具"""
|
2022-04-05 23:43:03 +08:00
|
|
|
|
|
2022-06-08 01:50:14 +08:00
|
|
|
|
# 音·创 开发交流群 861684859
|
|
|
|
|
# Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com EillesWan@outlook.com
|
|
|
|
|
# 版权所有 金羿("Eilles Wan") & 诸葛亮与八卦阵("bgArray") & 鸣凤鸽子("MingFengPigeon")
|
2023-01-02 14:28:25 +08:00
|
|
|
|
# 若需转载或借鉴 许可声明请查看仓库目录下的 Lisence.md
|
2022-06-08 01:50:14 +08:00
|
|
|
|
|
|
|
|
|
|
2023-01-05 17:30:36 +08:00
|
|
|
|
__version__ = '0.1.3'
|
2022-04-05 23:43:03 +08:00
|
|
|
|
__all__ = []
|
2022-04-12 14:15:33 +08:00
|
|
|
|
__author__ = (('金羿', 'Eilles Wan'), ('诸葛亮与八卦阵', 'bgArray'), ('鸣凤鸽子', 'MingFengPigeon'))
|
2022-04-05 23:43:03 +08:00
|
|
|
|
|
|
|
|
|
"""
|
2022-06-08 01:50:14 +08:00
|
|
|
|
音·创 库版 (Musicreater Package Version)
|
|
|
|
|
是一款免费开源的针对《我的世界:基岩版》的midi音乐转换库
|
|
|
|
|
Musicreater pkgver (Package Version 音·创 库版)
|
|
|
|
|
A free open source library used for convert midi file into formats that is suitable for **Minecraft: Bedrock Edition**.
|
|
|
|
|
|
2023-01-02 14:28:25 +08:00
|
|
|
|
Copyright 2023 all the developers of Musicreater
|
2022-04-05 23:43:03 +08:00
|
|
|
|
|
2023-01-02 14:28:25 +08:00
|
|
|
|
开源相关声明请见 ../Lisence.md
|
|
|
|
|
Terms & Conditions: ../Lisence.md
|
2022-04-05 23:43:03 +08:00
|
|
|
|
"""
|
|
|
|
|
|
2022-06-08 01:50:14 +08:00
|
|
|
|
|
|
|
|
|
|
2022-08-09 15:10:52 +08:00
|
|
|
|
from .main import *
|
2022-06-08 01:50:14 +08:00
|
|
|
|
|
2022-10-05 22:21:13 +08:00
|
|
|
|
print('此Midi转换功能由音·创开发者开发,版权归参与开发的人员共同所有。')
|
2022-06-19 01:39:50 +08:00
|
|
|
|
print('Copyright © 2022 all the developers of Musicreater')
|
2023-01-01 03:23:48 +08:00
|
|
|
|
print("小贴:不妨试试Mid-BDX转换网页:在线的多功能Midi转换器")
|
2022-12-31 13:20:30 +08:00
|
|
|
|
print("https://dislink.github.io/midi2bdx/")
|
|
|
|
|
|