Advertisement
Guest User

electribe 2 event recording file format

a guest
Jul 18th, 2019
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. electribe 2 event recording file format
  2.  
  3. list of 16 byte event messages
  4. time is delta time in ms
  5.  
  6. for control events:
  7. byte[4] = 1
  8. byte[6] = channel
  9. byte[8] = parameter
  10. byte[12:13] = value
  11.  
  12. for note events:
  13. byte[4] = 0
  14. byte[8] = note On or Off : channel
  15. byte[9] = note number
  16. byte[10] = velocity
  17. byte[11] = 1
  18.  
  19.  
  20. checksum in header at byte[260] is (file_size - 288)
  21.  
  22.  
  23. channel control:
  24. [ 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 ]
  25. ---------------------------------------------------------------------------------------------------------------------------------
  26. [ time | time | null | null | 01 | null | chan | null | param | null | FF | FF | lsb | msb | null | null ]
  27. [-------------------------------------------------------------------------------------------------------------------------------]
  28.  
  29.  
  30. pattern control:
  31. [ 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 ]
  32. ---------------------------------------------------------------------------------------------------------------------------------
  33. [ time | time | null | null | 01 | null | 00 | null | param | null | FF | FF | lsb | msb | null | null ]
  34. [-------------------------------------------------------------------------------------------------------------------------------]
  35.  
  36.  
  37. note event:
  38. [ 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 ]
  39. ---------------------------------------------------------------------------------------------------------------------------------
  40. [ time | time | null | null | 00 | null | null | null |onof:ch| note | vel | 01 | null | null | null | null ]
  41. [-------------------------------------------------------------------------------------------------------------------------------]
  42.  
  43.  
  44. ev control change parameter numbers
  45.  
  46. pattern parameters:
  47.  
  48. tempo 00
  49. pattern level 01
  50. mfx pad touched 02
  51. mfx type 03
  52. mfx x 04
  53. mfx y 05
  54. mfx hold 06
  55. alt 13/14 07
  56. alt 15/16 08
  57.  
  58.  
  59. part parameters:
  60.  
  61. mono / poly 13
  62. motion type 14
  63. priority 17
  64. osc type 18 0x00 - 0x198
  65. osc pitch 1a x40 < x00 < x3f -64 < 0 < 63
  66. glide 1b
  67. osc edit 1c
  68. filtype 1d
  69. filter cut 1e
  70. res 1f
  71. eg 20
  72. mod type 21 0x00 - 0x47
  73. mod sp 22
  74. mod depth 23
  75. attack 24
  76. decay 25
  77. lev 26
  78. pan 27
  79. ampegon 28
  80. mfxsend 29
  81. ifx type 2a 0x00 - 0x25
  82. ifx edit 2b
  83. ifxon 2c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement