aboutsummaryrefslogtreecommitdiff
path: root/Gem/README.md
blob: 8902751fd56e7af025a7353e580e8e0a6c9aa9ae (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
GEM - Graphics Environment for Multimedia
=========================================


You can get the current distribution from:
https://gem.iem.at
https://git.iem.at/pd/Gem
https://github.com/umlaeute/Gem

If you want to compile the newest (bleeding edge, and possibly unstable) source
code yourself, you can get a copy from the public git repository:

  https://git.iem.at/pd/Gem.git

There is also a mirror on github:

  https://github.com/umlaeute/Gem

Usually, you will only need the read-only repository, which you can get with

$ git clone https://git.iem.at/pd/Gem.git

# NEW

Gem is now supported by Microsoft W, Linux and macOS-X.
The IRIX version might work (but most probably will not): if you want to use Gem
under IRIX, feel free to make it work and report failure and success to me, so i
can incorporate any needed changes into the main Gem-trunk.

for installation instructions see below

# BUILDING

To build & install GEM run:
~~~
$ ./configure
$ make
$ make install
~~~

note: when using a git-clone of the Gem sources, you first need to run
`./autogen.sh` (which is a wrapper around `autoreconf -fiv`).

note: that you might want to help Gem to find the Pd-headers, e.g. by doing

~~~sh
$ ./configure --with-pd=/usr/include/pd
~~~

try the following, to see more available options:

~~~sh
$ ./configure --help=recursive
~~~

## DEPENDENCIES
Gem can utilize a lot of libraries and frameworks in order to improve its capabilities.
Most of these libraries are optional and will be detected automatically when running `./configure`.
Some libraries won't be detected automatically and you must provide additional information
on how to use them (see `./configure --help=recursive` for a list of options).

### hard (required) dependencies

The only hard requirements of Gem are:

- Pure Data
- openGL
- GLU

### soft (optional) dependencies

Support for text output is optional, but will be compiled into the "core" of Gem
(that is: once it is enabled, you will need the relevant runtime libraries in order to be able to use Gem at all)

| Library/Framework | notes                   |
|-------------------|-------------------------|
| ftgl              | Font rendering support  |
| fribidi           | support for RTL-scripts |

Most dependencies are purely optional and are only used in plugins.
If the runtime libraries are not available, Gem won't be able to use those plugins, but it will otherwise work as normal.


| Library/Framework            | Operating System | notes                                                            |
|------------------------------|------------------|------------------------------------------------------------------|
| sdl2                         |                  | Window managment                                                 |
| glfw3                        |                  | Window managment                                                 |
| assimp                       |                  | 3D model loading                                                 |
| ImageIO                      | macOS            | image reading/writing                                            |
| QuickTime                    | macOS, Windows   | only 32bit OS are supported                                      |
| libquicktime                 | Linux            | film reading/writing                                             |
| ImageMagick                  |                  | image reading/writing (many formats)                             |
| libTIFF                      |                  | TIFF image reading/writing                                       |
| libjpeg                      |                  | JPEG image reading/writing                                       |
| gmerlin_avdec                | (mostly) Linux   | film reading                                                     |
| libdc1394                    | Linux            | video capture from industry-grade "IEEE 1394" cameras            |
| libdv/libraw1394/libiec61883 | Linux            | video capture from consumer-grade "firewire" cameras             |
| libv4l2                      | Linux            | V4L2 video capture and output                                    |
| VLC                          |                  | open media as video capture via VLC                              |
| libvncclient                 |                  | grab frames via the VNC protocol                                 |
| DeckLink                     |                  | video input from  Blackmagic's DeckLink hardware                 |
| NDI                          |                  | NDI frame capture and output                                     |
| AVT                          |                  | grab frames from GiGE-devices via Prosilica's AVT SDK            |
| Halcon                       |                  | grab frames from industrial grade cameras via MVTec's HALCON SDK |
| Pylon                        |                  | grab frames from GiGE-devices via Basler's PYLON SDK             |
| OptiTrack                    |                  | capture video from OptiTrack cameras                             |
|                              |                  |                                                                  |

# INSTALLING
`make install` might work (mostly on linux)

If you want to have full control on where to install the files, use the `prefix` and `libdir` variables,
like so:

~~~sh
make install libdir=~/Documents/Pd/extra prefix=~/Documents/Pd/extra/Gem/xtra
~~~

## PREBUILT BINARIES

### Linux

Chances are high, that Gem is already packaged for your distribution.

Just run

~~~sh
apt install gem
~~~

(or the equivalent).



### Microsoft Windows

To install GEM on W32/W64 from pre-built binaries you have two options:

1. installer (preferred method)
  use the installer executable to install Gem into ...\pd\extra
  (to _build_ the installer you will have to have NSIS installed
  see build/win-nsis for details)

2. `deken` (use Pd's *Find externals* feature)

	please note that the deken package comes with all plugins.
	in most cases, you won't need all of them, and having plugins
	installed that you don't need, will considerably slow down load
	time of patches and might leed to undesired side-effects.
	therefore, if loading is too slow (or you experience weird
	things), it might be a good idea to disable plugins you don't
	need.
	disabling plugins is as simple as deleting them (or moving them
	into a subfolder)

	plugins are files of the form: "gem_<type><NAME>.dll"
	e.g. "gem_filmQT.dll" is a plugin for reading films using the
	QuickTime framework.
    a number of plugins (e.g. videoPYLON, videoHALCON, videoAVT,
    videoNDI, videoDECKLINK,...) require proprietary libraries.
	you need to obtain and install these libraries yourself; if you
    haven't done so or don't own a device that can interact with those
    libraries, you can safely remove these plugins.
	if you have no clue what this is about, these plugins are most
	likely not for you (so remove them)
    
### Apple macOS-X

Use the `deken` package.


# RUNNING

Just *installing* Gem is not enough !
You will have to tell Pd that it should load that library !!
You cannot create any Gem-objects without having loaded the Gem-library into Pd !!!

Typically, you will load Gem by putting a `[declare -lib Gem]` object into any patch that uses Gem.

Alternatively you could also add Gem to the libraries loaded at startup (via Pd's preference system),
or by starting Pd with the `-lib Gem` cmdline arguments.

Once you've successfully loaded Gem, you should see a kind of a splash screen on the Pd-console.

If loading fails, make sure you have the proper binary for you OS:
- windows: Gem.dll, Gem.m_i386, Gem.m_*
- macOS-X: Gem.pd_darwin, Gem.d_fat, Gem.d_ppc, Gem.d_*
- linux  : Gem.pd_linux, Gem.l_i386, Gem.l_ia64, Gem.l_*
- freeBSD: Gem.pd_freebsd, Gem.b_i386, Gem.b_*
- irix   : Gem.pd_irix
 - ...

# BUG-REPORTS:

Please do not hesitate to report any crashes, weirdnesses or other issues, using
our bugtracker at https://bugs.gem.iem.at
or the gem-dev mailinglist (subscription at http://lists.puredata.info)

If your mail only says "hey, it does not work !", it is an annoyance and no bug-report.
Please specify at least the following things:
- Operating-System (kernel-version,...)
- video-card, driver
- other hardware that is related to your problem (e.g.: camera)
- does your system work with similar applications (e.g.: capture-software, openGL (games, "glxgears"))
- what is the output of Pd when you start it with the "-verbose" flag
	(e.g.:"pd -verbose -lib Gem")

Please do not use the puredata bugtracker for reporting Gem-specific bugs.


# FINAL NOTES
have fun

zmoelnig@iem.at