Browse Source

add readme

Daniel Sheffield 2 years ago
parent
commit
b28f333c03
2 changed files with 48 additions and 0 deletions
  1. 46 0
      Readme.md
  2. 2 0
      epg-grab-mjh.sh

+ 46 - 0
Readme.md

@@ -0,0 +1,46 @@
+# Background
+
+Designed for use with New Zealand FreeView.
+
+Assumes you have mythtv set up as per the [setup guide](https://www.mythtv.org/wiki/Setup_General)
+
+After setting your Channel Frequency Table to New Zealand, you may need to edit the transports to match the data for your region.
+
+See [tv headend](https://github.com/PiratJones/tvheadend/tree/master/data/dvb-scan/dvb-t) git repo for the frequencies for your region.
+
+NOTE: I'm not actually sure if this is necessary, but the channel scan I did with mythtv defaults resulted in some channels missing. After deleting all channels, manually adding the transports in [Waikato](https://github.com/PiratJones/tvheadend/blob/master/data/dvb-scan/dvb-t/nz-Waikato), and running another scan, then all channels were found. However, I noticed that the resulting 5 transports were different to what I configured manually (mythtv will find and delete duplicates). It could just be that the first scan missed some channels for some reason.
+
+# Usage
+
+First, check the patches (included in the bash script as here-files) are appropriate for your use case.
+
+Then run:
+```
+./epg-grab-mjh.sh
+```
+
+Add to your daily crontab.
+
+Thanks [Matt Huisman](https://www.matthuisman.nz).
+
+See here [https://www.matthuisman.nz/2017/07/new-updated-nz-iptv-files.html](https://www.matthuisman.nz/2017/07/new-updated-nz-iptv-files.html)
+
+# Help
+
+To generate the patches, just download the epg.xml from Matt Huisman's site, and
+
+1. Copy the original xml to epg-modified.xml
+
+2. Make sure the channel names in epg-modified.xml match the output from mythtv db: ``sudo mysql -u root -p mythconverg -e "SELECT channum,chanid,icon,name,xmltvid,sourceid FROM channel WHERE visible ORDER BY channum+0;"
+
+3. Generate the diff between the original and modified xml, and save as rename.patch: ``diff -u epg.xml epg-modified.xml > rename.patch``
+
+4. Apply the rename.patch to the original xml
+
+5. Remove any channels in epg-modified.xml that mythtv hasn't found, so long as you are sure you can't get from your location
+
+6. Generate the diff between the the (patched) original xml and the modified xml, and save as remove.patch: ``diff -u epg.xml epg-modified.xml > remove.patch``
+
+7. Replace the here-files in the bash script with your patch files
+
+I split the patches up in the case that some users neeed renames but not removals.

+ 2 - 0
epg-grab-mjh.sh

@@ -5,6 +5,7 @@ EPG="${EPGGZ%.gz}"
 curl -sL https://i.mjh.nz/nz/epg.xml.gz > "$EPGGZ"
 gunzip -f "$EPGGZ"
 patch -s <<EOF
+# rename channels
 --- a/epg.xml	2022-12-26 09:13:51.480782463 +1300
 +++ b/epg.xml	2022-12-26 09:13:54.284849347 +1300
 @@ -14,13 +14,13 @@
@@ -60,6 +61,7 @@ patch -s <<EOF
      <display-name>APNA Television</display-name>
 EOF
 patch -s --fuzz=3 <<EOF
+# remove channels
 --- a/epg.xml	2022-12-26 09:17:53.286555154 +1300
 +++ b/epg.xml	2022-12-26 09:17:57.098646238 +1300
 @@ -67,45 +67,12 @@