An adaptive EQ matching equal loudness contour (Fletcher-Munson curve) would be nice in the mastering chain.. Izotope Ozone? Too expensive..
I found a free program on GitHub but haven't looked into it.
EDIT : I was thinking of adding (in ver1.1):
to the end of the for loop to clear the console from error reports which occur when there are no files to handle.
EDIT 2 : as it expects a single file in the upload directory it'd need a queue system synchronized with the script/macro delays (for server use) and this is unfortunately something I can't program (so basically all there is is an agreement that if there's a .wav file in the upload folder the next uploader shouldn't upload)
EDIT 3 : I read about a Powershell cmdlet called :
which manages permissions.. basically I'd have to run two scripts, the other doing file handling and the other checking the file and managing permissions.
EDIT 4 : I was thinking :
Code:
for (){
if (Test-Path C:\Users\user\Desktop\airlab\upload\*.*) {
Get-Acl C:\Users\user\Desktop\airlab\foo | Set-Acl C:\Users\user\Desktop\airlab\upload
else{
Get-Acl C:\Users\user\Desktop\airlab\bar | Set-Acl C:\Users\user\Desktop\airlab\upload}
}
}
to be run on the side. Basically there are two folders, foo and bar. Foo is read only and bar is read-write, then the program fetches the security settings based on whether there's a file in the upload folder.. I've yet to test it though and I don't know whether Filezilla overrides the permissions.
EDIT 5 : the exported file remains a mystery.. I'd probably have to manage separate accounts in Filezilla for everyone using the service which is out of the question as I don't have a server
Bookmarks