X-Git-Url: https://git.ao2.it/vidi-player.git/blobdiff_plain/0d79a5bbce33df27b08acf2dd67009bc9f5dd205..4ed04d98bb6205b3d96ab924991a1adc7a9465f3:/vidi-player.py diff --git a/vidi-player.py b/vidi-player.py index dbd5a75..04c8941 100755 --- a/vidi-player.py +++ b/vidi-player.py @@ -65,9 +65,9 @@ def timeline_from_midi(midi_file, video_font_path): print("Note name: %s start_time: %f duration: %f" % (note.name, start_time, duration)) - video_sample_uri = "file://%s/sample_%s.mkv" % (video_font_path, note.name) + video_sample_path = "%s/sample_%s.mkv" % (video_font_path, note.name) - timeline.add_clip(video_sample_uri, start_time, duration) + timeline.add_clip(video_sample_path, start_time, duration) return timeline @@ -103,8 +103,7 @@ def main(): timeline = timeline_from_midi(midi_file, video_font_path) if len(sys.argv) > 3: - destination_uri = 'file://' + os.path.realpath(sys.argv[3]) - timeline.save(destination_uri) + timeline.save(sys.argv[3]) else: timeline.play()