mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2025-01-31 15:31:55 +08:00
更新了一下文件结构
This commit is contained in:
parent
ce1099a246
commit
992572cbf1
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
|||||||
# mystuff
|
# mystuff
|
||||||
/__pycache__
|
|
||||||
/.vscode
|
/.vscode
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
音·创 Musicreater 是一款免费开源的 **《我的世界:基岩版》** 音乐制作软件
|
音·创 Musicreater 是一款免费开源的 **《我的世界:基岩版》** 音乐制作软件
|
||||||
|
|
||||||
音·创 pkgver (Musicreater Package Version) 是一款免费开源的 **《我的世界:基岩版》** 音乐转换库
|
音·创 库版 (Musicreater Package Version) 是一款免费开源的针对 **《我的世界:基岩版》** 的midi音乐转换库
|
||||||
|
|
||||||
欢迎加群:[861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr)
|
欢迎加群:[861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr)
|
||||||
|
|
||||||
@ -114,6 +114,7 @@
|
|||||||
- 感谢由 Charlie_Ping “查理平” 带来的bdx文件转换参考
|
- 感谢由 Charlie_Ping “查理平” 带来的bdx文件转换参考
|
||||||
- 感谢由 CMA_2401PT 为我们的软件开发进行指导
|
- 感谢由 CMA_2401PT 为我们的软件开发进行指导
|
||||||
- 感谢由 Dislink Sforza \<QQ1600515314\>带来的midi音色解析以及转换指令的算法,我们将其加入了我们众多算法之一
|
- 感谢由 Dislink Sforza \<QQ1600515314\>带来的midi音色解析以及转换指令的算法,我们将其加入了我们众多算法之一
|
||||||
|
- 感谢 Touch \<QQ1793537164\>提供的测试支持
|
||||||
- 感谢广大群友为此程序提供的测试等支持
|
- 感谢广大群友为此程序提供的测试等支持
|
||||||
- 若您对我们有所贡献但您的名字没有显示在此列表中,请联系我!
|
- 若您对我们有所贡献但您的名字没有显示在此列表中,请联系我!
|
||||||
|
|
||||||
|
@ -22,7 +22,9 @@
|
|||||||
|
|
||||||
## Introduction🚀
|
## Introduction🚀
|
||||||
|
|
||||||
Musicreater(音·创) is an free open source software which is used for making and also creating music in **Minecraft: Bedrock Edition**.
|
Musicreater(音·创) is a free open source software which is used for making and also creating music in **Minecraft: Bedrock Edition**.
|
||||||
|
|
||||||
|
Musicreater pkgver(Package Version 音·创 库版) is a free open source library used for convert midi file into formats that is suitable for **Minecraft: Bedrock Edition**.
|
||||||
|
|
||||||
Welcome to join our QQ group: [861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr)
|
Welcome to join our QQ group: [861684859](https://jq.qq.com/?_wv=1027&k=hpeRxrYr)
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,6 +1,33 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from main import *
|
|
||||||
|
# 音·创 开发交流群 861684859
|
||||||
|
# Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com EillesWan@outlook.com
|
||||||
|
# 版权所有 金羿("Eilles Wan") & 诸葛亮与八卦阵("bgArray") & 鸣凤鸽子("MingFengPigeon")
|
||||||
|
# 若需转载或借鉴 请依照 Apache 2.0 许可证进行许可
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
|
音·创 库版 MIDI转换展示程序
|
||||||
|
Musicreater Package Version : Demo for Midi Conversion
|
||||||
|
|
||||||
|
Copyright 2022 all the developers of Musicreater
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the 'License');
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an 'AS IS' BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
from msctPkgver.main import *
|
||||||
import os
|
import os
|
||||||
|
|
||||||
convertion = midiConvert()
|
convertion = midiConvert()
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# THIS PROGRAM IS ONLY A TEST EXAMPLE
|
# THIS PROGRAM IS ONLY A TEST EXAMPLE
|
||||||
|
|
||||||
|
|
||||||
from main import *
|
from msctPkgver.main import *
|
||||||
|
|
||||||
convertion = midiConvert()
|
convertion = midiConvert()
|
||||||
convertion.convert(input('请输入midi文件路径:'), input('请输入输出路径:'))
|
convertion.convert(input('请输入midi文件路径:'), input('请输入输出路径:'))
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# THIS PROGRAM IS ONLY A TEST EXAMPLE
|
# THIS PROGRAM IS ONLY A TEST EXAMPLE
|
||||||
|
|
||||||
|
|
||||||
from main import *
|
from msctPkgver.main import *
|
||||||
|
|
||||||
convertion = midiConvert()
|
convertion = midiConvert()
|
||||||
convertion.convert(input('请输入midi文件路径:'), input('请输入输出路径:'))
|
convertion.convert(input('请输入midi文件路径:'), input('请输入输出路径:'))
|
||||||
|
@ -1,18 +1,26 @@
|
|||||||
# -*- coding:utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""一个简单的基于音·创的我的世界音频操作工具"""
|
"""一个简单的基于音·创的我的世界音频操作工具"""
|
||||||
|
|
||||||
import main
|
# 音·创 开发交流群 861684859
|
||||||
if main.importDebug():
|
# Email EillesWan2006@163.com W-YI_DoctorYI@outlook.com EillesWan@outlook.com
|
||||||
print("Debug finished correctly")
|
# 版权所有 金羿("Eilles Wan") & 诸葛亮与八卦阵("bgArray") & 鸣凤鸽子("MingFengPigeon")
|
||||||
else:
|
# 若需转载或借鉴 请依照 Apache 2.0 许可证进行许可
|
||||||
print("Debug finished with errors")
|
|
||||||
|
|
||||||
|
|
||||||
__version__ = '0.0.1'
|
__version__ = '0.0.1'
|
||||||
__all__ = []
|
__all__ = []
|
||||||
__author__ = (('金羿', 'Eilles Wan'), ('诸葛亮与八卦阵', 'bgArray'), ('鸣凤鸽子', 'MingFengPigeon'))
|
__author__ = (('金羿', 'Eilles Wan'), ('诸葛亮与八卦阵', 'bgArray'), ('鸣凤鸽子', 'MingFengPigeon'))
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Copyright © 2022 Team-Ryoun
|
音·创 库版 (Musicreater Package Version)
|
||||||
|
是一款免费开源的针对《我的世界:基岩版》的midi音乐转换库
|
||||||
|
注意!除了此源文件以外,任何属于此仓库以及此项目的文件均依照Apache许可证进行许可
|
||||||
|
Musicreater pkgver (Package Version 音·创 库版)
|
||||||
|
A free open source library used for convert midi file into formats that is suitable for **Minecraft: Bedrock Edition**.
|
||||||
|
Note! Except for this source file, all the files in this repository and this project are licensed under Apache License 2.0
|
||||||
|
|
||||||
|
Copyright 2022 all the developers of Musicreater
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the 'License');
|
Licensed under the Apache License, Version 2.0 (the 'License');
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -27,5 +35,10 @@ __author__ = (('金羿', 'Eilles Wan'), ('诸葛亮与八卦阵', 'bgArray'), ('
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
import msctPkgver.main as msctPkgver
|
||||||
|
|
||||||
|
from msctPkgver.main import *
|
||||||
|
|
||||||
print('此工具由凌天之云创新团队开发,版权归本团队参与开发的人员共同所有。')
|
print('此工具由凌天之云创新团队开发,版权归本团队参与开发的人员共同所有。')
|
||||||
print('This tool is developed by Team-Ryoun, copyright belongs to the team members who developed the tool.')
|
print('This tool is developed by Team-Ryoun, copyright belongs to the team members who developed the tool.')
|
@ -8,11 +8,11 @@
|
|||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
音·创 (Musicreater)
|
音·创 库版 (Musicreater Package Version)
|
||||||
一款免费开源的 《我的世界:基岩版》 音乐制作软件
|
是一款免费开源的针对《我的世界:基岩版》的midi音乐转换库
|
||||||
注意!除了此源文件以外,任何属于此仓库以及此项目的文件均依照Apache许可证进行许可
|
注意!除了此源文件以外,任何属于此仓库以及此项目的文件均依照Apache许可证进行许可
|
||||||
Musicreater (音·创)
|
Musicreater pkgver (Package Version 音·创 库版)
|
||||||
A free opensource software which is used for creating all kinds of musics in Minecraft
|
A free open source library used for convert midi file into formats that is suitable for **Minecraft: Bedrock Edition**.
|
||||||
Note! Except for this source file, all the files in this repository and this project are licensed under Apache License 2.0
|
Note! Except for this source file, all the files in this repository and this project are licensed under Apache License 2.0
|
||||||
|
|
||||||
Copyright 2022 all the developers of Musicreater
|
Copyright 2022 all the developers of Musicreater
|
Loading…
x
Reference in New Issue
Block a user