Stephan Schulz
Stephan Schulz
after download the zip is automatically unzipped. I then place the addon in the addon folder. with a freshly .zip download from GitHub I get this error about libavutil.55.34.101.dylib not...
FYI, it works fine on Mojave, Xcode 10.3 and OF 0.11
it also seems to work after following this suggestion: https://github.com/bangnoise/ofxHapPlayer/issues/27#issuecomment-290357615
I currently had a problem with the above solution when using macOS 10.15.7, OF 0.11.0, Xcode 12.4 Thanks to [this video](https://www.youtube.com/watch?v=H1o6MWnmwpY) have I learned how to take files out of...
for now I just added this subsection function in to the addon. ``` void ofxHapPlayer::drawSubsection(float x, float y, float w, float h,float sx, float sy, float sw, float sheight){ ofTexture...
Thank you, I will check it out. I have a feeling axidraw uses something similar in their reordering call: https://axidraw.com/doc/py_api/#reordering I was hoping to do the reordering inside OpenFrameworks to...
Thanks for the info. Am I assuming correctly to do that on the `s_f.rows` data? If I get something useful working I will make a PR.
Again thank you for the tip about peak detection. I forked your code and made an attempt to add it using this c++ implementation of the using z-scores peak detection...
calling getCurrentTimestamp() does not print out any error messages. I guess it would print something in case of error, since OFXAU_PRINT seems to be used. Right? https://github.com/admsyn/ofxAudioUnit/blob/f649c84e61cc254cdf095111ce453af49d26e710/src/ofxAudioUnitFilePlayer.cpp#L79
I think this fixes it ``` int ofxAudioUnitFilePlayer::getPlayheadPos() // ---------------------------------------------------------- { /* AudioTimeStamp timestamp; UInt32 size = sizeof(timestamp); AudioUnitGetProperty(*_unit, kAudioUnitProperty_CurrentPlayTime, kAudioUnitScope_Global, 0, ×tamp, &size); // progress += timestamp/canonicalFormat.mSampleRate; return progress;...