Created
July 9, 2021 09:30
-
-
Save netalkGB/b4f6b34a5264ff7bb7fcc9077abd0501 to your computer and use it in GitHub Desktop.
再生時間しらべる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pretty_midi | |
| import math | |
| midi_data = pretty_midi.PrettyMIDI('TEST.RCP.MID') | |
| duration_seconds = midi_data.get_end_time() | |
| print(math.ceil(duration_seconds)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment