diff options
-rw-r--r-- | Dokumentation_German.pdf | bin | 0 -> 177128 bytes | |||
-rw-r--r-- | LICENCE.txt | 21 | ||||
-rw-r--r-- | pd371_start.bat | 14 | ||||
-rwxr-xr-x | start_pd36 | 5 | ||||
-rwxr-xr-x | start_pd36_inst | 5 |
5 files changed, 45 insertions, 0 deletions
diff --git a/Dokumentation_German.pdf b/Dokumentation_German.pdf Binary files differnew file mode 100644 index 0000000..06ecb7b --- /dev/null +++ b/Dokumentation_German.pdf diff --git a/LICENCE.txt b/LICENCE.txt new file mode 100644 index 0000000..c8fba29 --- /dev/null +++ b/LICENCE.txt @@ -0,0 +1,21 @@ +Copyright (C) IEM 2003, Thomas MUSIL [musil@iem.at] + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details (see GnuLGPL.txt). +(e.g. http://www.gnu.org/copyleft/lesser.html) + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +IEM - Institute of Electronic Music and Acoustics +University of Music and Dramatic Arts Graz +Inffeldgasse 10/3, 8010 Graz, Austria +http://iem.at
\ No newline at end of file diff --git a/pd371_start.bat b/pd371_start.bat new file mode 100644 index 0000000..7ec3004 --- /dev/null +++ b/pd371_start.bat @@ -0,0 +1,14 @@ +@echo off
+
+set PD_PATCH=%1
+set PD_INSTALL=C:\Programme\pd-0.37-1\bin
+set PD_AUDIO=-r 44100 -audiobuf 80 -sleepgrain 10 -channels 2
+set PD_MIDI=-nomidi
+set PD_OPTIONS=-font 10
+set PD_PATH=-path C:/Programme/pd-0.37-1/iemabs -path C:/Programme/pd-0.37-1/externs
+set PD_LIB1=-lib iemlib1 -lib iemlib2 -lib iem_mp3 -lib iem_t3_lib -lib zexy -lib Gem
+set PD_LIB2=-lib iem_ambi -lib iem_bin_ambi -lib iem_eq -lib iem_lms -lib iem_matrix
+set PD_LIB3=-lib iem_spec2 -lib iem_delay -lib iem_roomsim -lib iem_tab -lib iemgui
+
+@echo starting pd ...
+%PD_INSTALL%\pd %PD_AUDIO% %PD_MIDI% %PD_OPTIONS% %PD_PATH% %PD_LIB1% %PD_LIB2% %PD_LIB3% %PD_PATCH%
diff --git a/start_pd36 b/start_pd36 new file mode 100755 index 0000000..84ebf2e --- /dev/null +++ b/start_pd36 @@ -0,0 +1,5 @@ +#!/bin/sh
+
+/usr/local/bin/pd -r 44100 -channels 2 -audiobuf 400 -audiodev 1 -nomidi \
+-path lib -path iemabs \
+-lib iemlib1 -lib iemlib2 -lib iem_mp3 -lib iem_t3_lib
diff --git a/start_pd36_inst b/start_pd36_inst new file mode 100755 index 0000000..c3768f7 --- /dev/null +++ b/start_pd36_inst @@ -0,0 +1,5 @@ +#!/bin/sh
+
+/usr/local/bin/pd -r 44100 -channels 2 -audiobuf 400 -audiodev 1 -nomidi \
+-path /usr/local/lib/pd/externs -path /usr/local/lib/pd/iemabs \
+-lib iemlib1 -lib iemlib2 -lib iem_mp3 -lib iem_t3_lib
|