Skip to content

Instantly share code, notes, and snippets.

@netalkGB
Created July 9, 2021 09:30
Show Gist options
  • Select an option

  • Save netalkGB/b4f6b34a5264ff7bb7fcc9077abd0501 to your computer and use it in GitHub Desktop.

Select an option

Save netalkGB/b4f6b34a5264ff7bb7fcc9077abd0501 to your computer and use it in GitHub Desktop.
再生時間しらべる
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