lms-video/Gem/plugins/videoVLC
Santi Noreña e85d191b46 - 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
2013-02-04 18:00:17 +01:00
..
win-vs2003 - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
win-vs2008 - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
Makefile.am - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
README.txt - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
videoVLC.cpp - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
videoVLC.h - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00
vlc-videoplugin.pd - Reestructuración de ficheros y directorios general 2013-02-04 18:00:17 +01:00

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<7A>lnig