@David-Healey ok got it
Posts
-
RE: Preset browser selection reset on project loadposted in Feature Requests
@David-Healey David,
is this committed now in the develop branch? -
RE: Packaging Plugins and Apps Workshops Now Availableposted in General Questions
@Sifres
The storefront was easy to setup, but
I have a half finished website. I was just testing it out, but seems to be really great so far.
...and I havent tried that JUCE module that can work with License activations. -
RE: Packaging Plugins and Apps Workshops Now Availableposted in General Questions
@bendurso i setup a mock moonbase storefront on my squarespace website,
but i was curious about the JUCE module that can work with License activations, which i think only works with juce 8? -
RE: Packaging Plugins and Apps Workshops Now Availableposted in General Questions
@bendurso are you using juce 8 with moonbase?
-
RE: Channel Amount Mismatch when converting to monolithposted in General Questions
@elemen8t
i can only get it to work using the method david mentioned:Select all the samples, right click in the mapping window, Tools > Merge into multi mic samples
the samples do have to be ...exactly the same length for each mic position.
also, doesnt work in juce 8 last time i checked. if you are using juce 8.
-
RE: JUCE 8 Starter license (free tier) + HISE commercial (closed source) license?posted in General Questions
@HISEnberg yes, I couldnt get the mulitmic sample creation to work in 8.
and had a few problems exporting the binary on mac, but i could work around that part.
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@Lindon
The sample map issue was a seperate issue, but didnt happen until i moved to juce 8.i got this error here
#error "Building for OSX 10.10 and earlier is no longer supported!
when trying to actually export an audiounit / vst on my mac build with juce 8.I actually didnt get that error on a build with juce 8 i tried on windows.
but i still couldnt convert the samplemap to hlac monolith on the windows build.
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@David-Healey
was trying juce 8,guess ill go back to 6 for now.
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@David-Healey
you think its my build?given that other error i was getting trying to export a plugin.
should i just build hise again?
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@David-Healey the sample map name is just the xml file?
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@David-Healey
crashed again after creating 1 channel -
RE: convert samplemap to hlac monolith crashingposted in General Questions
right there in the sample map
-
RE: convert samplemap to hlac monolith crashingposted in General Questions
@David-Healey
so i created a brand new project.
simple clean build with just a sampler and 4 mic channels.
and im using a set of samples i used before that i know were able to convert to a monolith.so i import those samples into the sampler file name token parser, ignored the multimic token, and just used notename. merged into multimic samples after importing.
saved the samplemap. compiled and saved xml.
monolith on export crashes after 1 channel.
also tried to export the plugin again as vst/audio unit.
same problem from before.[MONOLITH TEST - Shared Code] Compiling include_melatonin_blur.cpp
/Users/jeffdavis/Desktop/HISE/JUCE/modules/juce_core/system/juce_TargetPlatform.h:177:8: "Building for OSX 10.10 and earlier is no longer supported!"
177 | #error "Building for OSX 10.10 and earlier is no longer supported!maybe i should just delete and try to build hise again?
this is juce 8 if that matters, latest dev branch build. unless it changed from yesterday -
convert samplemap to hlac monolith crashingposted in General Questions
on the newest develop branch,
hise is crashing when trying to convert samplemap to hlac monolith.
I have a multimic setup, and it crashes after completing the first channel.anyone else havin this problem?
-
RE: Moonbaseposted in General Questions
@David-Healey said in Moonbase:
if you then reexport from HISE the juicer file will be recreated and your changes overwritten, that's probably the issue you were running into
yes i believe this was the issue.
but im also wondering if i somehow screwed up changing over from 6 to 8. -
RE: Moonbaseposted in General Questions
every time i tried to compile a binary from HISE, i got an error saying that building for OSX 10.10 and earlier was no longer supported.
so I patched this code:
Force macOS deployment target for JUCE 8 (export keeps generating 10.9)
PBXPROJ="Builds/MacOSX/Baikonur 4.xcodeproj/project.pbxproj"
if [ -f "$PBXPROJ" ]; then
echo "Patching MACOSX_DEPLOYMENT_TARGET to 10.13 for JUCE 8..."
sed -i '' 's/MACOSX_DEPLOYMENT_TARGET = 10.9;/MACOSX_DEPLOYMENT_TARGET = 10.13;/g' "$PBXPROJ"
sed -i '' 's/MACOSX_DEPLOYMENT_TARGET = 10.10;/MACOSX_DEPLOYMENT_TARGET = 10.13;/g' "$PBXPROJ"
fion the batchfile to get it to stop reverting to 10.9
NOT my code or idea..was from an LLM.
-
RE: Moonbaseposted in General Questions
so i had to create a patch on the batchfile to get it to stop reverting to 10.9.
I never would have figured that out on my own, I used cursor. And im wondering if somehow i compiled hise wrong going from 6 to 8?
And now Ive changed the macos deployment target to 10.13. in projucer. So ill make another test plugin and see if it works at some point.
Still just puzzled why it kept doing that.
