NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 130 131 132 133 134 … 1231 Next »
Freesat channel mapping

 
  • 0 Vote(s) - 0 Average
Freesat channel mapping
fausto
Offline

Member

Posts: 166
Threads: 29
Joined: Oct 2007
#1
2008-11-28, 04:59 PM
I've just got round to updating to v1.3.7 and moving my Nova-S+ card over to my newer P4 machine. I've done a scan and now have to map the channels.
I can't get on with the drop down boxes in the tuning request table. They are not nice to work with. You can't see enough of the list at a time and the scrolling is too fast. I can't keep up with it. Coupled with the fact that the channel list name does not always agree with what should be on that freq/transponder, it's driving me mad :mad:. I don't even have any hair to pull out Big Grin

Is there a slow but sure way of doing this by editing a text file somewhere maybe?? Suggestions please.
GBPVR 1.4.7, XP pro SP3, 3.2GHz P4, 1GB RAM, Hauppauge WinTV 9000 DVB-T, Hauppauge Nova-S plus, 1 MVP
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#2
2008-11-28, 06:04 PM
I don't think there is an alternative. I did make a request for a larger pulldown box for mapping but sub went walkabout.

What I often do is to manually edit the scan-?.cache file and get rid of the many odd channels that seem to be alternate languages, data or whatever, then if I feel like it, I sort the cache file on the channel name. Seems to help with the mapping.
BigMoose
Offline

Posting Freak

Posts: 838
Threads: 44
Joined: Jan 2008
#3
2008-11-28, 08:06 PM
Is it even possible to get it to ignore the encrypted ones so the list isn't as annoyingly long?
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#4
2008-11-29, 10:37 AM
I must be possible from the scanning as dvbviewer can scan for only unencrypted channels. I see nothing in the scan cache file that would identify them though. Probably down to sub when the channels get scanned.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,739
Threads: 767
Joined: Nov 2003
#5
2008-11-29, 10:51 AM
There isnt a setting in GB-PVR to ignore the encrypted channels during the scan, but you can identify them in the scan results with the "~E:T" part of the tuning request.
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#6
2008-11-29, 11:30 AM
Ah, cheers thanks for that - will save lots of time next time I have to do a full mapping.
dennit
Offline

Posting Freak

Posts: 788
Threads: 43
Joined: Aug 2007
#7
2008-11-29, 01:59 PM (This post was last modified: 2008-11-29, 02:10 PM by dennit.)
fausto Wrote:Is there a slow but sure way of doing this by editing a text file somewhere maybe?? Suggestions please.

I modify gbpvr.db3 directly using SQL in a pair of batch files:
The first is:
Code:
:This is _set_tune4.bat and is called by _set4.bat file. It sets the tuning data for a source channel number
:You can use this directly by:
: _set_tune4.bat "SOURCE_CHANNEL_NUMBER" "T:13274 etc. tuning data from scan4.cache file"
:the SOURCE_CHANNEL_NUMBER is the pid (usually)
:Always put parameters in quotes.
:It matches on the channel number for source id 4
Echo UPDATE SOURCE_CHANNEL_MAPPING > _sqlscript.scr
Echo SET enabled="Y",tuning_request=%2 >> _sqlscript.scr
Echo WHERE capture_source_oid="4" and source_channel_number=%1;  >> _sqlscript.scr
SQLITE3 gbpvr.db3 < _sqlscript.scr

This is called by another bat file that lists all the channels I want mapped and the tuning data from scan-4.cache. Here are a few sample lines (the main file has over 250):

Code:
:This is _set4.bat
call _set_tune4.bat "104" "T:12370,V,20000,78~NID:4100~ONID:4100~TSID:11~P:104~V:7458~A:7459~L:eng~PMT:33~E:T~PCR:7458~N:>Unknown1"
call _set_tune4.bat "123" "T:12370,V,20000,78~NID:4100~ONID:4100~TSID:11~P:123~V:7458~A:7459~L:eng~PMT:33~E:T~PCR:7458~N:>Unknown2"
call _set_tune4.bat "137" "T:12370,V,20000,78~NID:4100~ONID:4100~TSID:11~P:137~V:6178~A:6179~L:eng~PMT:33~E:T~PCR:6178~N:>Unknown3"
call _set_tune4.bat "210" "T:12370,V,20000,78~NID:4100~ONID:4100~TSID:11~P:210~V:4898~A:4899~L:eng~PMT:33~E:T~PCR:4898~N:>Unknown4"
call _set_tune4.bat "212" "T:12370,V,20000,78~NID:4100~ONID:4100~TSID:11~P:212~V:5410~A:5411~L:eng~PMT:33~E:T~PCR:5410~N:>Unknown5"

I use UltraEdit to convert the scan.cache file into the second bat file. A macro grabs the PID from the tuning data (it's after "P:") and constructs each line in the second bat file. The whole process takes 5 minutes or so after scanning is finished. Make sure you spend lots of time getting familiar with the structure of GBPR.db3 (I used SQL Browser Lite) , and make lots of backups. You can screw things up badly doing this sort of thing.
timh
Offline

Member

Posts: 52
Threads: 6
Joined: Feb 2006
#8
2008-12-01, 01:15 PM
martint123 Wrote:What I often do is to manually edit the scan-?.cache file and get rid of the many odd channels that seem to be alternate languages, data or whatever, then if I feel like it, I sort the cache file on the channel name. Seems to help with the mapping.

You can also create a custom scan-?.cache file using this utility, just including the channels you want:
http://gbpvr.com/pmwiki/pmwiki.php/Utility/GBPVRPidGrab

You need to have a 3rd party viewer (other than GBPVR) working with your card.
Tim
liteswap
Offline

Senior Member

Posts: 713
Threads: 70
Joined: Aug 2006
#9
2009-05-11, 03:46 PM
Struggling with this myself, as my Compro S350 is now up and running following the installation of a dish this morning. It tunes and everything fine but I seem to missing BBC 2 - it only has Scotland and Wales...so does anyone have a decluttered cache file I can start from, please? Thanks.
- Silent client PVR: HDPlex HS.1 aluminium fanless case / Thin-ITX ASRock H81TM-ITX motherboard / Intel Celeron 1850T CPU / 4GB RAM / 120GB SSD / TBS6982 DBS-S2 [SIZE=1]dual-tuner card / Win10+nPVR+Plex Media Player feeding LG OLED55B6V + Anthem MRX510 AV Receiver / PMC GB1 / B&W / REL speakers.
- Noisy NAS: Xeon / Intel mobo / 16GB RAM / FreeNAS + Ubuntu VMs on VMware ESXi + 12TB RAID
[/SIZE] running Plex Media Server

martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#10
2009-05-11, 05:32 PM
I have this in my list
Code:
T:10773,H,22000,56~NID:32~ONID:2~TSID:2045~P:6302~V:5100~A:5101~L:eng~PMT:263~TXT:5103~PCR:5100~N:>BBC 2 England
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  USA Cable Discovery Channel problems with Schedules Direct ram4x4nut 0 3,968 2013-02-21, 05:08 AM
Last Post: ram4x4nut
  Channel 4 HD new tuning string Pob 0 2,624 2012-03-29, 08:59 PM
Last Post: Pob
  Composite Channel not being tuned properly seymoria 14 6,919 2012-01-24, 01:56 PM
Last Post: seymoria
  Need help remapping Channel guide and actual channels divinehammer 3 3,785 2012-01-20, 10:43 AM
Last Post: kayleigh
  Composite channel configuration problem. seymoria 6 4,608 2012-01-15, 10:15 PM
Last Post: seymoria
  Live TV Locks Onto Different Channel persim 1 2,331 2011-10-24, 06:33 PM
Last Post: sub
  Recording fails but only on one channel (live viewing still works) dshoup 5 3,539 2011-09-19, 01:15 AM
Last Post: sub
  Channel 4 HD and sat ini DanielP 40 12,679 2011-04-12, 10:42 PM
Last Post: mvallevand
  How to get Sky Digital channel guide into GBPVR? bobster 34 11,289 2011-04-01, 08:10 PM
Last Post: bobster
  Setting for Numeric Channel Change Timeout? smajor 6 2,818 2011-03-16, 07:21 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode