Open MonkeyRep opened 4 years ago
Hi It seems that the ressource ( the sound card ) is busy. Which sound card are you using ? Are you sure there is not a another PureData, or another sound sofware running in background ?
Quit pd than tape sudo pkill pd
then restart pd. It should work
Hi Aurelien, I will do a clean image upload. I will let you know. By the way you made a great progress on the new loops!!!! I've downloaded and tried it! Very BIG changes... keep a good job! I can't wait to use once it is done!! if you need a beta tester I am available. Please let me know Cheers Sur
After have been trying a couple of times with a clean image I give up. It seems the image is broken. http://assoundessens.fr/storage/lucibox/sd-card-image/moon_loopstationV2.zip I can't use jack to use pisound.
It seems that the ressource ( the sound card ) is busy. Yes you are right Which sound card are you using? pisound v1.1 Are you sure there is not a another PureData, or another sound sofware running in background ? I used the clean image of http://assoundessens.fr/storage/lucibox/sd-card-image/moon_loopstationV2.zip .... can you maybe upload the image you use right now? Thank you in advance Sur
I think I know the problem is. This image and the patchbox don't support the new pisound (v1.1) . I use the latest Patchbox os and it works.
Hi ! I'm facing the same problem as you with a version of pisound v1.1. I found this post https://community.blokas.io/t/pisound-connect-to-puredata/1726 (maybe yours ? :smiley: ) but i cannot make it work properly. If you have solved it, could you tell me your solution ? Thank a lot !
Hi, That is mine indeed :) Yes I solved the issue. I am using the patchbox from blokas. And I use arduino usb MIDI instead of comport.
And how did you managed the patch autostart ? Could you explain your method ? And if you don't mind, could you detail the arduino usb MIDI ? Which board, and what are the changes in the patch ? Thank a lot !
I use .desktop task on rpi to autostart puredata and USB midi. For the midi I use ttymidi as a USB midi bridge. If you don't mind I will back to you next week. You need learn puredata to use midi method. By the way pisound uses 48 kHz (and up) sample rate so you need to change the sample rate on lucibox. Lucibox uses 44.1 kHz
If you are using the Patchbox OS, is probably better to use Jack instead of Alsa. patchbox-config allows use to set up correctly the sound card you want to use, 44.1kHz is needed. If you want to start the puredata patch automatically on boot, you can use a "service" from systemctl. Service system is not made for start GUI app, so you better forget about the gui starting automatically but puredata without gui works really good and the performances are better.
Here is an exemple of Service ( you can call it lucibox.service ) that work 👍
[Unit]
Description= Lucibox
After=network.target
Requires=jack.service
[Service]
EnvironmentFile=/etc/environment
Environment=HOME=/root
Type=simple
ExecStart=/bin/bash /home/patch/lucibox/script/autostart.sh
Restart=on-abort
[Install]
WantedBy=multi-user.target
this Service launch the /home/patch/lucibox/script/autostart.sh script that contains:
#!/bin/sh
sleep 1
pd -nogui -jack /home/patch/lucibox/machines/xxx/xxxxxx.pd
if you use ttymidi please adjust the autostart.sh to:
#!/bin/bash ttymidi -s /dev/ttyUSB0 & (sleep 2.5 aconnect ttymidi:0 "Pure Data:0" aconnect "Pure Data:1" ttymidi:1 ) & pd -nogui -jack /home/patch/lucibox/machines/1/moon_loopstation.pd
Hi, I really need your help! I am building the moonloop using this image http://assoundessens.fr/storage/lucibox/sd-card-image/moon_loopstationV2.zip and am using Rpi 3 Model B+ and Pisound When the PD starts the sound is off because on Media > it doesn't choose Alsa. Can you please check the code? Many thanks Sur