lasp/scripts/lasp_playback

8 lines
114 B
Python
Executable File

#!/usr/bin/python
import sys
from lasp.lasp_playback import Playback
fn = sys.argv[1]
p = Playback(fn)
p.start()