Skip to content

Instantly share code, notes, and snippets.

View vdaluz's full-sized avatar

Victor Da Luz vdaluz

View GitHub Profile
@vdaluz
vdaluz / fibonacci-midi.py
Created February 9, 2018 03:05
Music generated from the Fibonacci sequence and output to midi
import midi
# Music generated from the Fibonacci sequence and output to midi
# Inspired by https://dev.to/daniel40392/visualizing-fibonacci-for-the-music-lover-in-you-2609
# Using https://github.com/vishnubob/python-midi for midi output
# Please excuse any python or music theory mistakes, I'm not an expert at either
print('Welcome to the Fibonacci Composer.')
x = int(input('Enter Song Length: '))
k = input('Enter Song Key (C, G, D, A, E, B, F#, Db, Ab, Eb, Bb, F): ')
#!/bin/bash
# Convert all rocksmith on-disc songs and DLC using RocksmithToTab.exe
# https://github.com/fholger/RocksmithToTab/wiki/MacUserGuide
rtt_path="/Users/vic/Downloads/RocksmithToTab/RocksmithToTab.exe"
rs_dir="/Users/vic/Library/Application Support/Steam/SteamApps/common/Rocksmith2014/"
dlc_dir="/Users/vic/Library/Application Support/Steam/SteamApps/common/Rocksmith2014/dlc/"
dest_dir="/Users/vic/Documents/Rocksmith/GuitarPro"
echo "Extracting on-disc songs..."