- Added FPS Counter in video tab

This commit is contained in:
Santi Noreña 2013-03-03 00:32:11 +01:00
parent 8b111d44a5
commit 13eb54a29d
11 changed files with 164 additions and 81 deletions

View file

@ -63,9 +63,9 @@ echo "export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include" >> ~/.bashrc
# Build and install ola2pd
cd ola2pd
/path/to/flext/build.sh pd gcc
/path/to/flext/build.sh pd gcc install
cd ola2pd
/path/to/flext/build.sh pd gcc
$ cp fileselector.pd_linux $HOME/pd-externals
3.2 Gem + pix2jpg
@ -75,14 +75,12 @@ cd ola2pd
comment the line 65 in the Makefile in /plugins/ImageMagick. It fails compiling.
$ make
$ make install
$ cd ..
$ cp $HOME/pd-externals/* ./../externals
3.3 fileselector
$ cd fileselector
$ make
$ cp fileselector.pd_linux ../pd
$ cp fileselector.pd_linux $HOME/pd-externals
4. LibreMediaserver
@ -96,5 +94,19 @@ cd ola2pd
5. Putting all together.
Make a directory. Copy in it:
- libremediaserver binary
- Folder scripts
- Folder puredata
- the tcl folder in the pd sources. This is only necessary to show the Pure Data GUI's. You don't need if you don't want the GUI's. Only it's good for debugging purpouses and developing, for normal use you can skip this step.
In the folder puredata copy:
- the pd executable
- Make a folder named externals and copy all the externals to it. All the externals compiled must be in ~HOME/pd-external.
There are externals from third party we do not track the sources files and are a must running libremediaserver. That externals can be retrieved compiled in the libremediaserver release packet in the downloads page ot the web project. All are binaries from the packets of Debian distribution (counter, gate, split, prepend,...) from pd-zexy, pd-cyclone, pd-ogg. I'am actively developing and i am adding the sources of these externals to repository when they are necessary (Gem) or making my own fork to adapt when i need (fileselector, pix2image) or trying using alternatives in PD Vanilla. I want to keep only the minimun necessary in this chapter. Alternativaly i want to make a compilation script that would do the complete compilation process, including these externals, but it's not a prioriy at this moment.
..........