Hendrik Schreiber

Results 50 comments of Hendrik Schreiber

Hey @HelenParr , I appreciate the heads up! May I ask, how you came across this and decided to raise this issue with FFSampledSP? Cheers, -hendrik PS: It looks like...

I assume you are asking about Winterreise recordings, right? I am afraid they're copyrighted recordings and not in the public domain. You may be successful searching on YouTube for some...

I assume you wrap the `byte` array into a `ByteArrayInputStream`? Decoding from arbitrary streams is currently not supported. Try dumping the `byte` array to a file with the extension `.mp3`...

You seem to be using http://wgserve.de/biblib/ and not this package. Unfortunately, they have the same name.

Something is definitely off here... When setting the current date (i.e. `new java.util.Date()`) to an iTunes object, I currently get a time that is 2 hours later than the time...

Thanks for the quick comment. My understanding is that I should turn debug logging on and that this cannot be done via a simple configuration (i.e. without re-building). Any chance...

Ah! Thanks. The other thread mentioned re-compiling... Does the following excerpt help? ``` 2017-05-19 21:32:38,024 [ 28865] [DEBUG][JNativeHook Hook Thread] org.jnativehook: keycode_to_scancode [331]: Using normal lookup for vk_code: 78 2017-05-19...

See line 435/436: const char *kbdKeyBase = "SYSTEM\\CurrentControlSet\\Control\\Keyboard Layouts\\%s"; char *kbdKeyPath = (char *) malloc(sizeof(kbdKeyBase) + KL_NAMELENGTH) I'm no C expert, but it looks to me like you are using...

That aside, you might want to change line 447: logger(LOG_LEVEL_DEBUG, "%s [%u]: RegOpenKeyEx failed to open key: \"%s\"!\n", __FUNCTION__, __LINE__, kbdKey); to logger(LOG_LEVEL_DEBUG, "%s [%u]: RegQueryValueEx failed to query value...

Regarding that `sizeof()` comment above. The same issue occurs again in snprintf(kbdKeyPath, sizeof(kbdKeyBase) ... Also see http://stackoverflow.com/a/17298238/942774 Instead of `sizeof`, perhaps `strlen` does what you want.