Request for updates for channel picons

Moderators: Gully, peteru

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Mon Sep 21, 2020 14:01

Trial_Master wrote:
Mon Sep 21, 2020 13:33
Where did you source the .ipk? Is this something that can be self served?

I grabbed the package URL from the debug log of my U4 when it updated to the beta this morning.
I don't know if there's any other way of identifying the filename. The name has three segments -
Package: enigma2-plugin-picons-tv-australia
Version: 3.0+git364+079ba15-r2.0
Architecture: all
The "version" segment itself has four segments -
3.0 - appears to be constant, at least for the last year or so
git{nnn} - the git commit(?) number. This is the unknown bit
079ba15 - merged commit number from the picons-australia repository, this bit can be looked up in the repository
r2.0 - release(?) number, a bit of guess work (mostly r1.0 or r2.0 I think)
In summary - too hard without knowing the git number.

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Mon Sep 21, 2020 15:38

Here's a Unixoid one-liner (in multiple lines for clarity) that extracts the picon package filename:

Code: Select all

wget -q -O- http://beta.beyonwiz.org/beyonwiz/19.3/et13000/all/Packages.gz |
	gunzip -c | 
	sed -n '/^Filename:.*picons-tv-australia/s/Filename: //p'
Then do a wget without the options and with Packages.gz replaced by the extracted filename to download the package. If you get enthusiastic about it, it would be easy to make a script of it.

If you don't have a Linux box, MacOS box (where I tested the one-liner) or the required Unixoid environment under Windows, you do, in fact have a Linux box that can run the necessary commands, the Beyonwiz itself:

Code: Select all

root@beyonwizu4:/tmp# wget -q -O- http://beta.beyonwiz.org/beyonwiz/19.3/et13000/all/Packages.gz |
> gunzip -c | 
> sed -n '/^Filename:.*picons-tv-australia/s/Filename: //p'  
enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk
root@beyonwizu4:/tmp#

Code: Select all

root@beyonwizu4:/tmp# wget http://beta.beyonwiz.org/beyonwiz/19.3/et13000/all/enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk
--2020-09-21 15:36:20--  http://beta.beyonwiz.org/beyonwiz/19.3/et13000/all/enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk
Resolving beta.beyonwiz.org... 208.113.217.142
Connecting to beta.beyonwiz.org|208.113.217.142|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 510784 (499K)
Saving to: 'enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk'

enigma2-plugin-picons-tv-australia_3.0+git364 100%[================================================================================================>] 498.81K   381KB/s    in 1.3s    

2020-09-21 15:36:22 (381 KB/s) - 'enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk' saved [510784/510784]

root@beyonwizu4:/tmp#
You need to re-fetch the filename for every update to the picons package.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Mon Sep 21, 2020 16:00

Thank you Peter. That looks extremely confusing on first sight but I will endeavour to give it a go next time.

I have little to zero Linux skills, but a friend set up a Tautilli Server on a Pi i own so i have fiddled a little.

Would the following assumptions be correct?

Enable SSH on Beyonwiz
The .ipk would be saved to tmp directory?

I also have a Raspberry Pi. If i ran the commands on that would it save to Downloads directory?

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Mon Sep 21, 2020 16:10

Trial_Master wrote:
Mon Sep 21, 2020 16:00
Enable SSH on Beyonwiz

Or add a network password for Telnet access. I prefer ssh, because I can then also use scp.
Trial_Master wrote:
Mon Sep 21, 2020 16:00
The .ipk would be saved to tmp directory?

The actual download command (the second command) will save to the current directory, whatever that is (it was /tmp when I ran it).

The pipeline that extracts the file name doesn't save any files.
Trial_Master wrote:
Mon Sep 21, 2020 16:00
I also have a Raspberry Pi. If i ran the commands on that would it save to Downloads directory?

It would, as above, save to the current directory, unless you added a -O option to specify another place to save the file (and its filename there).
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Mon Sep 21, 2020 17:26

prl wrote:
Mon Sep 21, 2020 15:38
Here's a Unixoid one-liner (in multiple lines for clarity) that extracts the picon package filename:

Ah yes of course, I don't know why I didn't think of downloading Packages.gz given it's similar to what I suggested in the "how to fetch the picons package from Ian's feed server" topic.

So for those without a network-connected Wiz who want to grab the picons package -
  1. Use a browser to download the package manifest using the below link:
    http://beta.beyonwiz.org/beyonwiz/19.3/ ... ackages.gz
  2. Unzip the Packages.gz file
  3. Use a text editor to view the file
  4. Locate the "Filename:" entry for the "enigma2-plugin-picons-tv-australia" package
    It'll be of the form: enigma2-plugin-picons-tv-australia_3.0+git{number}+{commit number}-r{n.n}_all.ipk
  5. If you want to see what picon updates are included in that package, take the {commit number} from above, match it with a 'merge commit' listed in -
    picons commits list
    e.g. latest build has commit number "079ba15" in the file name which matches to - "Remove unused 44 Adelaide picon file". You can see an earlier merge on the same day added 10 SHAKE
  6. If the picon update is what you're seeking, download that package and install it:
    1. The URL to use will be as per #1 above, but replacing "Packages.gz" with the file name entry from #4 above
    2. Then copy the downloaded file to a USB flash drive,
    3. Have the Wiz showing live TV,
    4. Insert the flash drive into the Wiz,
    5. Choose "Install Extensions." when prompted,
    6. Highlight the picons package and press OK to select it for install, then GREEN/Install.
    7. [Alternatively, use File Commander to install it from anywhere the Wiz can see the picons package]
Unmount the USB using the SimpleUmount plugin (from Plugins browser or Plugins column in the main menu).
Restart the GUI.
It may seem like a lot of mucking around, but it's not difficult.

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Mon Sep 21, 2020 18:22

Thanks Peter and Geoff. I have already updated my T4 & T2 with Geoff’s file earlier today but I am going to follow both processes and see what works for me. Unless I’ve missed something Peter’s process looks pretty straight forward. It might be easier in the future not having to look for the commit number etc...

Thanks for information today gentlemen.

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Mon Sep 21, 2020 19:06

Trial_Master wrote:
Mon Sep 21, 2020 18:22
Unless I’ve missed something Peter’s process looks pretty straight forward. It might be easier in the future not having to look for the commit number etc...

You don't need to compare the commit number - it's an optional step just to see if the picons package is an oldie or a newie.
Both methods end up as the same thing if you omit step #5.

If you're going to use the wget command to retrieve the picons package onto the Wiz, you may as well take the next step and run opkg to install it -

Code: Select all

root@beyonwizt4:/hdd/Runnables# ls -al *picons*
-rw-r--r--    1 root     root        494678 Mar 21  2020 enigma2-plugin-picons-tv-australia_3.0+git343+cc4f1b6-r1_all.ipk
-rwxr--r--    1 root     root        513824 Jun 30 12:00 enigma2-plugin-picons-tv-australia_3.0+git352+e68b9af-r2.0_all.ipk
-rw-r--r--    1 root     root        510784 Sep 21 16:59 enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk
root@beyonwizt4:/hdd/Runnables#
root@beyonwizt4:/hdd/Runnables# opkg install enigma2-plugin-picons-tv-australia_3.0+git364+079ba15-r2.0_all.ipk
Upgrading enigma2-plugin-picons-tv-australia from 3.0+git352+e68b9af-r2.0 to 3.0+git364+079ba15-r2.0 on root.
Installing enigma2-plugin-picons-tv-australia (3.0+git364+079ba15) on root.
Removing obsolete file /piconlcd/channel_picons/44adelaide_mp.png.
Removing obsolete file /picon/channel_picons/44adelaide_mp.png.
Removing obsolete file /picon/1_0_16_556_505_1013_EEEE0000_0_0_0.png.
Removing obsolete file /picon/channel_picons/westtv_mp.png.
Removing obsolete file /piconlcd/1_0_1_E01_E00_3234_EEEE0000_0_0_0.png.
Removing obsolete file /picon/1_0_1_E01_E00_3234_EEEE0000_0_0_0.png.
Removing obsolete file /piconlcd/1_0_16_556_505_1013_EEEE0000_0_0_0.png.
Removing obsolete file /piconlcd/channel_picons/westtv_mp.png.
Configuring enigma2-plugin-picons-tv-australia.
root@beyonwizt4:/hdd/Runnables#

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Mon Sep 21, 2020 19:18

Thanks Geoff 😀

Paul_oz53
Wizard
Posts: 2791
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: Request for updates for channel picons

Post by Paul_oz53 » Tue Sep 22, 2020 15:34

Updated the U4s and the T4 to 20200921 firmware by USB.

On checking the EPG, the 10 Shake picon is present in the Terrestrial bouquet but in the EPG the 10 Bold HD service is showing the 10 HD picon on all machines.

Rescanned the 10 services manually on the T4 but same result. Not sure if this is a temporary anomaly till 10 Shake starts.

Any thoughts on how to fix? If I can get the relevant service IDs it's not hard to copy the 10 Bold picon and replace the errant entry.

Location is Melbourne.
__________________________________
Paul
Beyonwiz T4, 2 x U4: FW - 19.3 20211010
Samsung QA85Q80BAWXXY 4K TV
Samsung QA65Q80TAWXXY 4K TV
Samsung HW Q800BXY soundbar
OverlayHD 1.70, IceTV, Foxtel IQ4
2 x Win7 PCs, 2 x Win10 PCs
Denon AVR -X2400H

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Sep 22, 2020 15:46

Paul_oz53 wrote:
Tue Sep 22, 2020 15:34
On checking the EPG, the 10 Shake picon is present in the Terrestrial bouquet but in the EPG the 10 Bold HD service is showing the 10 HD picon on all machines.

Do you get the Network TEN broadcast signal from Melbourne, or from elsewhere? Sunbury is "greater Melbourne", right?
For a Melbourne broadcast, as far as I know these were the changes -
LCN 1 / 10 HD / SID 631 (this LCN and SID was 10 BOLD)
LCN 15 / 10 HD / SID 634 (this SID was on LCN 13, LCN change not really relevant on the Wiz)
LCN 13 / 10 SHAKE / SID 633 (this LCN was 10 HD)

LCN 12 / 10 BOLD / SID 637 (as before)
The shopping services changed LCNs too.

How many 10 BOLDs are you seeing? What are the SIDs?

SIDs 631/634 use the 10 HD picon, 633 -> 10 SHAKE, 637 -> 10 BOLD -

Code: Select all

root@beyonwizu4:/picon# ls -al *_63[1347]_603_1014*
lrwxrwxrwx    1 root     root            29 Sep 20 11:20 1_0_16_633_603_1014_EEEE0000_0_0_0.png -> channel_picons/10shake_lw.png
lrwxrwxrwx    1 root     root            26 Sep 20 11:20 1_0_19_631_603_1014_EEEE0000_0_0_0.png -> channel_picons/10hd_mp.png
lrwxrwxrwx    1 root     root            26 Sep 20 11:20 1_0_19_634_603_1014_EEEE0000_0_0_0.png -> channel_picons/10hd_mp.png
lrwxrwxrwx    1 root     root            26 Sep 20 11:20 1_0_1_631_603_1014_EEEE0000_0_0_0.png -> channel_picons/10hd_mp.png
lrwxrwxrwx    1 root     root            29 Sep 20 11:20 1_0_1_633_603_1014_EEEE0000_0_0_0.png -> channel_picons/10shake_lw.png
lrwxrwxrwx    1 root     root            26 Sep 20 11:20 1_0_1_634_603_1014_EEEE0000_0_0_0.png -> channel_picons/10hd_mp.png
lrwxrwxrwx    1 root     root            28 Sep 20 11:20 1_0_1_637_603_1014_EEEE0000_0_0_0.png -> channel_picons/10bold_lw.png
root@beyonwizu4:/picon#
Paul_oz53 wrote: Rescanned the 10 services manually on the T4 but same result. Not sure if this is a temporary anomaly till 10 Shake starts.

Nup, should be right to go now.

Paul_oz53
Wizard
Posts: 2791
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: Request for updates for channel picons

Post by Paul_oz53 » Tue Sep 22, 2020 16:48

Thanks Grumpy_Geoff.

The SIDs match yours. 10HD 634 and 10 Bold HD 631.

The picon for the 631 SID though is the 10 HD picon. There does not appear to be a 10boldHDxx.png filename in the channel picons.

My attempt to substitute the picon from a different SID (627) failed. It appears the service ref is a link rather than a file.

Edit: The services are 219.5 MHz - Melbourne as you surmise.
__________________________________
Paul
Beyonwiz T4, 2 x U4: FW - 19.3 20211010
Samsung QA85Q80BAWXXY 4K TV
Samsung QA65Q80TAWXXY 4K TV
Samsung HW Q800BXY soundbar
OverlayHD 1.70, IceTV, Foxtel IQ4
2 x Win7 PCs, 2 x Win10 PCs
Denon AVR -X2400H

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Sep 22, 2020 17:01

Paul_oz53 wrote:
Tue Sep 22, 2020 16:48
The SIDs match yours. 10HD 634 and 10 Bold HD 631.

The picon for the 631 SID though is the 10 HD picon.

SID 631 is now the second 10 HD service, so you should see two x 10 HD picons.
Paul_oz53 wrote: There does not appear to be a 10boldHDxx.png filename in the channel picons.

There is no HD service for BOLD. There is only one x 10 BOLD serivice, on 637.

Paul_oz53
Wizard
Posts: 2791
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: Request for updates for channel picons

Post by Paul_oz53 » Tue Sep 22, 2020 17:22

Thanks. I misread your earlier post. 634 is supposed to be the second 10 HD service.

Problem solved!

I remade the Favourites bouquet for channel 10. The EPG was showing 10 Bold programming for a second 10 HD entry and no 10 Bold icon.

Not a picons problem per se but a service selection issue.
__________________________________
Paul
Beyonwiz T4, 2 x U4: FW - 19.3 20211010
Samsung QA85Q80BAWXXY 4K TV
Samsung QA65Q80TAWXXY 4K TV
Samsung HW Q800BXY soundbar
OverlayHD 1.70, IceTV, Foxtel IQ4
2 x Win7 PCs, 2 x Win10 PCs
Denon AVR -X2400H

User avatar
Gully
Moderator
Posts: 7736
Joined: Thu Aug 30, 2007 22:08
Location: Melbourne

Re: Request for updates for channel picons

Post by Gully » Tue Sep 22, 2020 17:33

Having found a service in my favourites using the 10HD picon with the name <n/a> I went into the OpenWebif Bouquet editor to tidy up to discover that I now have two channel 10 providers, one called Ten Melbourne and the other TEN Melbourne. All the services are in the first except for 10 Shake which is in the second.

Is this something others are seeing?
Cheers
Gully
_____________
Beyonwiz U4
Logitech Harmony Elite
Google Pixel 6 Pro

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Tue Sep 22, 2020 17:34

Paul_oz53 wrote:
Tue Sep 22, 2020 16:48
There does not appear to be a 10boldHDxx.png filename in the channel picons.

And if there were, it wouldn't be called that, it would be 10boldhd_xx.png ;)

Anyway, I'm glad you've sorted it.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Tue Sep 22, 2020 17:36

Gully wrote:
Tue Sep 22, 2020 17:33
Having found a service in my favourites using the 10HD picon with the name <n/a> I went into the OpenWebif Bouquet editor to tidy up to discover that I now have two channel 10 providers, one called Ten Melbourne and the other TEN Melbourne. All the services are in the first except for 10 Shake which is in the second.

Is this something others are seeing?

IanSav noticed that and told me about it yesterday, in a different forum.

So no, it's not just you. Looks like a TEN slipup.

It should also be visible in the /etc/enigma2/lamedb file (that's probably where OpenWebIF is getting it from).
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Paul_oz53
Wizard
Posts: 2791
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: Request for updates for channel picons

Post by Paul_oz53 » Tue Sep 22, 2020 17:39

prl wrote:
Tue Sep 22, 2020 17:34

And if there were, it wouldn't be called that, it would be 10boldhd_xx.png ;)

Anyway, I'm glad you've sorted it.
I just new when I typed that you would call me out on the underscore. :wink: :wink: Too fiddly on the phone.
__________________________________
Paul
Beyonwiz T4, 2 x U4: FW - 19.3 20211010
Samsung QA85Q80BAWXXY 4K TV
Samsung QA65Q80TAWXXY 4K TV
Samsung HW Q800BXY soundbar
OverlayHD 1.70, IceTV, Foxtel IQ4
2 x Win7 PCs, 2 x Win10 PCs
Denon AVR -X2400H

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Sep 22, 2020 17:53

Gully wrote:
Tue Sep 22, 2020 17:33
Is this something others are seeing?

Only one network TEN provider in Perth ("TEN Perth").

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Tue Sep 22, 2020 17:56

Paul_oz53 wrote:
Tue Sep 22, 2020 17:39
prl wrote:
Tue Sep 22, 2020 17:34

And if there were, it wouldn't be called that, it would be 10boldhd_xx.png ;)

Anyway, I'm glad you've sorted it.
I just new when I typed that you would call me out on the underscore. :wink: :wink: Too fiddly on the phone.

Not just the underscore, the capital "HD" was wrong, too. The filesystem is case sensitive.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Sep 22, 2020 20:10

Paul_oz53 wrote:
Tue Sep 22, 2020 17:22
I remade the Favourites bouquet for channel 10. The EPG was showing 10 Bold programming for a second 10 HD entry and no 10 Bold icon.

I'm still a bit confused about this, did you not get updated guide content from IceTV for this old 10 BOLD -> 10 HD service name and content change?

User avatar
Gully
Moderator
Posts: 7736
Joined: Thu Aug 30, 2007 22:08
Location: Melbourne

Re: Request for updates for channel picons

Post by Gully » Tue Sep 22, 2020 21:15

prl wrote:
Tue Sep 22, 2020 17:36
Gully wrote:
Tue Sep 22, 2020 17:33
Having found a service in my favourites using the 10HD picon with the name <n/a> I went into the OpenWebif Bouquet editor to tidy up to discover that I now have two channel 10 providers, one called Ten Melbourne and the other TEN Melbourne. All the services are in the first except for 10 Shake which is in the second.

Is this something others are seeing?

IanSav noticed that and told me about it yesterday, in a different forum.

So no, it's not just you. Looks like a TEN slipup.

It should also be visible in the /etc/enigma2/lamedb file (that's probably where OpenWebIF is getting it from).
Thanks Peter.

Not a big deal but good to know the cause, etc.
Cheers
Gully
_____________
Beyonwiz U4
Logitech Harmony Elite
Google Pixel 6 Pro

Paul_oz53
Wizard
Posts: 2791
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: Request for updates for channel picons

Post by Paul_oz53 » Tue Sep 22, 2020 22:08

Grumpy_Geoff wrote:
Tue Sep 22, 2020 20:10
Paul_oz53 wrote:
Tue Sep 22, 2020 17:22
I remade the Favourites bouquet for channel 10. The EPG was showing 10 Bold programming for a second 10 HD entry and no 10 Bold icon.

I'm still a bit confused about this, did you not get updated guide content from IceTV for this old 10 BOLD -> 10 HD service name and content change?
No, I didn't. I did a resend all on the timers after the flash but I didn't clear the EPG and the listed programming remained for Bold though showing the HD picon.

If I'd been more observant I'd have realized the 1920x1080 program onscreen was actually 10 HD and not 10 Bold as per the EPG.
__________________________________
Paul
Beyonwiz T4, 2 x U4: FW - 19.3 20211010
Samsung QA85Q80BAWXXY 4K TV
Samsung QA65Q80TAWXXY 4K TV
Samsung HW Q800BXY soundbar
OverlayHD 1.70, IceTV, Foxtel IQ4
2 x Win7 PCs, 2 x Win10 PCs
Denon AVR -X2400H

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Sep 22, 2020 22:20

Paul_oz53 wrote:
Tue Sep 22, 2020 22:08
No, I didn't. I did a resend all on the timers after the flash but I didn't clear the EPG and the listed programming remained for Bold though showing the HD picon.

If I'd been more observant I'd have realized the 1920x1080 program onscreen was actually 10 HD and not 10 Bold as per the EPG.

Okay, got it, hence the confusion.

IanSav
Uber Wizard
Posts: 16846
Joined: Tue May 29, 2007 15:00
Location: Melbourne, Australia

Re: Request for updates for channel picons

Post by IanSav » Tue Sep 22, 2020 22:32

Hi Gully,
Gully wrote:
Tue Sep 22, 2020 21:15
Not a big deal but good to know the cause, etc.
I have reported the issue to Network Ten Engineering Department. I am awaiting a fix or contact from them.

Regards,
Ian.

User avatar
Gully
Moderator
Posts: 7736
Joined: Thu Aug 30, 2007 22:08
Location: Melbourne

Re: Request for updates for channel picons

Post by Gully » Wed Sep 23, 2020 00:29

IanSav wrote:
Tue Sep 22, 2020 22:32
Hi Gully,
Gully wrote:
Tue Sep 22, 2020 21:15
Not a big deal but good to know the cause, etc.
I have reported the issue to Network Ten Engineering Department. I am awaiting a fix or contact from them.

Regards,
Ian.
Thanks Ian.
Cheers
Gully
_____________
Beyonwiz U4
Logitech Harmony Elite
Google Pixel 6 Pro

User avatar
gra
Master
Posts: 146
Joined: Wed Mar 11, 2009 22:13
Location: Heddon Greta. 2321

Re: Request for updates for channel picons

Post by gra » Sun Oct 04, 2020 22:12

Newcastle update
Channel 87 Extra has been added
57 channels scanned
Attachments
Newcastle.zip
(834 Bytes) Downloaded 51 times
GRA.
T4-BB. WD30PURX.19.3.20210901,
T2-BB. KINGSTON SV300S3 480G SSD.19.3.20210901
V2.256G microSD19.3.20210901
Sony KD55X8504A, Yamaha RX-V675.
Foxtel Hub. Google WiFi, D-Link DGS-1016A, DGS-1008A, DGS-1005A x2.
QNAP TS-431P. QTS 4.5.4.
Samsung UA40C7000, UA32K5500. PS3.

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Mon Oct 05, 2020 09:20

Thanks, gra.

Does anyone know what markets Extra is being re-launched in? I have gra's Newcastle scan data, and Melbourne scan data from IanSav.

It's clearly not metro-only, but it doesn't seem to be being broadcast in Canberra.

I had a look on Nine's corporate Web site, https://www.nineforbrands.com.au/, but I couldn't see anything that looked like a press release about Extra.

And, of course, the FreeTV "official" lists of channel broadcast id numbers haven't been updated since April.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Mon Oct 05, 2020 11:00

prl wrote:
Mon Oct 05, 2020 09:20
Does anyone know what markets Extra is being re-launched in? I have gra's Newcastle scan data, and Melbourne scan data from IanSav.

Availability
Extra is available in standard definition in metropolitan areas through Nine Network owned-and-operated stations: TCN Sydney, GTV Melbourne, QTQ Brisbane, NWS Adelaide and STW Perth as well as NBN Northern New South Wales.

https://en.wikipedia.org/wiki/Extra_(Au ... V_channel)

This morning's scan attached.
Perth.tgz
(847 Bytes) Downloaded 50 times

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Mon Oct 05, 2020 11:13

Thanks, Geoff.

I think I'll need scan data for all the areas carrying Extra (I have Newcastle, Melbourne & Perth). It's hard to fake up picon setup data for regional broadcasters.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Mon Oct 05, 2020 17:20

Brisbane scan data from a couple of minutes ago.
Attachments
Brisbane.zip
(910 Bytes) Downloaded 68 times

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Mon Oct 05, 2020 17:23

Thanks, Trial_Master. Got it.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

stevebow
Master
Posts: 482
Joined: Thu Sep 03, 2015 11:21
Location: Sydney

Re: Request for updates for channel picons

Post by stevebow » Tue Oct 06, 2020 12:25

Here's the latest from Sydney.
Attachments
Sydney.zip
(1.04 KiB) Downloaded 69 times

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Tue Oct 06, 2020 14:53

Thanks Steve. Got it.

I think I'm ready to go apart from scan data for Adelaide. Scotty?
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Tue Oct 06, 2020 21:35

prl wrote:
Tue Oct 06, 2020 14:53
I think I'm ready to go apart from scan data for Adelaide. Scotty?

Let's see if I'm right. I'm betting my left one that in Adelaide Extra will be using SID 45A :mrgreen:

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Wed Oct 07, 2020 10:30

Grumpy_Geoff wrote:
Tue Oct 06, 2020 21:35
prl wrote:
Tue Oct 06, 2020 14:53
I think I'm ready to go apart from scan data for Adelaide. Scotty?

Let's see if I'm right. I'm betting my left one that in Adelaide Extra will be using SID 45A :mrgreen:

You're probably right. But its easier for me to use the real data if it's available, and there are already far to many magic SID mappings in my picon setup generator code.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

scotty
Master
Posts: 284
Joined: Mon Mar 17, 2014 13:15
Location: Adelaide

Re: Request for updates for channel picons

Post by scotty » Fri Oct 09, 2020 15:06

Your left one's safe Grumpy_Geoff...
Attachments
Adelaide.zip
(929 Bytes) Downloaded 64 times
T3 - 2TB WD Purple, Logitech Harmony Smart Control
T2 - 60GB Patriot Blaze SSD, Logitech Harmony One
IceTV

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Fri Oct 09, 2020 15:56

Thanks, scotty, I've grabbed it.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Sun Oct 11, 2020 11:48

I've added Extra back into the picon setup. It's available in the picon repository now, and should be in the next firmware upgrade.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 13:58

Hi Peter

Can I use the http://beta.beyonwiz.org/beyonwiz/19.3/ ... ackages.gz process to grab them?

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Sun Oct 11, 2020 14:27

Patience, grasshopper. It's not in the beta yet, but when it is - then yes.

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 14:33

Hey Geoff.

Hahahahha. I’m in no rush for Extra. I guess I don’t understand the process. I’ll wait until I see you all have a beta and from what you are saying I assume the existing URL will still be valid?

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Sun Oct 11, 2020 14:59

Yes, but only once they're in the current beta, so that method only helps if you're not doing beta upgrades, but still want the newest picons.

Here's a script that can be run from File Commander to fetch the latest picon package from the beta feeds. The script fetches from the U4 feeds, but that shouldn't make any difference for the picon package.

You don't need to be running the beta to use the script. In fact, if you're running the current beta, you don't need to use the script.

Put the attached script onto a USB stick (you may want to put it in a folder called something like "picons" on the stick). Cleanly disconnect the USB stick and connect it to the PVR.

Then MENU>Sources / Files, and in the left-hand panel, navigate into the directory that contains the script, select it, and press OK. Then select Run script, OK.

Depending on the speed of your Internet connection, that of the feed server's connection, phase of the moon, etc, it will take a few seconds to download the package.

If all goes well, it should display "Downloaded picon package enigma2-plugin-picons-tv-australia..."

RED Close or EXIT to return to the File Commander main screen, then press 0 on the remote to refresh the screen. You should see a file with the same name as in the "Downloaded" message in the same directory as the script.

Navigate to the package file, OK, select Install, OK to install the picon package.
Attachments
get_picons.sh
(526 Bytes) Downloaded 96 times
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 15:05

Thanks for detailed explanation Peter. I will give that a go when the beta is available.

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Sun Oct 11, 2020 15:14

The URL you posted is in the script (though cut into two pieces). ;)
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 15:18

Right, I like your script. Super easy for amateurs like me. Can I run the script from a folder on my T4 or does it have to be on a USB stick?

prl
Wizard God
Posts: 32709
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: Request for updates for channel picons

Post by prl » Sun Oct 11, 2020 15:31

Trial_Master wrote:
Sun Oct 11, 2020 15:18
Right, I like your script. Super easy for amateurs like me. Can I run the script from a folder on my T4 or does it have to be on a USB stick?

It can be anywhere on the box. You can also run it on anything else that can run Unix shell scripts, provided wget (command-line HTTP fetcher) is installed.

The only thing unusual about it is that it will put the package in the same directory as the script itself, rather than in your current directory. This makes it easier to run from File Commander, because you don't have to run off trying to track down where the script has put the file.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 15:36

No worries, I'll run it using File Commander but keep the script on the box so i don't have to do the USB stick piece. I'll copy script to my T4 and T2 for a post beta release test run :)

Thanks again for the script.

Grumpy_Geoff
Uber Wizard
Posts: 6490
Joined: Thu Mar 05, 2009 22:54
Location: Perth

Re: Request for updates for channel picons

Post by Grumpy_Geoff » Sun Oct 11, 2020 15:41

Trial_Master wrote:
Sun Oct 11, 2020 15:36
No worries, I'll run it using File Commander but keep the script on the box so i don't have to do the USB stick piece. I'll copy script to my T4 and T2 for a post beta release test run :)

You'll need to use File Commander to give the script execute permissions if it's not being run from a USB drive.

Trial_Master
Guru
Posts: 623
Joined: Mon Jul 28, 2008 21:50
Location: Brisbane, Australia

Re: Request for updates for channel picons

Post by Trial_Master » Sun Oct 11, 2020 16:05

Thanks Geoff, just worked out how to do that. Should be good to go now 😀

Post Reply

Return to “FAQs, Tips & How to Guides”