Download issues (above 2GB?)
-
@Lindon why? Where wld you put it? I think a lot of my customer base are laptop users, so C drive suits me (and they can always move it)
-
@DanH said in Download issues (above 2GB?):
@Lindon why? Where wld you put it? I think a lot of my customer base are laptop users, so C drive suits me (and they can always move it)
well...
A LOT of audio machines separate out the OS drive(C:/) using whatever that ultra-fast solid state thing is (Not your normal SSD) and thus the C:/ drive is pretty much dedicated to the OS, so there may well be almost no room on there at all - as NOTHING gets to use that drive except the OS itself.. so its pretty small. So your system would break pretty quickly.
-
@Lindon How can they download large files at all then? Is the downloads folder not on the C drive too?
-
@DanH said in Download issues (above 2GB?):
@Lindon How can they download large files at all then? Is the downloads folder not on the C drive too?
- nope is on some other drive...you can set your download folder to anywhere you like...
-
@Lindon hmmm, in 20 years of making music I've never encountered this, but you may be right. Running your OS drive close to capacity isn't a great idea
-
@DanH take a look at this:
-
@Lindon Yep ran my last Mac Pro off one of those. Always left 10% clear
-
Use a directory browser and ask the user where they want the samples installed to.
-
@d-healey well my idea was to install the link file in the main install so as to avoid people getting confused with multiple installers and the Hise system (which I'm desperately trying not to use)
-
@DanH said in Download issues (above 2GB?):
@d-healey well my idea was to install the link file in the main install so as to avoid people getting confused with multiple installers and the Hise system (which I'm desperately trying not to use)
Why? Do you have experience that it doesnt work? I've had thousands of downloads and installs with little or no support calls on them. (well on the install process at least)
-
@DanH Are you using expansions?
-
@Lindon My experience has been similar. Provide good documentation and you'll get very few support issues regarding the installation procedure.
-
@d-healey @Lindon yeah people really hate the standard install, @Casey-Kolb came to the same conclusion too.
-
@DanH We must sell to different people :p Are you using expansions?
-
@d-healey not yet but I will be at some stage
-
@DanH Ok, my suggestion won't work then because I was thinking you were using expansions. You'll need to do it a little differently and download ch files instead of hr and add the link file manually (through scripting).
-
@d-healey can the user choose the sample location?
-
@DanH Yeah, it's all exactly the same, user chooses the location you download the ch files to there and you create a link file that points to that location.
You can use the File API to create it. Something like this:
local fileName = "Link"; switch (Engine.getOS()) { case "LINUX": fileName += "Linux"; break; case "WIN": fileName += "Windows"; break; case "OSX": fileName += "OSX"; break; } linkFile = linkDir.getChildFile(fileName); FileSystem.browseForDirectory(FileSystem.Samples, function(dir) { linkFile.writeString(dir.toString(0)); });
You'll need to figure out what the
linkDir
is using the FileSystem API, starting from the appData folder (in fact it might be the appData folder, I can't remember). -
user chooses the location you download the ch files
Can the ch files be downloaded in a compressed format? And then uncompressed into the folder of choice? (I mean in a zip file to avoid downloading each ch file one at a time)
You'll need to figure out what the
linkDir
is using the FileSystem API, starting from the appData folder (in fact it might be the appData folder, I can't remember).Do you mean where the link file is stored? Yes it's the appData folder
-
Can the ch files be downloaded in a compressed format? And then uncompressed into the folder of choice?
Not yet, but Christoph has indicated that he will be adding zip uncompression. For now you just have to download the ch files as they are - these are already compressed from wav.
Do you mean where the link file is stored?
Yes