#python #midi
Вопрос:
Я использую эту библиотеку midi2img для генерации midi из изображений
Из этой библиотеки этот файл используется:
from PIL import Image
import numpy as np
from music21 import instrument, note, chord, stream
lowerBoundNote = 21
def column2notes(column):
notes = []
for i in range(len(column)):
if column[i] > 255/2:
notes.append(i lowerBoundNote)
return notes
resolution = 0.25
def updateNotes(newNotes,prevNotes):
res = {}
for note in newNotes:
if note in prevNotes:
res[note] = prevNotes[note] resolution
else:
res[note] = resolution
return res
def image2midi(image_path):
with Image.open(image_path) as image:
im_arr = np.fromstring(image.tobytes(), dtype=np.uint8)
try:
im_arr = im_arr.reshape((image.size[1], image.size[0]))
except:
im_arr = im_arr.reshape((image.size[1], image.size[0],3))
im_arr = np.dot(im_arr, [0.33, 0.33, 0.33])
""" convert the output from the prediction to notes and create a midi file
from the notes """
offset = 0
output_notes = []
# create note and chord objects based on the values generated by the model
prev_notes = updateNotes(im_arr.T[0,:],{})
for column in im_arr.T[1:,:]:
notes = column2notes(column)
# pattern is a chord
notes_in_chord = notes
old_notes = prev_notes.keys()
for old_note in old_notes:
if not old_note in notes_in_chord:
new_note = note.Note(old_note,quarterLength=prev_notes[old_note])
new_note.storedInstrument = instrument.Piano()
if offset - prev_notes[old_note] >= 0:
new_note.offset = offset - prev_notes[old_note]
output_notes.append(new_note)
elif offset == 0:
new_note.offset = offset
output_notes.append(new_note)
else:
print(offset,prev_notes[old_note],old_note)
prev_notes = updateNotes(notes_in_chord,prev_notes)
# increase offset each iteration so that notes do not stack
offset = resolution
for old_note in prev_notes.keys():
new_note = note.Note(old_note,quarterLength=prev_notes[old_note])
new_note.storedInstrument = instrument.Piano()
new_note.offset = offset - prev_notes[old_note]
output_notes.append(new_note)
prev_notes = updateNotes(notes_in_chord,prev_notes)
midi_stream = stream.Stream(output_notes)
midi_stream.write('midi', fp=image_path.split("/")[-1].replace(".jpeg",".mid"))
import sys
image_path = sys.argv[1]
image2midi(image_path)
и это код, который я выполняю в терминале, чтобы получить midi из изображения:
python img2midi.py samples/image.png
Мне нужно сделать приведенный выше код, чтобы выполнить цикл над всеми входными изображениями, которые я помещаю в папку samples, и сгенерировать midi для каждого, а не только для одного файла за раз.
Любая помощь была бы очень признательна.
Комментарии:
Ответ №1:
Вы можете сделать это, получив список изображений из каталога и перебрав их.
import sys
import os
sample_folder_path = sys.argv[1]
images = os.listdir(sample_folder_path) # getting all images stored in sample folder
images_path = [os.path.abspath(f"{sample_folder_path}/{image}") for image in images] # gets absolute path for all images
for image_path in images_path:
image2midi(image_path)
Использование:
python img2midi.py folder_path
Вот folder_path
путь к папке, содержащей изображения. Оно может
Комментарии:
1. Ошибка типа: listdir: путь должен быть строкой, байтами, похожим на os.путь, целым числом или нет, не список
2. не могли бы вы, пожалуйста, написать команду, которую я должен выполнить в терминале, чтобы ваш код мог работать
3.
python img2midi.py folder_path
Здесь folder_path-это путь к папке, содержащей изображения. Также обновите код, как написано выше.4. Хорошо, скоро у меня будет еще одна попытка, и я сообщу вам об обновлениях, большое спасибо.
5. та же ошибка сохраняется, ошибка типа: listdir: путь должен быть строкой, байтами, похожим на os.путь, целым числом или без, не список