-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
33 lines (26 loc) · 871 Bytes
/
README
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
This is TheoraPlay#, a C# wrapper for TheoraPlay, a library for quickly and
easily decoding Ogg Theora videos.
License
-------
TheoraPlay and TheoraPlay# are released under the zlib license. See the
licenses/ folder for details.
About TheoraPlay
----------------
For more information about TheoraPlay, visit the website:
http://icculus.org/projects/theoraplay/
About TheoraPlay#
-----------------
TheoraPlay# was written to be used for FNA's VideoPlayer. We wrap this around
TheoraPlay compiled as a shared library. The build environment for the native
library has been prepared in TheoraPlay/ as a CMake project.
Building TheoraPlay
-------------------
To build, you will need CMake as well as libogg, libvorbis and libtheora.
cd TheoraPlay
mkdir build
cd build
cmake ..
make
Building TheoraPlay#
--------------------
Just type `make` in the root directory!