NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 241 242 243 244 245 … 433 Next »
NZ DVB-S Tuning ini

NZ DVB-S Tuning ini
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#1
2013-10-11, 11:13 PM
Prime has moved transponders therefore you will need a new 1600 OPTUS D1 FTA (160.0E).ini (attached).... (or use the full OPTUS D1 (160.0E)) to tune it...... this was meant to be included in the new 3.1.1 version but somehow seems to have got missed at the last minute
siliconaudio
Offline

Member

Posts: 240
Threads: 54
Joined: Jul 2008
#2
2013-10-13, 10:32 AM
Bugger! This re-introduces a problem that is the reason I stopped getting C4 from the SKY transponder. For the TVNZ channels, I now have the FreeView EPG and the SKY EPG overlaid. As I click to the right through the EPG, I have to click twice per programme. Each click gives me a slightly different show synopsis, one from FreeView and one from SKY. What a pain in the butt!

Is there any way around this? If not, it's not worth the grief and I will just ditch Prime.
JonnyCam
Offline

Posting Freak

Posts: 1,153
Threads: 87
Joined: Feb 2006
#3
2013-10-13, 08:04 PM
I just use epg collector and get one DVB-S for the sky channels, and one DVB-T for the freeview.
Then I have the channels set to use one or the other file, and it updates fine.

I find epg collector faster that the scanning in NPVR (although haven't tried it for a while)
It's another program to install & maintain, but once setup not an issue.
"Shut up brain, or I'll stab you with a Q-Tip!"

--= Win7, C2D 2.93 GHz, ASUS 9400GT Silent, 2GB Ram, Few HDD's, 3TB unRAID server, Samsung 50" 1080p Plasma via HDMI, 40" 1080i LCD via VGA =-- * PVR2000 Analog PCI / Avermedia DVB-S PCI / Hauppauge 2200 DVB/Analog * PCH GBPVR Client * *BD-E6500 w/ NPVR client*
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#4
2013-10-13, 09:18 PM
I also use EPGCollector & don't have that problem, it's really easy to setup & I also do some post work (automatically) on the xmltv file after epgcollector grabs it to remove things like "All New" from the program titles etc. before NextPVR imports it.
siliconaudio
Offline

Member

Posts: 240
Threads: 54
Joined: Jul 2008
#5
2013-10-13, 10:22 PM
Thanks guys - I will give EPGCollector a try. If this solves my problem, I may even grab C4 again Smile I prefer to keep things as absolutely simple as possible, but there's no escaping I will need to work around this.

Thanks again.
Waynesm
Offline

Member

Posts: 107
Threads: 27
Joined: Mar 2009
#6
2013-10-14, 10:58 PM
post work (automatically) on the xmltv file.
Jaggy,
I am very interested in this to remove eg Film,Prime Flicks,Sunday Cinema etc.
Is it possible to provide details?
Thanks
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#7
2013-10-15, 12:54 AM
Yeas ago another member posted about a find & replace utility & I have used it ever since, I just use the Replace.exe version from here http://www.bestcode.com/html/file_utilities.html (it took some googling to find this link again I can tell you)


I have a copy of rename.exe permanently in c:\progs\tvguide\guide

Code:
REM guide title rename
cd\
cd c:\progs\tvguide\guide
if exist tvguide.xml del tvguide.xml
if exist c:\progs\tvguide\tvguide.xml copy c:\progs\tvguide\tvguide.xml c:\progs\tvguide\guide

replace -fname tvguide.xml -casesens -find "<title>All New A" -replace "<title>A"
replace -fname tvguide.xml -casesens -find "e>All New A" -replace "e>A"
replace -fname tvguide.xml -casesens -find "<title>All New B" -replace "<title>B"
replace -fname tvguide.xml -casesens -find "e>All New B" -replace "e>B"
replace -fname tvguide.xml -casesens -find "<title>All New C" -replace "<title>C"
replace -fname tvguide.xml -casesens -find "e>All New C" -replace "e>C"

copy c:\progs\tvguide\guide\tvguide.xml c:\progs\tvguide
cd\

The reason for the two lines for each change is I found in the past that it would sometimes miss the odd one but since I started doing it twice slightly differently it has never failed in years

I can't remember if I tried just doing a

replace -fname tvguide.xml -casesens -find "<title>All New " -replace "<title>"

when I set this up years ago or if didn't think of it at the time but it would be worth trying (& I will someday soon)
Waynesm
Offline

Member

Posts: 107
Threads: 27
Joined: Mar 2009
#8
2013-10-15, 04:39 AM
Thanks for reply. Something to work on a rainy day.
In the meantime I found "A.F.9" Windows freeware which I can use manually and achieve what I want for now
Cheers
Waynesm
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#9
2013-10-15, 10:16 AM
I wouldn't think that it would need a rainy day...., maybe a rainy hour (or two)....
I did go with the rename.exe program because it was rather basic & easy to understand (there are many more powerful, but also harder to figure out varieties of find & replace out there). Once you have a full list for replacing a prefix it's just a case of copying it & doing a find & replace (notepad style) on the name & then pasting it back in so it takes no real time to add different ones to it.

I have also had another think about using just replace -fname tvguide.xml -casesens -find "<title>All New " -replace "<title>" & I seem to remember the problem with it was it left the space at the beginning of the name... but I will have another play as soon as I get some spare time
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#10
2013-10-18, 12:19 AM
Jaggy Wrote:I have also had another think about using just replace -fname tvguide.xml -casesens -find "<title>All New " -replace "<title>" & I seem to remember the problem with it was it left the space at the beginning of the name... but I will have another play as soon as I get some spare time

Well what do you know, it pays to go back & re-look at stuff after you have done things in a big hurry to keep the Boss happy..... the

replace -fname tvguide.xml -casesens -find "<title>All New " -replace "<title>"

works just fine Smile

so here is my updated rename part out of my UpdateEPG.bat

Code:
rem I add these on a case by case basis
replace -fname tvguide.xml -casesens -find "<title>James May's" -replace "<title>James Mays"
replace -fname tvguide.xml -casesens -find "e>James May's" -replace "e>James Mays"

rem removed from the beginning of the title
replace -fname tvguide.xml -casesens -find "<title>All New " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>All New " -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Film: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Film: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Film:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Film:" -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Movie: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Movie: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Movie:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Movie:" -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Prime Flicks: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Flicks: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Prime Flicks:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Flicks:" -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Prime Presents: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Presents: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Prime Presents:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Presents:" -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Prime Rocks: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Rocks: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Prime Rocks:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Prime Rocks:" -replace "e>"

replace -fname tvguide.xml -casesens -find "<title>Sunday Cinema: " -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Sunday Cinema: " -replace "e>"
replace -fname tvguide.xml -casesens -find "<title>Sunday Cinema:" -replace "<title>"
replace -fname tvguide.xml -casesens -find "e>Sunday Cinema:" -replace "e>"


rem removed from the end of the title
replace -fname tvguide.xml -casesens -find " Continued</title>" -replace "</title>"
replace -fname tvguide.xml -casesens -find " Continued</t" -replace "</t"

replace -fname tvguide.xml -casesens -find " Encore</title>" -replace "</title>"
replace -fname tvguide.xml -casesens -find " Encore</t" -replace "</t"
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  NextPVR hangs when tuning to offline channel? CormacBaptiste 2 1,897 2021-02-03, 01:29 PM
Last Post: Graham
  NextPVR hangs when tuning to offline channel madbrain 2 1,732 2020-07-06, 09:09 PM
Last Post: madbrain
  Tuning time arrbee99 8 3,718 2017-12-29, 05:27 AM
Last Post: arrbee99
  Fine Tuning - naming files or EPG not have data? TeleFragger 11 3,264 2017-11-18, 04:36 PM
Last Post: TeleFragger
  New Installation, fine tuning issue. ruorbe 3 1,638 2017-01-04, 10:34 AM
Last Post: ruorbe
  DVB-C tuning problem striben 61 14,480 2016-12-19, 07:48 PM
Last Post: sub
  Switced Digital Channel tuning on Hauppauge 2250 and Avermedia MythDuet A188C TVHelp 7 2,092 2016-10-15, 11:00 PM
Last Post: BrettB
  Tuning wrong channel snagglewest 13 3,858 2016-06-20, 03:27 AM
Last Post: mvallevand
  Unable to start device: DVB-C tuning failed Alcpaone 6 2,037 2016-05-17, 09:58 PM
Last Post: sub
  Channel Logos and 3 Digit Tuning quek9 7 2,603 2016-03-11, 08:49 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