create_test_videofont.py: generate a "rest" sample with silence in it
authorAntonio Ospite <ao2@ao2.it>
Fri, 2 Dec 2016 15:45:47 +0000 (16:45 +0100)
committerAntonio Ospite <ao2@ao2.it>
Fri, 2 Dec 2016 16:24:09 +0000 (17:24 +0100)
create_test_videofont.py

index 40125a6..acde8ab 100755 (executable)
@@ -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)