Advertisement
MrsMcLead

earsketch sample code from website

Mar 10th, 2015
956
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. from earsketch import *
  2.  
  3. init()
  4. setTempo(112)
  5.  
  6. strings = Y04_OLD_STRINGS_1
  7. bass1 = Y03_BASS_1
  8. piano1 = Y04_PIANO_1
  9. drums1 = Y04_DRUMS_SAMPLE_1
  10.  
  11.  
  12. fitMedia(strings, 1, 1, 9)
  13. fitMedia(bass1, 2, 1, 9)
  14. fitMedia(piano1, 3, 1, 9)
  15. fitMedia(drums1, 4, 1, 9)
  16.  
  17.  
  18. finish()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement