~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to examples/python/Lindenmayer.py

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
print 'Filename:', filename
45
45
model.setConformPitches(True)
46
46
csound.load('../CsoundAC.csd')
47
 
csound.setCommand("csound --old-parser -m3 -RWZdfo" + filename + ".wav " + filename + ".orc " + filename + ".sco")
 
47
csound.setCommand("csound -m3 -RWZdfo" + filename + ".wav " + filename + ".orc " + filename + ".sco")
48
48
csound.setFilename(filename)
49
49
score = model.getScore()
50
50
print 'Events in generated score:', len(score)