Publicado en Informatica, Ubuntu

Como Compilar Cinelerra para Jaunty

Les dejo acà Como Compilar Cinelerra para Jaunty

Jaunty Jackalope | Intrepid Ibex | Hardy Heron | Gutsy Gibbon |

Here are the Ubuntu packages repositories. Detailed instructions for installation can be found in the Manual.

9.04 Jaunty Jackalope

for all x86 (full working on 32 and 64 bits), by Paolo Rampino:
deb http://akirad.cinelerra.org akirad-jaunty main

Installation notes:
– For your convenience you can install a package for detecting your version of Ubuntu, installing akirad repository and keeping it updated.
Just double click on the link http://akirad.cinelerra.org/pool/addakirad.deb and install it with GDebi Package Installer.
Alternatively, use one of the following terminal commands:
wget -q http://akirad.cinelerra.org/pool/addakirad.deb && sudo dpkg -i addakirad.deb && rm addakirad.deb && sudo apt-get update
or
echo deb http://akirad.cinelerra.org akirad-jaunty main | sudo tee /etc/apt/sources.list.d/akirad.list && wget -q http://akirad.cinelerra.org/dists/akirad.key -O- | sudo apt-key add - && sudo apt-get update
– 4 are the packages available in the akirad repository:

cinelerracv (all computers)
cinelerracv-gl (best on computer with opengl2.0 shader)
cinelerracv-smp (best on multiprocessors computer, it allows also opengl2.0 shader)
cinelerra-swtc (extra Shape Wipe Transitions)

– Ubuntu jaunty uses Pulse Audio as Sound driver. Since it comes with a PulseAudio ESD compatibility layer, Cinelerra can be set to work with PulseAudio. Simply open Cinelerra and go to Settings->Preferences->Playback->Audio Driver. Select ESound and set the following parameters:
Server:
Port: 7007
– These packages set shmmax to 0x7fffffff and add non-English language support for Cinelerra.
– Please, report any package bug to akir4d at gmail dot com

Publicado en Ubuntu

Placa Encore TV-FM (ENLTV) en Ubuntu

Bueno, acá nuevamente para Contarles Como Instalé Mi Placa Encore TV FM (ENLTV-FM) para ver la Tele en Ubuntu Hardy.

Quizá el Primer paso ha sido un error pues el chip saa7134 ya esta incluido aparentemente en hardy pero ya esta hecho.

El procedimiento que seguimos está en el foro de ubuntu

En la consola hacer lo siguiente:

1) Instalar mercurial:

sudo apt-get install mercurial

2) Descargar el fuente del driver:

hg clone http://linuxtv.org/hg/v4l-dvb

3) Instalar el driver:

cd v4l-dvb
sudo make , o sudo make all
sudo make install

Cuando el Ubuntu empieza a cargar, carga por defecto del driver saa7134_alsa pero sin reconocer la «card» y el «tuner, es por eso hay que especificarlo.

4) sudo gedit /etc/modprobe.d/alsa_base

Buscamos

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 modprobe –ignore-install saa7134 $CMDLINE_OPTS && { modprobe -Qb saa7134-alsa ; : ; }

Le agregamos  la identifiacación de la Encore TV, para que cargue el driver correcto, quedando así:
# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 modprobe –ignore-install saa7134 $CMDLINE_OPTS && { modprobe -Qb saa7134-alsa -card=3 tuner=69 ; : ; }

En Argentina y la norma es Pal_NC, y para que funcione el tuner se debe poner 69, Tambien pueden Probar Con 37 aunque este me funcionó mejor,
La tarjeta en realidad debería ser «card=107», pero no levanta el sonido, he leído que aparentemente hay un bit 0x40001 por 0x4401 que hay que cambiar en saa7134cards.c pero no puedo hablar de ello, la Card=3 corresponde a LifeView/Typhoon FlyVIDEO2000, y anda muy bien

Tambien vamos a editar el Archivo Options de módulos:

sudo gedit /etc/modprobe.d/options

# opciones para tarjeta de captura de video con chip phillips
options saa7134 card=3 tuner=69 i2c_scan=1 ir_debug=1

Esto lo que hará es cargar la configuracion de la Encore Tv al iniciar Ubuntu.

Sigan leyendo más Abajo

Visto en Instalar Encore TV FM Tuner Pro (ENLTV) en Ubuntu 7.04 Feisty Fawn

Sigue leyendo «Placa Encore TV-FM (ENLTV) en Ubuntu»