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 文件

相关推荐
禾乃儿_xiuer4 天前
《Python制作动态爱心粒子特效》
开发语言·python·生活·pygame·爱心代码·python表白·初学者入门
虞书欣的66 天前
Python小游戏27——飞翔的小鸟
开发语言·人工智能·游戏·pycharm·pygame
虞书欣的68 天前
Python小游戏24——小恐龙躲避游戏
开发语言·python·游戏·小程序·pygame
不太爱喝水10 天前
外星人入侵
开发语言·python·pygame
狂奔solar11 天前
DQN强化训练agent玩是男人就下xx层小游戏
python·pygame·dqn 强化
星和月11 天前
Python——飞机大战
python·pygame
狐凄11 天前
Python练习19
开发语言·python·pygame
虞书欣的611 天前
Python小游戏25——黄金矿工
开发语言·人工智能·游戏·小程序·pygame
其木王·王子12 天前
0. 渲染游戏画面
python·游戏·pygame
2301_8112123312 天前
python数据结构操作与可视化的应用
数据结构·python·信息可视化·django·virtualenv·pygame·tornado