blob: 7af1c8d04045121be0ae8b465aa6062da5af64b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
readanysf~, a puredata external for reading multiple file formats.
-----------------------------------------------------------------
© august black 2003 - 2009
licensed under the GNU GPL v2
see: http://aug.ment.org/readanysf/
you will need:
o Gavl : by Burkhard Plaum
Low level multimedia API.
http://gmerlin.sf.net/
cvs -d:pserver:anonymous@gmerlin.cvs.sourceforge.net:/cvsroot/gmerlin login
cvs -z3 -d:pserver:anonymous@gmerlin.cvs.sourceforge.net:/cvsroot/gmerlin co -P gavl
cd gavl/
./autogen.sh
./configure --without-doxygen
make
sudo make install
o Gmerlin_avdecode : by Burkhard Plaum
Gmerlin_avdecoder is a general purpose media decoding library.
http://gmerlin.sourceforge.net
cvs -d:pserver:anonymous@gmerlin.cvs.sourceforge.net:/cvsroot/gmerlin login
cvs -z3 -d:pserver:anonymous@gmerlin.cvs.sourceforge.net:/cvsroot/gmerlin co -P gmerlin_avdecoder
cd gmerlin_avdecoder
./autogen.sh
./configure --without-doxygen
make
sudo make install
If you didn't change anything in the ./configure of gavl or gmerlin, AND your PD header files are in /usr/local/include you can just type make. Otherwise, open the Makefile with your favorite text editor and change the first two variables to suit your system.
----------------------------------------------------------------------------------------
Mac users:
you can install gavl/gmerlin-avdecoder either by source as above with linux or through fink.
then, first try "make -f Makefile.darwin"
If that doesn't work ...then, if you have a i386 machine with Mac OS.X 10.4 or greater, do:
export LIBRARY_PATH=/sw/lib:$LIBRARY_PATH; make -f Makefile.darwin_i386_10.4
I don't have a mac...so I can't tell what is going on there.
|