From: Antonio Ospite Date: Fri, 2 Dec 2016 15:45:47 +0000 (+0100) Subject: create_test_videofont.py: generate a "rest" sample with silence in it X-Git-Url: https://git.ao2.it/vidi-player.git/commitdiff_plain/bd98d9d7d32db90eaf80ecfea74fe6804ffb7740 create_test_videofont.py: generate a "rest" sample with silence in it --- diff --git a/create_test_videofont.py b/create_test_videofont.py index 40125a6..acde8ab 100755 --- 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): + 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)