WinTV-hvr 900 come la vedo la tv?

Forum di supporto per utenti di lingua italiana
Forum rules
Topics in this forum are automatically closed 6 months after creation.
Locked
User avatar
octy92
Level 1
Level 1
Posts: 29
Joined: Wed Sep 05, 2007 2:11 pm

Post by octy92 »

Credo che chi passa di qui ti aiuterebbe anche, ma non c'è molta gente a vedere la TV su linux a quanto pare. Putroppo neanche io la uso, ho provato anche a fare qualche ricerca ma non ho trovato niente.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
diego1188

Post by diego1188 »

Credo che potresti usare ad esempio Zapping, ma sai se la scheda è supportata?
scorp123
Level 8
Level 8
Posts: 2272
Joined: Sat Dec 02, 2006 4:19 pm
Location: Switzerland

Re: WinTV-hvr 900 come la vedo la tv?

Post by scorp123 »

noire_poison wrote: Non ho idea di come farlo funzionare sulla mia cassandra gnome edition
I don't speak Italian ... but I understand it due to having had Latin for 8 years in school. So maybe someone else here can translate for you what I write.

You have the Hauppauge HVR-900 TV USB-stick, correct?

It can be made to work with Ubuntu 7.04. I assume the instructions also work with Mint. The instructions can be found here on a German blog:
http://blog.ikasweb.de/2007/05/07/haupp ... buntu-704/

Step by step in English (someone please translate this into Italiano, per favore!):

1. You need additional tools and programs from the Ubuntu standard repositories:

Code: Select all

sudo apt-get install build-essential mercurial linux-source dvb-utils
2. We need the kernel headers for your running kernel. For this we need to know which kernel is running:

Code: Select all

uname -r
3. Verify if such a package exists:

Code: Select all

apt-cache search linux-headers-$(uname -r)
4. If the system responds that such a package exists, install the package:

Code: Select all

sudo apt-get install linux-headers-VERSION
( ... replace 'VERSION' above with the correct value you found out in step No. #3)

5. Create the directory for the firmware that the card will need:

Code: Select all

cd /lib
sudo mkdir firmware
(... if the directory already exists you may get an error message here, but that's OK then ...)

6. Get the firmware:

Code: Select all

sudo wget http://www.tuxamito.com.es/em2880/firmware_v3.tgz
7. Unpack the firmware:

Code: Select all

sudo tar xvzf firmware_v3.tgz
8. Change back to your own $HOME directory:

Code: Select all

cd
9. We will now use the 'hg' program (it is part of the 'mercurial' package .... if it is missing: sudo apt-get install mercurial ...):

Code: Select all

hg clone http://mcentral.de/hg/~mrec/v4l-dvb-experimental
10. Step #9 should have created a sub-directory with the experimental 'v4l' sources in it; we need to go into it:

Code: Select all

cd v4l-dvb-experimental
11. Now we install the drivers:

Code: Select all

make
sudo make install
12. The drivers should have installed without errors. Time to reboot so everything can re-initialise properly:

Code: Select all

sudo reboot
... If the TV USB-stick was plugged in: *please remove it now* !!

13. When the reboot has completed, we need to check if the driver is there now:

Code: Select all

sudo modprobe em28xx
14. Plug the USB-stick into your system and check the kernel messages:

Code: Select all

dmesg
15. You should now see a message saying something like this:
em28xx v4l2 driver version 0.0.1 loaded
16. If you don't see any error messages: Congratulations, it works now. All you need now is a TV application. I personally use 'tvtime'. You can find it easily in 'Synaptic' and install it via there. The original author of these hints uses 'kaffeine'. Screenshot taken from there (Ika's blog):
http://blog.ikasweb.de/wp-content/myfot ... ffeine.png


Tip: On my system I had the problem that I could not get sound from my HVR-900 TV stick. I had a perfect picture ... but no sound. There is a workaround for that. You can enter this into the shell so that the sound gets diverted to your internal built-in audio card:

Code: Select all

arecord -D hw:1,0 -f S16_LE -c2 -r48000 | aplay
... The important part here is the 'hw:1,0' parameter, it defines from which sound card the sound should be intercepted and diverted. In my laptop the internal sound card has the number '0', the TV-stick therefore is number '1'. On some systems with multiple sound hardware it could also be number '2': If you are not sure which number you should put there you can tell 'arecord' to list all known sound cards for you:

Code: Select all

arecord -l
... The number that belongs to the 'em28xx' adapter is the right one!

My HVR-900 now works tip top with these instructions, I hope it works for you as well.

I hope you will be able to understand these instructions or that someone will be so nice to translate them into Italian for you.

Regards.
User avatar
octy92
Level 1
Level 1
Posts: 29
Joined: Wed Sep 05, 2007 2:11 pm

Re: WinTV-hvr 900 come la vedo la tv?

Post by octy92 »

Qui la traduzione al post qui sopra:


Hai una Hauppage HVR-900 TV USB-stick, giusto?

Si può usare con Ubuntu 7.04. Presumo che le istruzioni funzionino anche con Mint. Le istruzioni si possono trovare qui su un blog tedesco: http://blog.ikasweb.de/2007/05/07/haupp ... buntu-704/

1.Ti servono dei tool e programmi aggiuntivi dai repository standard di Ubuntu:

Code: Select all

sudo apt-get install build-essential mercurial linux-source dvb-utils

2.Ci servono gli header del kernel per il tuo kernel. Per questo ci serve sapere quale kernel sta girando:

Code: Select all

uname -r

3.Verifica se questo pacchetto esiste:

Code: Select all

apt-cache search linux-headers-$(uname -r)

4.Se questo pacchetto esiste, installalo:

Code: Select all

sudo apt-get install linux-headers-VERSION
(... sostituisci "version" con la versione che hai trovato nel passaggio n. #3)


5.Crea la directory per il firmware che serve alla scheda:

Code: Select all

cd /lib
sudo mkdir firmware
(... se la directory esiste già potresti ricevere un messaggio di errore qui, ma è normale...)


6.Ottieni il firmware:

Code: Select all

sudo wget http://www.tuxamito.com.es/em2880/firmware_v3.tgz

7.Scompatta il firmware:

Code: Select all

sudo tar xvzf firmware_v3.tgz

8.Torna alla tua $HOME directory:

Code: Select all

cd

9.Ora useremo 'hg' (fa parte del pacchetto 'mercurial'... se manca: sudo apt-get install mercurial):

Code: Select all

hg clone http://mcentral.de/hg/~mrec/v4l-dvb-experimental

10.Il passaggio #9 dovrebbe aver creato una sottodirectory con i sorgenti sperimentali 'v4l'; dobbiamo andare in questa cartella:

Code: Select all

cd v4l-dvb-experimental

11.Ora installiamo i driver

Code: Select all

make
sudo make install
12. I driver dovrebbero essere installati senza errori. Ora bisogna riavviare:

Code: Select all

sudo reboot
... Se la TV USB-stick era stata collegata rimuoverla!!


13.Dopo il riavvio, dobbiamo controllare che i driver ci siano:

Code: Select all

sudo modprobe em28xx

14.Collega la USB-stick al computer e controlla i messaggi del kernel:

Code: Select all

dmesg

15.Dovresti ora vedere un messaggio che dice qualcosa di questo tipo:
em28xx v4l2 driver version 0.0.1 loaded

16.Se non vedi alcun messaggio di errore: Congratulazioni, ora funziona. Tutto quello che ti serve ora è un'applicazione per vedere la TV. Personalmente uso 'tvtime'. Puoi trovarlo facilmente in 'Synaptic' e installarlo qui. L'autore originale di queste istruzioni usa 'kaffeine'. Screenshot preso da qui (Blog di Ika): http://blog.ikasweb.de/wp-content/myfot ... ffeine.png



Sul mio sistema ho avuto problemi perchè non sono riuscito a ricevere suoni dalla mia HVR-900 TV stick. Avevo un'immagine perfetta.... ma niente suono. Per risolvere puoi entrare nella shell e deviare il suono alla tua scheda audio interna:

Code: Select all

arecord -D hw:1,0 -f S16_LE -c2 -r48000 | aplay

... La parte importante qui e il parametro 'hw:1,0', che definisce da quale scheda video il suono debba essere intercettato e deviato. Suo mio portatile la scheda audio interna ha il numero '0', la TV-stick ha numero '1'. Su alcuni sistemi con più hardware audio potrebbe anche essere il numero '2': Se non sei sicuro puoi chiedere a 'arecord' di listare tutte le schede audio conosciute:

Code: Select all

arecord -l
... Il numero che precede 'em28xx' è quello giusto!

La mia HVR-900 ora lavora bene con queste istruzioni, spero funzionino anche a te.
Image
Q: How many IBM CPU's does it take to do a logical right shift?
A: 33. 1 to hold the bits and 32 to push the register.
agaviano

Re: WinTV-hvr 900 come la vedo la tv?

Post by agaviano »

ciao a tutti,
mi chiamo Andrea ed ho nel mio portatile (hp pavillion dv586ea) installato in dual-boot Daryna ed XP.
Assieme al pc mi diedero anche una scheda pci per il dvb-t.
La uso benissimo anche con Daryna, ma ho dovuto installarmi Kaffeyne e funziona!

ciao :)
Paolo

Re: WinTV-hvr 900 come la vedo la tv?

Post by Paolo »

Ciao a tutti,
non riesco a trovare un repository per i linux headers del kernel 2.6.21.4-eeepc.

Qualcuno mi aiuti please :( :(
Locked

Return to “Italiano - Italian”