python:用 mido 生成 midi文件,用 pygame 播放 mid文件

pip install mido

Downloading mido-1.3.2-py3-none-any.whl (54 kB)

Downloading packaging-23.2-py3-none-any.whl (53 kB)

Installing collected packages: packaging, mido

Successfully installed mido-1.3.2 packaging-23.2

mido 官网文档

pip intall pygame

pygame 2.5.2

安装文档 D:/Python39/Lib/site-packages/pygame/docs/generated/index.html

编写 test1_mido.py 如下

python 复制代码
# -*- coding: utf-8 -*-
from mido import Message, MidiFile, MidiTrack
 
mid = MidiFile()    # 创建MIDI文件
track = MidiTrack() # 创建一个音轨
mid.tracks.append(track)

# 创建各个音符,并添加到音轨中 
track.append(Message("program_change", channel=0, program=2, time=0))
# do: C4 = 60
track.append(Message("note_on", note=60, velocity=80, time=500))
track.append(Message("note_off", note=60, velocity=80, time=500))
# re: D4 = 62 
track.append(Message("note_on", note=62, velocity=80, time=500))
track.append(Message("note_off", note=62, velocity=80, time=500))
# mi: E4 = 64
track.append(Message("note_on", note=64, velocity=80, time=500))
track.append(Message("note_off", note=64, velocity=80, time=500))
# fa: F4 = 65
track.append(Message("note_on", note=65, velocity=80, time=500))
track.append(Message("note_off", note=65, velocity=80, time=500))
# sol:G4 = 67
track.append(Message("note_on", note=67, velocity=80, time=500))
track.append(Message("note_off", note=67, velocity=80, time=500))
# la: A4 = 69
track.append(Message("note_on", note=69, velocity=80, time=500))
track.append(Message("note_off", note=69, velocity=80, time=500))
# si: B4 = 71
track.append(Message("note_on", note=71, velocity=80, time=500))
track.append(Message("note_off", note=71, velocity=80, time=500))
# do: C5 = 72
track.append(Message("note_on", note=72, velocity=80, time=500))
track.append(Message("note_off", note=72, velocity=80, time=500))

mid.save("test1.mid")

运行 python test1_mido.py 生成文件 test1.mid

编写 play_mid.py 如下

python 复制代码
# -*- coding: utf-8 -*-
import os
import sys
import traceback
import pygame
from pygame import mixer

def mixer_init():
    freq = 44100
    bitsize = -16
    channels = 2
    buffer = 1024
    mixer.init(freq, bitsize, channels, buffer)
    # optional volume 0 to 1.0
    mixer.music.set_volume(0.9)

def play_mid(file):
    clock = pygame.time.Clock()
    try:
        mixer.music.load(file)
    except:
        print(traceback.format_exc())
    mixer.music.play()
    while mixer.music.get_busy():
        clock.tick(30)

# main()
if len(sys.argv) ==2:
    f1 = sys.argv[1]
else:
    print('usage: python play_mid.py file1.mid')
    sys.exit(1)

if not os.path.exists(f1):
    print(f"{f1} is not exists.")
    sys.exit(2)

fn,ext = os.path.splitext(f1)
if ext.lower() not in ('.mid','.mp3'):
    print('ext is not (.mid , .mp3)')
    sys.exit(2)

mixer_init()
try:
    play_mid(f1)
except KeyboardInterrupt as ex:
    # if user hits Ctrl+C then exit
    # (works only in console mode)
    mixer.music.fadeout(1000)
    mixer.music.stop()
    raise SystemExit from ex
mixer.music.stop()

运行 python play_mid.py test1.mid

详细参阅:Python编曲实践(一):通过Mido和PyGame来编写和播放单轨MIDI文件

MidiEditor 打开 test1.mid 文件

相关推荐
小泽耳机数码推荐家2 天前
百元级蓝牙耳机推荐有哪些?四大优选品牌衷心推荐
python·django·virtualenv·pygame
api772 天前
1688商品详情API返回值中的售后保障与服务信息
java·服务器·前端·javascript·python·spring·pygame
宇宙第一小趴菜2 天前
中秋节特别游戏:给玉兔投喂月饼
python·游戏·pygame·中秋节
技术无疆3 天前
用Python打造互动式中秋节庆祝小程序
开发语言·python·小程序·pycharm·pygame·ipython·python3.11
星和月4 天前
Python——俄罗斯方块
开发语言·python·pygame
hakesashou4 天前
python做游戏好用吗
python·游戏·pygame
LQS20206 天前
基于Python实现一个庆祝国庆节的小程序
python·小程序·pygame
星和月8 天前
Python——贪吃蛇
开发语言·python·pygame
星图辛某人9 天前
《Python编程:从入门到实践》外星人入侵
开发语言·python·pygame
板栗焖小鸡10 天前
【小项目】python贪吃蛇小游戏设计
开发语言·python·pygame