You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i try to print a complexed midi file, i got error:
C:\Users\Bachopininoff.conda\envs\msst\lib\site-packages\partitura\utils\misc.py:68: SyntaxWarning: Command ['C:\Program Files\MuseScore 4\bin\MuseScore4.exe', '-T', '10', '-r', '90', '-o', 'C:\Users\BACHOP1\AppData\Local\Temp\tmpg2l_8jgt\score.png', 'C:\Users\BACHOP1\AppData\Local\Temp\tmpg2l_8jgt\score.musicxml', '-f'] failed with code 3221225477; stdout: ; stderr: [55372:32336:20240918,095933.268:ERROR filesystem_win.cc:129] GetFileAttributes C:/Users/Bachopininoff/AppData/Local/MuseScore/MuseScore4/logs/dumps\attachments\d4ab2e09-8f19-4810-8cb4-9f932eb2966d: The system cannot find the specified file.。 (2)
return f(*args, **kwargs)
The text was updated successfully, but these errors were encountered:
Thank you for raising this issue! Can you share the MIDI file in question?
From your error I'd assume that you load the file using load_score, the file doesn't have a standard midi extension (.mid or .midi) and partitura then defaults to parsing by musescore, which produces the error. If that's the case, you can bypass this by using load_score_midi or load_performance_midi instead of the generic load_score (which tries to quess the file type based on the extension), changing the file extension, and making sure it's actually a midi file.
when i try to print a complexed midi file, i got error:
C:\Users\Bachopininoff.conda\envs\msst\lib\site-packages\partitura\utils\misc.py:68: SyntaxWarning: Command ['C:\Program Files\MuseScore 4\bin\MuseScore4.exe', '-T', '10', '-r', '90', '-o', 'C:\Users\BACHOP
1\AppData\Local\Temp\tmpg2l_8jgt\score.png', 'C:\Users\BACHOP1\AppData\Local\Temp\tmpg2l_8jgt\score.musicxml', '-f'] failed with code 3221225477; stdout: ; stderr: [55372:32336:20240918,095933.268:ERROR filesystem_win.cc:129] GetFileAttributes C:/Users/Bachopininoff/AppData/Local/MuseScore/MuseScore4/logs/dumps\attachments\d4ab2e09-8f19-4810-8cb4-9f932eb2966d: The system cannot find the specified file.。 (2)return f(*args, **kwargs)
The text was updated successfully, but these errors were encountered: