This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import speech | |
| import random | |
| import music | |
| import time | |
| import math | |
| from microbit import pin1, pin2, display, button_a, button_b, sleep | |
| # See https://www.youtube.com/watch?v=DOlMiNbmLWg | |
| def scale(x, lo1, hi1, lo2, hi2) : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| name: Delay Line | |
| description: Simple delay line effect with DC removal | |
| author: osar.fr (adapted by Phil Jones ) | |
| See : https://www.youtube.com/watch?v=PEUZZCpzkWo | |
| --]] | |
| require "include/protoplug" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from enveditor import * | |
| """ | |
| Create bytebeats in FL Studio's Edison editor. Change the formula in generator(t) to change the actual bytebeat | |
| This script should be called something like bytebeats.pyscript and placed in | |
| "C:\Users\<USERNAME>\Documents\Image-Line\FL Studio\Settings\Audio scripts" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from enveditor import * | |
| """ | |
| Create bytebeats in Edison. | |
| """ | |
| def makeSample(length, srate, norm, formula): | |
| # Sample rate selection | |
| if srate == 0: |
OlderNewer