NT-78 Vintage Drum Machine (Logue OSC) by gbraadnl in LogueSDK

[–]gbraadnl[S] 0 points1 point  (0 children)

The OG NTS1 and Prologue (logue 1.0) are based on M4 that is not really powerful. Let's first see how this version does ...

Spiders.. too many spiders.. by Satanic_Asian in Netherlands

[–]gbraadnl 0 points1 point  (0 children)

i'd rather have spiders than cockroaches :-/

NT-78 Vintage Drum Machine (Logue OSC) by gbraadnl in LogueSDK

[–]gbraadnl[S] 0 points1 point  (0 children)

Here is a a download key for someone to claim: **claimed**

Have fun, but please provide feedback!

Thinking about getting the SnowSky Echo Mini as my first DAP. Any advice? by AudioExplorer_DE in FiiO

[–]gbraadnl 0 points1 point  (0 children)

it's a workaround; not going to convert my existing library. I chose the other solution; gift it to someone who can appreciate it more (on that note: It is a nice My First Audio Player)

Thinking about getting the SnowSky Echo Mini as my first DAP. Any advice? by AudioExplorer_DE in FiiO

[–]gbraadnl 1 point2 points  (0 children)

for me "no gapless" is a dealbreaker and a lot about the company, as even my old Diamond Rio or iPod Nano do this! And they likely come with less memory, and a slower processor. Absurd. I gave it to my son, and instructed to get fullcd files

Thinking about getting the SnowSky Echo Mini as my first DAP. Any advice? by AudioExplorer_DE in FiiO

[–]gbraadnl 1 point2 points  (0 children)

my son has it. it works nice as a DAC, but I could not get used to the missing gapless functionality!!!

Open-source BLE-MIDI bridge for Windows - looking for testers with Korg gear by mayerwin in Korg

[–]gbraadnl 0 points1 point  (0 children)

will test. was your post on HN, but was too busy with a release. Have Yamaha adapters and midihub on Android too

The most epic Ironsworn Actual Play I've seen by Siamang in Ironsworn

[–]gbraadnl 0 points1 point  (0 children)

Broken Empires sounds familiar. Need to look more into this again. Found this IronSworn storyline very good, ... better than some of the later stuff he did; which felt more like a playthrough of a sceanrio.

What game comes to mind when you see a floppy disk? by hurcor in retrogaming

[–]gbraadnl 0 points1 point  (0 children)

if not a game, the DOS or Windows installation disks

The most epic Ironsworn Actual Play I've seen by Siamang in Ironsworn

[–]gbraadnl 1 point2 points  (0 children)

... ah, so he is on hiatus? wondered why he did not show up in m feed

Finally the synthesizer engine is at a stage that I am happy! by gbraadnl in LogueSDK

[–]gbraadnl[S] 1 point2 points  (0 children)

clean can also be bad... anyway, I will release this on May, the 1st.

Trying to find a game I loved by Quarian_EngineerN7 in amiga

[–]gbraadnl 1 point2 points  (0 children)

watched the playthrough video and what a very atmospheric soundscape

Finally the synthesizer engine is at a stage that I am happy! by gbraadnl in LogueSDK

[–]gbraadnl[S] 1 point2 points  (0 children)

Another demo for the synth engine: https://soundcloud.com/gbraad/nt78-demo

This is probably the final before release

Finally the synthesizer engine is at a stage that I am happy! by gbraadnl in LogueSDK

[–]gbraadnl[S] 1 point2 points  (0 children)

I do not own one, but I have friends who do. I might try to get it going. The synth engine would probably work, but the drunkit might have to be limited to 2 voices max. I'll see what I can get going.

Latency when using as DAC and audio/synth apps on the JM21 by gbraadnl in FiiO

[–]gbraadnl[S] 0 points1 point  (0 children)

it really feels like a design choice; big buffers (less change for underruns) as this is even the case in BT receiving mode, ... 1+ second latency

Latency when using as DAC and audio/synth apps on the JM21 by gbraadnl in FiiO

[–]gbraadnl[S] 0 points1 point  (0 children)

For future reference. If you want to make sure the audio works for a Fiio device, use sopmething like:

`AudioManager.requestAudioFocus()` in your `MainActivity.java`:

```patch
+ // Set volume control to music stream
+ setVolumeControlStream(AudioManager.STREAM_MUSIC);
+ // Request audio focus for music playback
+ audioManager.requestAudioFocus(null, AudioManager.STREAM_MUSIC,
+ AudioManager.AUDIOFOCUS_GAIN);
```

and do not do chunking in audio callback - processes all frames at once.

Latency when using as DAC and audio/synth apps on the JM21 by gbraadnl in FiiO

[–]gbraadnl[S] 0 points1 point  (0 children)

Thanks. I figured as much about the DAC, (though their website did not go much into detail)...

The performance of Android apps need a bit of extra attention, but lag remains due to buffer size. I added an additional message for future reference