Finalmente consegui fazer funcionar essa placa no meu debian.
primeiro instalei o módulo modconf
apt-get modconf
depois, como root (ou sudo), removi o módulo bt878
modprobe -r bt878 bttv
depois no modconf, entre no menu
kernel/drivers/media/video (Tv Video Cards)
e configure o módulo
bttv com as opções
card=72 tuner=43 radio=1
lembrar de colocar o cabo de saida da placa de captura
na entrada de microfone da placa de som, bem como
habilitar o microfone como entrada de som
Agora, só falta habilitar o rádio (que ainda não sei)
--
=========================
Alexandre Miguel de Andrade Souza
Visite meu blog http://alexandremas.blogspot.com/
Sobre php, linux e afins
quinta-feira, fevereiro 23, 2006
terça-feira, fevereiro 21, 2006
usando mod_python e py_meld
instale o mod_python, python, pyscopg e dependências
configure o apache
<VirtualHost 127.0.0.1:80>
SetHandler mod_python
PythonPath "sys.path+['/var/www/mysite']"
PythonHandler myapp
PythonDebug On
DocumentRoot /var/www/mysite
<Location "/media">
SetHandler default-handler
</Location>
</VirtualHost>
baixe o py_meld e coloque- o no diretório da sua aplicação
um arquivo de teste do funcionamento
-------------------------------------------[
from mod_python import apache
from pymeld import Meld #a kind of template engine
import re
xhtml = '''<html><body>
<textarea id="message" rows="2" wrap="off">Type your message.</textarea>
</body></html>'''
page = Meld(xhtml)
def handler(req):
req.content_type = "text/html"
path = req.uri
if path == "/":
return apache.HTTP_UNAUTHORIZED
elif re.compile("/[a-z]+/[a-z]+").match(path):
req.write(path +"\n* matched alpha sequence after second delimiter")
elif re.compile("/[a-z]+/[0-9]+").match(path):
req.write("\n* matched numeric sequence after second delimiter")
return apache.OK
--------------------------------------------------------------------------
--
=========================
Alexandre Miguel de Andrade Souza
Visite meu blog http://alexandremas.blogspot.com/
Sobre php, linux e afins
configure o apache
<VirtualHost 127.0.0.1:80>
SetHandler mod_python
PythonPath "sys.path+['/var/www/mysite']"
PythonHandler myapp
PythonDebug On
DocumentRoot /var/www/mysite
<Location "/media">
SetHandler default-handler
</Location>
</VirtualHost>
baixe o py_meld e coloque- o no diretório da sua aplicação
um arquivo de teste do funcionamento
-------------------------------------------[
from mod_python import apache
from pymeld import Meld #a kind of template engine
import re
xhtml = '''<html><body>
<textarea id="message" rows="2" wrap="off">Type your message.</textarea>
</body></html>'''
page = Meld(xhtml)
def handler(req):
req.content_type = "text/html"
path = req.uri
if path == "/":
return apache.HTTP_UNAUTHORIZED
elif re.compile("/[a-z]+/[a-z]+").match(path):
req.write(path +"\n* matched alpha sequence after second delimiter")
elif re.compile("/[a-z]+/[0-9]+").match(path):
req.write("\n* matched numeric sequence after second delimiter")
return apache.OK
--------------------------------------------------------------------------
--
=========================
Alexandre Miguel de Andrade Souza
Visite meu blog http://alexandremas.blogspot.com/
Sobre php, linux e afins
Assinar:
Postagens (Atom)