Saw Main Theme(Piano Cover)(Edit: Plus all my other new songs lol)

I have gotten 10x better at this.

I went from take 3 3-4 hour sessions to get 3 minutes of music, to getting a full song done in a little over 4 hours.

I hope that I can spend time tomorrow and next weekend finishing a few more songs and releasing a covers EP/Album.

No bandcamp link because I’m not releasing this one as a single. You will have to wait til the album comes out or rip it from youtube.

Code:
https://pastebin.com/qkWxQmgv

2 Likes

Bravo!

I hope to hear much more from you.

Eli…

1 Like

Thank you. I have finally figured out how to control velocity, and have a method to help me do offset chords, so I am near unstoppable now. >:D

Here is another song I did in the same session.

Just a simple little song, from one of my favorite animes.

Go watch Zankyou No Terror right now if you haven’t!

I should have stopped, but I didn’t. I had to get it done by the end of the day (I got it up at 11:43 PM CST :smiley:)

This has been the most productive session yet. 3 songs done. I just need 1 or 2 more and my album is done.

Sounds great!

Re the code - a quick tip if you’re interested.
The block of code you can pass to the times function allows you to access the current iteration index as it repeats - so there’s no need to keep your own counter :slight_smile: For example:

3.times do |i|
  puts i # prints out 0, then 1, then 2
end