Loading sub-menu...

Cookbook

Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version. Compare with Current  |   View Page History

In this section you will find specific solutions for specific needs.

  1. Epiphan VGA2USB Module Installation
  2. Hauppauge Cards Configuration
  3. UDEV rules
  4. Autostart

Epiphan VGA2USB Module Installation

To download the driver see http://www.epiphan.com/downloads/linux/

You should choose the driver according with some characteristics of your computer and operative system. Run the following comands on a shell to know some of them:

 
Kernel release: uname -r
Machine: uname -m

For example, for a Ubuntu 10.10 you should download this driver.

Follow the instructions in the README file to complete the driver installation.

Run the following commands on a shell (requires being root) to use the driver like a modprobe.

 
install -m 0644 vga2usb.ko /lib/modules/$(uname -r)/kernel/drivers/video/
echo options vga2usb v4l_num_buffers=2 v4l_err_on_nosignal=0 > /etc/modprobe.d/vga2usb.conf
echo softdep vga2usb pre: videodev usbvideo post: >> /etc/modprobe.d/vga2usb.conf
depmod -a

Hauppauge Cards Configuration

The Hauppauge cards can be easily configured using the utility "v4l2-ctl" in the package "v4l-utils".

Finding the right virtual device

Most Hauppauge cards create several virtual devices (i.e. several entries under the /dev directory).
Even though they correspond to the same physical device, each one has a different function (typically one for raw video and other for MPEG-encoded video), so you must make sure which is the right virtual device before proceeding. You can do this with the following command:

 
$ udevadm info --attribute-walk --name /dev/<device_file>

The first paragraph usually contains an attribute labeled "ATTR{name}" indicating the device function, e.g. "ivtv0 encoder MPG". Use it to know which specific device you want to connect to, or configure.

Setting the video standard

You can get the card's current video standard with

 
$ v4l2-ctl -S -d /dev/<device_file>

 
If you want to change it (e.g. you get NTSC but you want PAL), you can get a list of the supported video standards with:

 
$ v4l2-ctl --list-standards -d /dev/<device_file>

Find your preferred standard in the list and remember its index number. Then set the card to using that standard with:

 
$ v4l2-ctl -s <index> -d /dev/<device_file>
Setting the input type

Most Hauppauge cards have composite video and supervideo inputs, but they can only fed from one of them at a time. To see the active input use:

 
$ v4l2-ctl -I -d /dev/<device_file>

You can get a list of available inputs with:

 
$ v4l2-ctl --list-inputs -d /dev/<device_file>

To set one of those inputs as active, you need the index number of the input (provided by the previous command):

 
$ v4l2-ctl -i <index> -d /dev/<device_file>

Note: Sometimes you may get several inputs for the same connector (e.g. "Composite1", "Composite2" and "Composite3"), but just one of them is fully operational. You have to guess the right one by trial and error.

Additional tweaking

You may apply additional settings to your card with the v4l2-ctl tool. Just type "v4l2-ctl" in your shell and you will get a comprehensive list of available commands.

Making settings permanent

The settings applied with this tool will disappear between reboots. You can, however, write a script file with the appropriate commands and set it to run when the system starts.

UDEV rules

Create the file /etc/udev/rules.d/galicaster.rules where the udev rules to be applied to the devices will be added.

These are some configuration examples:

 
KERNEL=="video[0-9]*", ATTR{name}=="Epiphan VGA2USB #V2U19350", GROUP="video", SYMLINK+="screen"
KERNEL=="video[0-9]*", ATTR{name}=="ivtv0 encoder MPG", GROUP="video", SYMLINK+="camera"
KERNEL=="video[0-9]*", ATTR{name}=="UVC Camera (046d:0821)", GROUP="video", SYMLINK+="webcam"
KERNEL=="video[0-9]*", ATTR{name}=="ivtv0 encoder MPG", GROUP="video", SYMLINK+="haucamera"
KERNEL=="video[0-9]*", ATTR{name}=="ivtv0 encoder YUV", GROUP="video", SYMLINK+="hauprevideo"
KERNEL=="video[0-9]*", ATTR{name}=="ivtv0 encoder PCM", GROUP="audio", SYMLINK+="haupreaudio"

Use the following command to find out the value of ATTR{name}:

 
   $ udevadm info --attribute-walk --name=${device}

substituting "${device}" for the device's mount point (e.g. /dev/video0)

Autostart

Add the file galicaster.desktop to the folder ~/.config/autostart/

 
[Desktop Entry]
Name=Galicaster Class
Version=1.0
Type=Application
Terminal=false
Exec=python "/home/galicaster/src/galicaster/classexec.py"

Warning: Some paths may need to be adjusted to the current environment.

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.