Skip to content

Commit

Permalink
Add performance and REMI event representations
Browse files Browse the repository at this point in the history
  • Loading branch information
salu133445 committed Aug 11, 2021
1 parent 07fa3e0 commit 28afd97
Show file tree
Hide file tree
Showing 4 changed files with 705 additions and 3 deletions.
15 changes: 13 additions & 2 deletions muspy/outputs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@
- save
- save_json
- save_yaml
- to_default_event_representation
- to_event_representation
- to_mido
- to_music21
- to_note_representation
- to_object
- to_performance_event_representation
- to_pianoroll_representation
- to_pitch_representation
- to_pretty_midi
- to_pypianoroll
- to_remi_event_representation
- to_representation
- write
- write_abc
Expand All @@ -29,7 +32,12 @@
"""
from .abc import write_abc
from .audio import synthesize, write_audio
from .event import to_event_representation
from .event import (
to_default_event_representation,
to_event_representation,
to_performance_event_representation,
to_remi_event_representation,
)
from .json import save_json
from .midi import to_mido, to_pretty_midi, write_midi
from .music21 import to_music21
Expand All @@ -44,17 +52,20 @@
"save",
"save_json",
"save_yaml",
"synthesize",
"to_default_event_representation",
"to_event_representation",
"to_mido",
"to_music21",
"to_note_representation",
"to_object",
"to_performance_event_representation",
"to_pianoroll_representation",
"to_pitch_representation",
"to_pretty_midi",
"to_pypianoroll",
"to_remi_event_representation",
"to_representation",
"synthesize",
"write",
"write_abc",
"write_audio",
Expand Down
Loading

0 comments on commit 28afd97

Please sign in to comment.