projects
/
vidi-player.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add vidi/MidiUtils.py to share some utilities to analyze midi files
[vidi-player.git]
/
create_test_videofont.py
diff --git
a/create_test_videofont.py
b/create_test_videofont.py
index
40125a6
..
acde8ab
100755
(executable)
--- a/
create_test_videofont.py
+++ b/
create_test_videofont.py
@@
-37,6
+37,11
@@
FILE_PIPELINE_TEMPLATE = """
def create_test_videofont(pipeline_template, notes_range, destination_dir=None):
def create_test_videofont(pipeline_template, notes_range, destination_dir=None):
+ print("Silence")
+ pipeline_string = pipeline_template.format("rest", 0, destination_dir)
+ player = vidi.Player.from_pipeline_string(pipeline_string)
+ player.play()
+
for i, note_number in enumerate(notes_range):
note = vidi.SpnNote(note_number)
for i, note_number in enumerate(notes_range):
note = vidi.SpnNote(note_number)