- Reestructuración de ficheros y directorios general
- merge v0.01 --> Añadido fileselector - Añadidas fuentes de Gem y Pure Data - pix2jpg incluído en Gem. Archivos de construcción de Gem modificados. - Añadido fichero ompiling.txt con instrucciones de compilación
This commit is contained in:
parent
c9adfd020b
commit
e85d191b46
3100 changed files with 775434 additions and 3073 deletions
76
Gem/plugins/videoVLC/README.txt
Normal file
76
Gem/plugins/videoVLC/README.txt
Normal file
|
@ -0,0 +1,76 @@
|
|||
videoVLC
|
||||
========
|
||||
open up a media via VLC and display it as a live video source
|
||||
|
||||
|
||||
USAGE
|
||||
-----
|
||||
simply use any URI that VLC is capable of opening as the device name.
|
||||
e.g.
|
||||
[device screen://(
|
||||
will capture the screen and output that through [pix_video]
|
||||
[device v4l2:///dev/video1(
|
||||
will open /dev/video1 using v4l2
|
||||
[device file:///tmp/kottan.flv(
|
||||
[device /tmp/kottan.flv(
|
||||
will open the movie-file 'kottan.flv'
|
||||
|
||||
|
||||
output size
|
||||
-----------
|
||||
currently, there is no attempt to guess the original output size of the media you want to play back.
|
||||
instead, the media is always re-scaled to thhe size you request (or the default).
|
||||
change it with [dimen <w> <h>(
|
||||
|
||||
|
||||
properties
|
||||
----------
|
||||
VLC offers many, many options for configuring the media playback.
|
||||
you can use them via the properties system.
|
||||
currently there is no way to get a list of supported properties.
|
||||
you can get the available options from VLC, e.g.:
|
||||
$ vlc -H
|
||||
|
||||
example:
|
||||
vlc has an option "--screen-fps <float>"; therefore:
|
||||
[clearProps, setProps screen-fps 40, device screen://(
|
||||
will grab the screen at 40fps (rather than the default 1fps)
|
||||
|
||||
the default options are "--noaudio" and "--no-video-title-show"
|
||||
|
||||
|
||||
pre-requisites
|
||||
--------------
|
||||
videoVLC depends on VLC-1.1.11
|
||||
if you want to compile videoVLC yourself, you will also need to have the
|
||||
SDK (header-files + libvlc library) installed
|
||||
|
||||
on W32, you might want to make sure that you add the full path to VLC to
|
||||
your PATH environment variable, so videoVLC can find VLC and all the plugins!
|
||||
something along the lines of
|
||||
$ set PATH=%PATH%:%ProgramFiles%\VideoLAN\VLC
|
||||
|
||||
|
||||
COMPILATION
|
||||
-----------
|
||||
|
||||
w32/MinGW
|
||||
---------
|
||||
on w32/MinGW, configure will most likely not find your installation of the vlc
|
||||
this is what i use approximately to enable vlc support when building Gem with MinGW
|
||||
(the code is bash-script, change appropriately if you use another shell; the leading '$'
|
||||
is to indicate newlines - don't copy them)
|
||||
also make sure that VLC_PATH does not contain any spaces!
|
||||
|
||||
$ VLC_PATH="/home/zmoelnig/programfiles/i386/VideoLAN/VLC/"
|
||||
$ VLC_CFLAGS="-I${VLC_PATH}/sdk/include/"
|
||||
$ VLC_LIBS="-L${VLC_PATH} -lvlc"
|
||||
$ ./configure PKG_LIBVLC_CFLAGS="${VLC_CFLAGS}" PKG_LIBVLC_LIBS="${VLC_LIBS}"
|
||||
|
||||
again: don't forget to add ${VLC_PATH} to your PATH, prior to running Pd/Gem
|
||||
|
||||
|
||||
|
||||
AUTHORS
|
||||
-------
|
||||
brought to you by IOhannes m zmölnig
|
Loading…
Add table
Add a link
Reference in a new issue