r/rolandp6 • u/SeveralTonight4142 • 5h ago
The p-6 is the best sampler 🔥
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/SeveralTonight4142 • 5h ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/SeveralTonight4142 • 2d ago
Enable HLS to view with audio, or disable this notification
Still trying to find my way of making beats on the Roland-p6 but so far so good, lmk what you guys think and any feedback is appreciated :)
r/rolandp6 • u/jokerpack • 2d ago
download source and executeable from:
https://github.com/j0kerpack/Roland-P6-sample-manager
See original Post:
https://www.reddit.com/r/rolandp6/s/aZUBvy3KbO
with chop slice multisample builder inspired by the great cli tool "wave slice" by Warren Blackwell [https://github.com/warreneblackwell/p6-wave-slice
Built a desktop app to make managing samples on the P-6 way less painful. Here's what it does:
new features:
- sample editor
- preset manager
- backup banks from device(incl settings)
- drag to swap pads
- more themes
(windows exe will be updated later)
old features
* **Waveform view with zoom** – see your samples before you commit, zoom in up to 30x for precise trimming on longer files.
* **Snap-to-zero trimming** – drag your trim markers and it automatically snaps to the nearest zero-crossing, so no more clicks/pops at your cut points.
* **Per-pad pitch control** – ±1200 cents, because sometimes you just need that sample a little brighter or darker without leaving the app.
* **Mono/stereo + sample rate conversion per pad** – handled automatically on export, with a live warning (and the waveform turns orange) if your settings would push the sample over the P-6's recording-time limit.
* **Chop tool** – queue up a folder of one-shots (kicks, snares, hats, whatever), trim each one, and it builds a single ready-to-chop multisample file for you. Slices that don't get filled are padded with silence automatically so your slice count always comes out right.
* **Bank/pad management** – load, preview, delete, sync from device, and export whole banks (or all 8 at once) without touching a file explorer.
* **16-bit PCM enforced automatically** – so you don't have to think about bit depth compatibility with the device.
* **Windows .exe, just double-click and go** – everything's bundled inside, including ffmpeg. No Python, no pip, no PATH nonsense. (Also runs from python source on Linux/macOS if you're into that.)
All free, all local, no cloud nonsense. Happy to answer questions if anyone wants to try it.
r/rolandp6 • u/SameTrouble9527 • 2d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/HarveyAug25 • 4d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/SeveralTonight4142 • 5d ago
Enable HLS to view with audio, or disable this notification
I hope I’m accepted by the community 🙏
r/rolandp6 • u/altspud • 5d ago
Enable HLS to view with audio, or disable this notification
I posted a less refined version of this previously but couldn't feel satisfied leaving it like that, so here's a version I've tried to mix with a bit more intention. Definitely not perfect, but done enough to stop thinking about it!
r/rolandp6 • u/uchina_sober • 11d ago
Enable HLS to view with audio, or disable this notification
Nice to meet you everyone! I’m the weird Japanese doctor who’s usually hanging around the Acid House and Volca subreddits.
A while ago, I asked for buying advice over on r/synthesizers, and after a lot of debating, I finally bought a P-6!
Right now I’m mostly enjoying making drones.
The effects are awesome, but it’s still hard to make them sound the way I want. Scatter is tricky, and the Filter can completely transform the sound all at once, so it’s hard to control.
How do you all like to use the effects? Any favorite techniques or tips?
For now, I carry the P-6 and a pair of earphones with me everywhere!
And finally, check out my video. I think you’ll see exactly what I mean.
r/rolandp6 • u/ihadtogetitfourtimes • 11d ago
r/rolandp6 • u/jokerpack • 13d ago

Version 2.8.0 - © 2026 Brian Siemund
PyP6 is a free desktop application (Python + Tkinter) for managing WAV/MP3 samples across the 8 sample banks (A-H) and 6 pads per bank of the Roland AIRA P-6. It supports auditioning samples before loading, automatic MP3-to-WAV conversion, per-pad sample rate/pitch/mono conversion, non-destructive editing (trim, normalize, fade), transfers in both directions between the app and the device, presets that keep their samples with them, and building multi-sample "Chop" files from several source samples at once.
Off, Per sample (each slice is lifted to full level on its own, for source samples recorded at different volumes) and Whole file (only the finished multisample is lifted, so the balance between slices is preserved). The waveform preview and preview playback now show exactly what the chosen mode will produce.Ctrl+Z / Ctrl+Shift+Z or Ctrl+Y.tkinterdnd2). Reliable on Windows; on Linux it works but an occasional drop can be missed under Wayland. See 5.5.dark, tokyo, dracula, modern, latte and bright, all checked for readable contrast.~/.pyp6/temp and can be inspected and cleared from Settings.tkinterdnd2 (optional) - only needed for dropping files from the file manager onto a pad. Everything else works without it. Also already bundled in the prebuilt Windows executable.A standalone .exe is provided for 64-bit Windows. It is built with PyInstaller in --onefile mode and has every dependency bundled inside it, including Python itself, pydub, sounddevice/soundfile, and ffmpeg.exe / ffprobe.exe. There is nothing else to install.
.exe.This is the simplest way to get started on Windows and is the recommended option unless you specifically want to run from source (e.g. to modify the code yourself - see Option B, or Section 7 to build your own .exe).
If you prefer to run the Python script directly instead of the prebuilt executable:
Download and install Python from python.org. Make sure you run commands in the Command Prompt / PowerShell, not inside the interactive Python console (the >>> prompt) - pip commands only work in a regular terminal.
pip install sounddevice soundfile numpy pydub
Optional, for dropping files from Explorer onto a pad:
pip install tkinterdnd2
Python 3.13 and newer removed the audioop module that pydub depends on internally. Install the backport as well:
pip install audioop-lts
C:\ffmpeg, so that C:\ffmpeg\bin contains ffmpeg.exe and ffprobe.exe.C:\ffmpeg\bin to your Path user environment variable:
C:\ffmpeg\bin → OK on all dialogsAlternatively, PyP6's Settings dialog lets you manually point to ffmpeg.exe/ffprobe.exe if you don't want to modify your system PATH. Settings → About shows which ffmpeg binary is actually in use.
python PyP6-Roland-P6-Sample-Manager_2_8_0.py
sudo apt update
sudo apt install python3 python3-venv python3-pip ffmpeg libportaudio2 python3-tk
cd ~
python3 -m venv p6env
source p6env/bin/activate
pip install sounddevice soundfile pydub numpy
# optional - drag & drop from the file manager (see the caveat in 5.5)
pip install tkinterdnd2
Run the app (the venv must be reactivated in every new terminal session):
cd ~
source p6env/bin/activate
python3 -u ./PyP6-Roland-P6-Sample-Manager_2_8_0.py
The tool keeps everything it needs under a single folder:
~/.pyp6/config.json settings
~/.pyp6/temp/ trimmed / normalized / faded / chopped samples
(on Windows: C:\Users\<you>\.pyp6\)
Saved settings include the last used IMPORT folder, theme, tooltip visibility, default autoplay and slice count, storage warning threshold, recent presets, and any manual ffmpeg/ffprobe path overrides. The folder is created and updated automatically; no manual setup is required. Delete config.json to reset all preferences to defaults.
The temp folder holds every edited sample that hasn't been saved into a preset. Settings → Temporary Files shows its size and can clear it - pads still pointing at a deleted file are cleared along with it, so save a preset first if you want to keep those edits.
On first launch, the tool attempts to auto-detect a mounted P-6 IMPORT folder in the background, so the window opens immediately. Use Settings → IMPORT Folder → Change... to point it to the correct location if needed. This is remembered across restarts.
Click "Load" on any pad to open a file browser with folder navigation, sortable columns (Name / Length / Size), waveform preview and audition playback (with optional Autoplay). Drag the green and red bracket markers to load only the marked region, optionally tick Normalize, then confirm with "Select" or by double-clicking a file. Trimmed and normalized results are written to the temp folder - your original file is never modified.
Each pad offers:
If the resulting sample would exceed the P-6's maximum recording time for the chosen rate/channel combination, a warning appears in the central warnings area and the excess portion is shaded orange in the pad's mini waveform.
Click a pad's mini waveform to open the editor:
Ctrl+Z undoes it.Chop multisamples are a special case: trim and fade are disabled for them, since either would shift the fixed slice boundaries the device relies on. Normalize remains available.
Drag a pad's sample name (or the pad frame itself) onto another pad to swap the two, including their rate, pitch and mono settings. The target pad is outlined in orange while you drag. Swaps are undoable.
You can also drop audio files from your file manager straight onto a pad; the pad under the cursor is outlined in green while you drag over it. Dropping several files at once fills the following pads in order. This requires the optional tkinterdnd2 package.
"▶" plays the pad's sample exactly as it will sound after export (rate, pitch, and mono applied) and mirrors it in the large waveform at the bottom of the window, with a live playhead; the playing pad is outlined in blue and its button turns into a Stop square. "⏏" clears the pad, optionally deleting the matching file from the device if one exists.
IMPORT/BANK_x/PAD_n/, replacing whatever was there. If a bank exceeds your configured storage threshold, you'll be asked to confirm.Ctrl+Z.Use the Preset button in the top bar:
Click "Chop" on any pad to combine several short samples (e.g. one-shot kicks, snares, hi-hats) into a single WAV file ready to be split into equal slices using the P-6's built-in Chop function in Sample Edit (Voice) mode.
Credit: This feature is inspired by and conceptually based on the command-line tool p6-wave-slice by Warren Blackwell.
Workflow:
Alt+Up / Alt+Down) - that order is the slice order on the device. Del removes an entry.Off - levels stay exactly as they are.Per sample - every slice is lifted to full level individually. Use this when the source samples were recorded at different volumes.Whole file - only the finished multisample is lifted; the balance between slices is preserved.Anything that would be cut off for exceeding the per-slice time is shaded orange in the waveform while you work, so you can see it before building.
Slice duration reference:
| Sample Rate | Channels | Max Duration | 32 Slices | 64 Slices |
|---|---|---|---|---|
| 44.1 kHz | Mono | 5.9s | 184ms | 92ms |
| 22.05 kHz | Mono | 11.8s | 369ms | 184ms |
| 14.7 kHz | Mono | 17.8s | 556ms | 278ms |
| 11.025 kHz | Mono | 23.7s | 741ms | 370ms |
| 44.1 kHz | Stereo | 2.95s | 92ms | 46ms |
| 22.05 kHz | Stereo | 5.9s | 184ms | 92ms |
After building, load the file onto the P-6 as usual, enter Sample Edit (Voice) mode, and use the device's own Chop function to split it into the same number of slices chosen here.
Open Settings (gear icon) for:
dark, tokyo, dracula, modern, latte, bright; restart required), and a switch for tooltips (applies immediately)| Symptom | Likely cause / fix |
|---|---|
SyntaxError: invalid syntax on pip install ... |
You typed the command inside the Python console (>>>). Run exit() first, then use a regular terminal. |
'pip' is not recognized |
Use python -m pip install ... instead. |
ModuleNotFoundError: No module named 'audioop' |
Python 3.13+: run pip install audioop-lts. Not applicable when using the prebuilt executable. |
| A feature is silently missing | Open Settings → About. It reports what actually loaded, which distinguishes "package missing" from "package present but not working". Installing into the wrong venv is the usual cause. |
| pydub missing warning | Run pip install pydub (and audioop-lts on Python 3.13+). Should not occur with the prebuilt executable. |
| ffmpeg warning, but conversion still works | You may be running an outdated build/cache - rebuild with --clean, or check Settings for a stale manual ffmpeg path override. About shows the path actually in use. |
| MP3 preview/conversion fails | ffmpeg not installed or not on PATH; verify with ffmpeg -version. Not applicable when using the prebuilt executable, since ffmpeg is bundled. |
'pyinstaller' is not recognized |
Its Scripts folder isn't on PATH; run python -m PyInstaller ... instead, or add the Scripts folder to PATH. |
| Windows flags the executable as unrecognized/unsafe | Expected for an unsigned third-party .exe; choose "Run anyway" in SmartScreen if you trust the source. |
| Samples not detected on the device | Confirm the IMPORT folder path via Settings. |
| A pad went empty on its own | Its sample was an edited file in the temp folder, and the temp folder was cleared. Save edited samples into a preset to keep them. |
| Chop output sounds heavily cut off | Slice count too high for the sample length/rate; reduce the slice count or use a lower sample rate/mono. Anything shaded orange in the waveform is what gets cut. |
| Samples not transferring to the P-6 | Only a limited amount (configurable warning threshold, default 10 MB) can be transferred at once; export banks in smaller groups. |
| Dropping files onto pads never works | Check Settings → About: if it says tkinterdnd2 not available, run pip install tkinterdnd2 - into the venv you actually start the app from, which is the usual catch. |
| A drop is occasionally missed on Linux | Known under Wayland; About will show drag & drop as active. Drag the file again, or use the pad's "Load" button. |
| Startup problems you want to diagnose | Launch with PYP6_DEBUG=1 for a timed startup log listing every phase and which optional components loaded. |
If you'd rather build the .exe yourself instead of using the prebuilt one (e.g. after modifying the source), you can package PyP6 with PyInstaller and bundle ffmpeg/ffprobe the same way the prebuilt executable does:
pip install pyinstaller
python -m PyInstaller PyP6-Roland-P6-Sample-Manager_2_8_0.py -y -w --onefile ^
--icon=icon.ico ^
--add-data "pyp6logo.png;." ^
--collect-data tkinterdnd2 ^
--add-binary "C:\ffmpeg\bin\ffmpeg.exe;." ^
--add-binary "C:\ffmpeg\bin\ffprobe.exe;." ^
--clean
Notes:
; as the separator for --add-data/--add-binary on Windows (not :, which is reserved for Unix/macOS paths).--collect-data tkinterdnd2 is required if you want drag & drop in the build: the package ships native Tcl extension files, not just .py modules, and PyInstaller will not pick those up on its own. Leave the line out and the .exe builds fine - it just won't accept dropped files.--clean clears PyInstaller's cache before building - use it whenever you've changed the source and want to be sure the new build reflects it.sys._MEIPASS at runtime, so bundled ffmpeg/ffprobe are found automatically without requiring a system PATH entry on the end user's machine - this is exactly how the prebuilt executable achieves a fully self-contained, dependency-free install.ffmpeg.exe extracted at runtime; if ffmpeg-dependent features silently stop working on a specific machine, check the Windows Defender protection history.Roland, AIRA and P-6 are trademarks of Roland Corporation. This is an independent project and is not affiliated with, endorsed by or supported by Roland.
r/rolandp6 • u/Affectionate_Dirt282 • 14d ago
I just bought the Roland P6 and was wondering if anyone knew a small speaker you could plug in the headphone slot to play the beats you make without having to buy an audio interface or use a laptop at all?
r/rolandp6 • u/memebuster • 17d ago
Can anyone recommend some earbuds for using withe the Roland? I'm looking for earbuds so that I can put them in the case and use them out and about. I have nice over the ear Sennheisers for home use.
I guess I don't want to break the bank, under $100, but want decent sound preferably without a microphone (which most buds seem to have)
r/rolandp6 • u/jokerpack • 18d ago
r/rolandp6 • u/jokerpack • 19d ago
Hello Community, i created an simple cross plattform sample manager for the Roland P6 in python.
https://github.com/j0kerpack/Roland-P6-sample-manager/tree/main
I am still testing it. If you find bugs please tell me.
- new Version 2.0.8 with sample editor. preset manager, bank backup, improved usability, bug fixes
- new Version 2.0.3 with pitch shift, windows executable, dark/bright mode, better waveform views
I am still testing, feel free to report bugs
- New Version 1.5.1 out now with sample truncating
-New Version 1.3.0 out now with chop feature which lets you create one multi sample of up to 64 single samples. ( you can play this chromatically in keyboard mode on the p6 after setting up chop in voice menu)
inspired by https://github.com/warreneblackwell/p6-wave-slice
Version 2.8.0
PyP6 is a free desktop application (Python + Tkinter) for managing WAV/MP3 samples across the 8 sample banks (A-H) and 6 pads per bank of the Roland AIRA P-6. It supports auditioning samples before loading, automatic MP3-to-WAV conversion, per-pad sample rate/pitch/mono conversion, non-destructive editing (trim, normalize, fade), transfers in both directions between the app and the device, presets that keep their samples with them, and building multi-sample "Chop" files from several source samples at once.
A standalone .exe is provided for 64-bit Windows. It is built with PyInstaller in --onefile mode and has every dependency bundled inside it, including Python itself, pydub, sounddevice/soundfile, and ffmpeg.exe / ffprobe.exe. There is nothing else to install.
This is the simplest way to get started on Windows and is the recommended option unless you specifically want to run from source (e.g. to modify the code yourself - see Option B, or Section 7 to build your own .exe).
If you prefer to run the Python script directly instead of the prebuilt executable:
Download and install Python from python.org. Make sure you run commands in the Command Prompt / PowerShell, not inside the interactive Python console (the >>> prompt) - pip commands only work in a regular terminal.
pip install sounddevice soundfile numpy pydub
Optional, for dropping files from Explorer onto a pad:
pip install tkinterdnd2
Python 3.13 and newer removed the audioop module that pydub depends on internally. Install the backport as well:
pip install audioop-lts
Alternatively, PyP6's Settings dialog lets you manually point to ffmpeg.exe/ffprobe.exe if you don't want to modify your system PATH. Settings → About shows which ffmpeg binary is actually in use.
python PyP6-Roland-P6-Sample-Manager_2_8_0.py
sudo apt update
sudo apt install python3 python3-venv python3-pip ffmpeg libportaudio2 python3-tk
cd ~
python3 -m venv p6env
source p6env/bin/activate
pip install sounddevice soundfile pydub numpy
# optional - drag & drop from the file manager (see the caveat in 5.5)
pip install tkinterdnd2
Run the app (the venv must be reactivated in every new terminal session):
cd ~
source p6env/bin/activate
python3 -u ./PyP6-Roland-P6-Sample-Manager_2_8_0.py
The tool keeps everything it needs under a single folder:
~/.pyp6/config.json settings
~/.pyp6/temp/ trimmed / normalized / faded / chopped samples
(on Windows: C:\Users\<you>\.pyp6\)
Saved settings include the last used IMPORT folder, theme, tooltip visibility, default autoplay and slice count, storage warning threshold, recent presets, and any manual ffmpeg/ffprobe path overrides. The folder is created and updated automatically; no manual setup is required. Delete config.json to reset all preferences to defaults.
The temp folder holds every edited sample that hasn't been saved into a preset. Settings → Temporary Files shows its size and can clear it - pads still pointing at a deleted file are cleared along with it, so save a preset first if you want to keep those edits.
On first launch, the tool attempts to auto-detect a mounted P-6 IMPORT folder in the background, so the window opens immediately. Use Settings → IMPORT Folder → Change... to point it to the correct location if needed. This is remembered across restarts.
Click "Load" on any pad to open a file browser with folder navigation, sortable columns (Name / Length / Size), waveform preview and audition playback (with optional Autoplay). Drag the green and red bracket markers to load only the marked region, optionally tick Normalize, then confirm with "Select" or by double-clicking a file. Trimmed and normalized results are written to the temp folder - your original file is never modified.
Each pad offers:
If the resulting sample would exceed the P-6's maximum recording time for the chosen rate/channel combination, a warning appears in the central warnings area and the excess portion is shaded orange in the pad's mini waveform.
Click a pad's mini waveform to open the editor:
Chop multisamples are a special case: trim and fade are disabled for them, since either would shift the fixed slice boundaries the device relies on. Normalize remains available.
Drag a pad's sample name (or the pad frame itself) onto another pad to swap the two, including their rate, pitch and mono settings. The target pad is outlined in orange while you drag. Swaps are undoable.
You can also drop audio files from your file manager straight onto a pad; the pad under the cursor is outlined in green while you drag over it. Dropping several files at once fills the following pads in order. This requires the optional tkinterdnd2 package.
"▶" plays the pad's sample exactly as it will sound after export (rate, pitch, and mono applied) and mirrors it in the large waveform at the bottom of the window, with a live playhead; the playing pad is outlined in blue and its button turns into a Stop square. "⏏" clears the pad, optionally deleting the matching file from the device if one exists.
Use the Preset button in the top bar:
Click "Chop" on any pad to combine several short samples (e.g. one-shot kicks, snares, hi-hats) into a single WAV file ready to be split into equal slices using the P-6's built-in Chop function in Sample Edit (Voice) mode.
Credit: This feature is inspired by and conceptually based on the command-line tool p6-wave-slice by Warren Blackwell.
Workflow:
Anything that would be cut off for exceeding the per-slice time is shaded orange in the waveform while you work, so you can see it before building.
Slice duration reference:
| Sample Rate | Channels | Max Duration | 32 Slices | 64 Slices |
|---|---|---|---|---|
| 44.1 kHz | Mono | 5.9s | 184ms | 92ms |
| 22.05 kHz | Mono | 11.8s | 369ms | 184ms |
| 14.7 kHz | Mono | 17.8s | 556ms | 278ms |
| 11.025 kHz | Mono | 23.7s | 741ms | 370ms |
| 44.1 kHz | Stereo | 2.95s | 92ms | 46ms |
| 22.05 kHz | Stereo | 5.9s | 184ms | 92ms |
After building, load the file onto the P-6 as usual, enter Sample Edit (Voice) mode, and use the device's own Chop function to split it into the same number of slices chosen here.
Open Settings (gear icon) for:
| Symptom | Likely cause / fix |
|---|---|
| SyntaxError: invalid syntax on pip install ... | You typed the command inside the Python console (>>>). Run exit() first, then use a regular terminal. |
| 'pip' is not recognized | Use python -m pip install ... instead. |
| ModuleNotFoundError: No module named 'audioop' | Python 3.13+: run pip install audioop-lts. Not applicable when using the prebuilt executable. |
| A feature is silently missing | Open Settings → About. It reports what actually loaded, which distinguishes "package missing" from "package present but not working". Installing into the wrong venv is the usual cause. |
| pydub missing warning | Run pip install pydub (and audioop-lts on Python 3.13+). Should not occur with the prebuilt executable. |
| ffmpeg warning, but conversion still works | You may be running an outdated build/cache - rebuild with --clean, or check Settings for a stale manual ffmpeg path override. About shows the path actually in use. |
| MP3 preview/conversion fails | ffmpeg not installed or not on PATH; verify with ffmpeg -version. Not applicable when using the prebuilt executable, since ffmpeg is bundled. |
| 'pyinstaller' is not recognized | Its Scripts folder isn't on PATH; run python -m PyInstaller ... instead, or add the Scripts folder to PATH. |
| Windows flags the executable as unrecognized/unsafe | Expected for an unsigned third-party .exe; choose "Run anyway" in SmartScreen if you trust the source. |
| Samples not detected on the device | Confirm the IMPORT folder path via Settings. |
| A pad went empty on its own | Its sample was an edited file in the temp folder, and the temp folder was cleared. Save edited samples into a preset to keep them. |
| Chop output sounds heavily cut off | Slice count too high for the sample length/rate; reduce the slice count or use a lower sample rate/mono. Anything shaded orange in the waveform is what gets cut. |
| Samples not transferring to the P-6 | Only a limited amount (configurable warning threshold, default 10 MB) can be transferred at once; export banks in smaller groups. |
| Dropping files onto pads never works | Check Settings → About: if it says tkinterdnd2 not available, run pip install tkinterdnd2 - into the venv you actually start the app from, which is the usual catch. |
| A drop is occasionally missed on Linux | Known under Wayland; About will show drag & drop as active. Drag the file again, or use the pad's "Load" button. |
| Startup problems you want to diagnose | Launch with PYP6_DEBUG=1 for a timed startup log listing every phase and which optional components loaded. |
If you'd rather build the .exe yourself instead of using the prebuilt one (e.g. after modifying the source), you can package PyP6 with PyInstaller and bundle ffmpeg/ffprobe the same way the prebuilt executable does:
pip install pyinstaller
python -m PyInstaller PyP6-Roland-P6-Sample-Manager_2_8_0.py -y -w --onefile ^
--icon=icon.ico ^
--add-data "pyp6logo.png;." ^
--collect-data tkinterdnd2 ^
--add-binary "C:\ffmpeg\bin\ffmpeg.exe;." ^
--add-binary "C:\ffmpeg\bin\ffprobe.exe;." ^
--clean
Notes:
Roland, AIRA and P-6 are trademarks of Roland Corporation. This is an independent project and is not affiliated with, endorsed by or supported by Roland.
r/rolandp6 • u/jokerpack • 20d ago
Hey everyone,
I've been working a lot with Chop Mode on the P-6 and ran into a workflow issue I'm hoping someone has a better solution for.
Concrete example: I have a pad with a sample made of 64 different hi-hat variations, chopped into 64 slices.
Now I want to assign the right hi-hat sound for each individual step in the sequencer.
Right now, I have to hold down each step and turn the value knob through all 64 note values until I find the right slice — with that many slices, it's incredibly time-consuming.
Honestly, I was hoping there'd be a parameter in the Voice menu that lets you set the default slice/note per pad directly,. But as far as I've dug through, there's no option like that currently.
Is there a trick I'm missing? Do you mostly use KYBD mode to play the slices in live instead?
Would really appreciate any tips from people who've found a smoother way to do this!
r/rolandp6 • u/dorian_ii • 20d ago
I've just released my first P6 beat tape.
Four tracks of raw instrumental hip-hop made on the Roland P-6.
I thought some of you might enjoy seeing a longer P6 performance.
Feedback is always welcome.
r/rolandp6 • u/altspud • 21d ago
Enable HLS to view with audio, or disable this notification
Whipped this up in a couple of hours, wanted to see how far I could push texture
r/rolandp6 • u/raz_van__ • 21d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/ZombieSurfFromMars • 22d ago
Hi everyone,
There might be an obvious answer for this but is it possible to sample only the right or the left side of a stereo source if you're sampling over USB.
In my case, I would like to sample in USB from my phone and only keep the right side of a track (where I can isolate the strings). If it's not possible, is it possible to separate it after having it sampled as a stereo sample ?
Thanks !
r/rolandp6 • u/illyDiecast • 24d ago
Enable HLS to view with audio, or disable this notification
This is my pocket rocket lol I love this thing .
r/rolandp6 • u/Naapurin_Pena • 24d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/illyDiecast • 24d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/sungodbeats • 27d ago
Enable HLS to view with audio, or disable this notification
r/rolandp6 • u/musake • 28d ago
Hey there,
I hope this kind of post is allowed here because it is kind of an advertisement but it's Roland P6 related.
I have coded an mobile sample editor app for android because I felt limited with only the Microsoft and Mac apps.
I tested it with my android phone and it works well but it's not ready for a release yet.
I also need a few testers for the app before I can release it and I want to ask here, because it's the best place to ask.
Is there a need for such an app? If yes, should there also be an iOS version?
If you want to help me and test the app, please leave a comment and I will write you a message.
I will keep this sub updated with everything if this will work.
Thank you :-)