Izmar Verhage

Results 72 issues of Izmar Verhage

When loading and saving a .ALL file from the real 2000XL, things are fine, so probably the TEST1 and TEST2 .ALL files were created when the ALL parser was in...

Tested with VST3 on macOS. When double-clicking record in VMPC2000XL, and pressing play in Ableton Live, the REC LED goes off and no recording seems to be initiated. When clicking...

I'm not 100% sure yet, but this might make sense, since the only way to sample when using the AUv3 is when using it as an AU effect, which often...

Check if `MonoResampler` can be used in `SoundPlayer`. Looks we can, after adding a `ratio` argument to `MonoResampler::resample`.

In the `.hpp` we do: ```cpp const uint32_t INTERNAL_BUF_SIZE = 100000; std::vector leftChannelCopy = std::vector(INTERNAL_BUF_SIZE); std::vector rightChannelCopy = std::vector(INTERNAL_BUF_SIZE); circular_buffer ringBufferLeft = circular_buffer(INTERNAL_BUF_SIZE); circular_buffer ringBufferRight = circular_buffer(INTERNAL_BUF_SIZE); std::vector unresampledLeft =...

enhancement

Apparently Carla does not hand off focus to the plugin window. Check if this is intended behaviour, maybe try a newer version, figure out of there's a way to change...

* MIDI control presets including the last used `config/midicontrolmapping.vmp` * `vmpc-specific.ini` These schemes are fault sensitive during version upgrades. With JSON life will be better.

- [x] SND (exactly the same as 2KXL) - [x] PGM (exactly the same as 2KXL) - [x] WAV (kind of the same, but definitely supports 16 bit PCM 44.1KHz...

enhancement

`vmpc-juce` currently does not forward MIDI clock input messages to `mpc`, see https://github.com/izzyreal/vmpc-juce/issues/87. Apart from that, there is only a partial implementation in `mpc`'s `MpcMidiInput`: ```cpp if (syncScreen->in == index...

in progress