Simple frontend/automator for Autotracker *DL Links updated*
Posted by Ntacman
April 8th, 2012 5:53 pm
Made a simple script for Autotracker. Can generate x amount of songs, specified by user. I’ll make it more fancy as needed. Enjoy.
Instructions
- Download and extract
- run frontend.py
- Success
Updated Download Links
The links are not working. Why not upload to dropbox?
The same for me. You need to be registered to acces the files.
By the way, thanks for pointing me to the original script.
Links updated, should work this time. Uploaded to Dropbox. Enjoy. @kddekadenz, No problem
, Enjoy.
“Error (403)
It seems you don’t belong here!”
Not a public download?..
Fixed. Bit new to dropbox, sorry
.
import os
a = 0
song = int(input(“How many songs should Autotracker generate?”))
while a < song :
a += 1
os.system('autotracker.py')
Had to make that change, it was refusing to work on windows otherwise. It would be interesting to ask the key in wich the song is to be created, currently i'm randomly shifting one octave up or one octave down (i'm just doing random.choice([MIDDLE_C, MIDDLE_C*2, MIDDCLE_C/2]), but it would be nice to have control)
cool, thanks
Come again? I wrote it on Windows XP. What OS/Python version are you running?
Python 2.7, Windows 7
Hmm. Do you not have python in your PATH variable? Maybe thats causing the issue. Either way, Ill upload the fix tomorrow, thanks for fixing it.