-
8E117
I want to make a patch to generate simple melody. and I found [seq], I want to write the MIDI list for [seq], but...
what's the meaning as below:
0 144 60 100;
250 128 60 64;Is "0"&"144" mean MIDI note, and "60" mean note number, 100 mean velocity, 250 mean duration?
and what is "128", "60" "64" mean in the second line? and where is tempo?
thanks a lot...
p.s. I'm really interested in MCU, such as C51. but I'm a jackeroo in C51 & PD... Can I make some patch and download to C51 or write some code in C, and download to C51, then connect PD and MCU via USB cable?
-
8E117
I have no programming background, just build some patch by Pd.
Now, I have a new friend who know C and C++. but he don't know music and sound synthesis. We have a idea that build a general app by using C via Pd(for the sound part).
I know we can write obj in C for Pd, but the problem is how we are to take Pd patch in C?
thanks a lot...
-
8E117
I want to connect SQLite with Pd in Linux...
I found SQL library in here: http://puredata.info/dev/SQL/?searchterm=SQL
and I download "[sqlite]( src) use an embedded SQLite database".
after unzip, I make it, but I get some error...
the directory structures look like MAC OS...
maybe It work under Mac OS only?
Any idea about connect SQLite in Linux?
Thanks...
_____________________________________________________________________________
cc -I/Applications/Pd-0.42-4.app/Contents/Resources/src/ -o sqlite3.o -c sqlite3.c
cc -DMACOSX -DUNIX -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Wno-unused -Wno-parentheses -Wno-switch -I/Applications/Pd-0.42-4.app/Contents/Resources/src/ -o sqlite3db.o -c sqlite3db.c
sqlite3db.c: In function ‘sqlite3query_use’:
sqlite3db.c:754:42: warning: array subscript is below array bounds [-Warray-bounds]
cc -bundle -undefined dynamic_lookup -isysroot /Developer/SDKs/MacOSX10.4u.sdk \
-o sqlite3db.pd_darwin sqlite3db.o sqlite3.o
cc: error: unrecognized command line option ‘-bundle’
cc: error: dynamic_lookup: No such file or directory
make: *** [sqlite3db.pd_darwin] Error 1 -
-