}
});
shell.add("trackBeats", new ShellCommand() {
public String execute(Shell ci, String[] args) throws Exception {
TrackAnalysis a = currentTrack.getAnalysis();
List<TimedEvent> beats = a.getBeats();
for (TimedEvent beat : beats) {
System.out.printf("%.6f, %.6f\n", beat.getStart(), beat
.getDuration());
}
return "";