[PD] [PD-announce] Networked Performance Livestream (Into the Multiverse) on Tuesday, Nov 10

2020-11-09 Thread Fede Camara Halac
Hi Everybody, Here's an upcoming Networked Performance Livestream using a *hacked* Netty McNetface patch for 9 channels (before Miller bumped it up to 12 :) for the Wexner Center crew to tap the audio and mix in the video feed for streaming. Tune in via the vimeo link on this website:

Re: [PD] Sample loop - start and end point (WAV files)

2020-11-09 Thread Ingo
Thanks for the update, Dan! Ingo From: Dan Wilcox [mailto:danomat...@gmail.com] Sent: Monday, November 09, 2020 3:14 PM To: Ingo; Alexandre Torres Porres Cc: Pd-List Subject: Re: [PD] Sample loop - start and end point (WAV files) Howdy all, I did give up for a while. The

Re: [PD] Sample loop - start and end point (WAV files)

2020-11-09 Thread Dan Wilcox
Howdy all, I did give up for a while. The discussion is here: https://github.com/pure-data/pure-data/pull/897 I still have the relevant code but there was simply too much to do back then and I had to pull back and put it on the back burner.

Re: [PD] help on bash script

2020-11-09 Thread Jakob Laue
thanks, jack!     Gesendet: Montag, 09. November 2020 um 14:00 Uhr Von: "Jack" An: pd-list@lists.iem.at Betreff: Re: [PD] help on bash script Here a bash script I used to use. You can adapt it for your needs : #!/bin/bash chemin1=$(dirname "$0")/PH.pd sudo etherwake C8:60:00:2D:48:50 sleep 1

Re: [PD] help on bash script

2020-11-09 Thread Jakob Laue
Gesendet: Montag, 09. November 2020 um 13:59 Uhr Von: "Peter P." An: pd-list@lists.iem.at Betreff: Re: [PD] help on bash script * Roman Haefeli [2020-11-09 13:25]: [...] > Poor man's solution: > > put a 'sleep 5' after starting Pd. This of course introduces a race condition. Might almost

Re: [PD] help on bash script

2020-11-09 Thread Jack
Here a bash script I used to use. You can adapt it for your needs : #!/bin/bash chemin1=$(dirname "$0")/PH.pd sudo etherwake C8:60:00:2D:48:50 sleep 1 pd -nosleep -noaudio -alsamidi -midiindev 0,1 -midioutdev 0 -open $chemin1 & sleep 1 KA=$(aconnect -i | grep "Pure Data") while [ "$KA" = "" ] do

Re: [PD] help on bash script

2020-11-09 Thread Peter P.
* Roman Haefeli [2020-11-09 13:25]: [...] > Poor man's solution: > > put a 'sleep 5' after starting Pd. This of course introduces a race condition. Might almost always work™. > A slightly more advanced way: > > while ! aconnect --list | grep "Pure Data"; do sleep 0.1; > > Put that

Re: [PD] Sample loop - start and end point (WAV files)

2020-11-09 Thread Ingo
Dan Wilcox was working in the ability of [soundfiler] to read the loop point within Pd. In Pd 0.51.1 there was still no change concerning sample loop points - unless it's not documented in the help file. Reading and writing loop points outside of Pd is no problem. I've been doing this for

Re: [PD] help on bash script

2020-11-09 Thread Roman Haefeli
On Mon, 2020-11-09 at 12:54 +0100, Jakob Laue wrote: > Hey friends, > i have a raspberry pi that executes a bash script on startup. Inside > this bash script I want two things to happen. > 1) start my pd patch > 2) connect my launchpad mini (connected via usb) to pd using the > aconnect-command >

Re: [PD] help on bash script

2020-11-09 Thread Peter P.
* Jakob Laue [2020-11-09 12:54]: > Hey friends, > i have a raspberry pi that executes a bash script on startup. Inside this bash > script I want two things to happen. > 1) start my pd patch > 2) connect my launchpad mini (connected via usb) to pd using the > aconnect-command Have you tried

[PD] help on bash script

2020-11-09 Thread Jakob Laue
Hey friends, i have a raspberry pi that executes a bash script on startup. Inside this bash script I want two things to happen. 1) start my pd patch 2) connect my launchpad mini (connected via usb) to pd using the aconnect-command     ..i think i have to use aconnect because in pd itself i