Re: [Freevo-users] EPG via DVB-T in Germany

2008-03-26 Thread Stephan Mueller
Hi Tobias,

* Tobias Geis [EMAIL PROTECTED] [26.03.2008]:

 This is my final script:

Thanks for sharing this! :)


Cheers,

Steph.

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] EPG via DVB-T in Germany

2008-03-26 Thread Adam Charrett
On Wed, March 26, 2008 1:14 am, Tobias Geis wrote:
 Hi,

 since tv_grab_tv_today does not work, i tried to use the EPG data from the
 DVB-T signal.
 I found the tool tv_grab_dvb from Mary Bryars:
 http://www.darkskiez.co.uk/index.php?page=tv_grab_dvb
 snip

For those of you using DVBStreamer you can also use the little script that
Jonathan Isom provide to update the EPG data while the streamer is idle
and then dump it to an xmltv file.

See this link for more details:
http://dvbstreamer.sourceforge.net/mediawiki/index.php/FAQ#Q._How_do_I_update_the_EPG_data_on_all_my_multiplexes_so_I_can_use_.27dumpxmltv.27_to_get_a_up-to-date_xmltv_file.3F

Cheers

Adam


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] EPG via DVB-T in Germany

2008-03-26 Thread John Molohan
Adam Charrett wrote:
 On Wed, March 26, 2008 1:14 am, Tobias Geis wrote:
   
 Hi,

 since tv_grab_tv_today does not work, i tried to use the EPG data from the
 DVB-T signal.
 I found the tool tv_grab_dvb from Mary Bryars:
 http://www.darkskiez.co.uk/index.php?page=tv_grab_dvb
 snip
 

 For those of you using DVBStreamer you can also use the little script that
 Jonathan Isom provide to update the EPG data while the streamer is idle
 and then dump it to an xmltv file.

 See this link for more details:
 http://dvbstreamer.sourceforge.net/mediawiki/index.php/FAQ#Q._How_do_I_update_the_EPG_data_on_all_my_multiplexes_so_I_can_use_.27dumpxmltv.27_to_get_a_up-to-date_xmltv_file.3F

 Cheers

 Adam
   
Sounds like info that would be useful on the wiki ;)

John

-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] EPG via DVB-T in Germany

2008-03-25 Thread Tobias Geis
Hi,

since tv_grab_tv_today does not work, i tried to use the EPG data from the
DVB-T signal.
I found the tool tv_grab_dvb from Mary Bryars:
http://www.darkskiez.co.uk/index.php?page=tv_grab_dvb

My first try was with this little script:

for freq in `cut channels.conf -d : -f 2|sort -u`; do dvbtune -q -c 0 -f
$freq 2/dev/null; ./tv_grab_dvb  ./epg.xml; done;

And it worked...

It is important to run tv_grab_dvb direct after tuning to a DVB-T frequence.

Now i can get EPG data without grabbing data with XMLTV from the TVToday
Homepage.

This is my final script:
--snip--
#/bin/sh
TV_XML=/opt/freevo/epg/TV.xml;
HEADER=?xml version=\1.0\ encoding=\UTF-8\?\n!DOCTYPE tv SYSTEM
\xmltv.dtd\\ntv generator-info-name=\dvb-epg-gen\;
FOOTER=/tv;
LOG=/var/log/dvb_egp_grep.log;
frequences=`cut channels.conf -d : -f 2|sort -u`;
DATUM=`date`;

echo --  $LOG;
echo $DATUM  $LOG;

for freq in $frequences
do
 dvbtune -q -c 0 -f $freq 2$LOG;
 ./tv_grab_dvb -s -u -d -c -f ./epg_$freq.xml 2$LOG;
 lines=`wc -l ./epg_$freq.xml|cut -f 1 -d  `;

 #Kopf und Fußzeilen entfernen; Tempfile erstellen
 head -n $(($lines-1)) ./epg_$freq.xml|tail -n $(($lines-4)) 
./epg_tmp_$freq.xml
done;

echo -e $HEADER  $TV_XML;
for datafile in epg_tmp_*
do
 cat $datafile  $TV_XML;
done;
echo $FOOTER  $TV_XML;

## Tempfiles löschen
rm epg_tmp_*
snip-

Ciao
Togeis


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] EPG and DVB-T

2005-08-10 Thread tobe
Hi again,

ok some questions regarding EPG data remain. As I said, i am using a
Hauppauge Nova-T DVB-T card. Xine is working and showing my TV channels. So
I recently heard (Thanks Tanja ;) ) that EPG is not available with budget
dvb-t cards.
I am getting EPG data with windows, so there should be a way to get them.
Maybe with another software? I could even code something myself, but i'm not
very proficient with linux device drivers. Any further tips here?

Second alternative was the new tv_grab_de_tvtoday. With the old version,
some months ago, i had the problem, that a scan over 3 days and about 15
channels took me about 2 hours. Is that the usual time?
And I was unable to find a compiled version of the new grabber. I don't know
about compiling these grabbers (the CVS i found contained only a
tv_grab_de_tvtoday.in file?) Any links here?

My third alternative would have been NextEPG. Complete EPG data is sent over
some hidden pages inside VideoText wich I can use under windows. Has anyone
tried something in this direction?

Thanks again,
ToBe

-- 
GMX DSL = Maximale Leistung zum minimalen Preis!
2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] EPG and DVB-T

2005-08-10 Thread Stephan Mueller
* [EMAIL PROTECTED] [EMAIL PROTECTED] [050810 17:12]:

 Second alternative was the new tv_grab_de_tvtoday. With the old version,
 some months ago, i had the problem, that a scan over 3 days and about 15
 channels took me about 2 hours. Is that the usual time?
 And I was unable to find a compiled version of the new grabber. I don't know
 about compiling these grabbers (the CVS i found contained only a
 tv_grab_de_tvtoday.in file?) Any links here?

yes, the time for the scan is in the normal range (at least on my system
it also takes at least one hour). tv_grab_de_tvtoday is written in perl,
so no need to compile. ;)

 My third alternative would have been NextEPG. Complete EPG data is sent over
 some hidden pages inside VideoText wich I can use under windows. Has anyone
 tried something in this direction?

scaning with NextEPG takes also some time. I guess it is not much faster
than tv_grab. But you don't need a working internet connection, so this
might be the better option if you have an analog tv card.


Cheers,

Steph.


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users