New TV Channels Coming Soon...

Discussions on Digital TV, Signal Areas, Scheduling and Programs.

Moderators: Gully, peteru

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

Re: New TV Channels Coming Soon...

Post by IanSav » Tue Jul 23, 2019 18:01

Hi Prl,
prl wrote:
Tue Jul 23, 2019 17:43
That's a bit odd for a 7 Melbourne service. All its other SIDs are in the range 0x530-0x538.
I have attached the raw data of the Seven Network scan for your review.

Regards,
Ian.
Attachments
SevenNetwork.zip
Full Channel XML Dump for Seven Network.
(191.4 KiB) Downloaded 142 times

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

Re: New TV Channels Coming Soon...

Post by prl » Tue Jul 23, 2019 18:14

Curioser and curioser. The string 046E doesn't appear anywhere in SevenNetwork.xml.

What I see for openshop is:

Code: Select all

Cambyses:python prl$ grep openshop SevenNetwork.xml 
            <ServiceID HValue="0x0536" Name="openshop">
            <ServiceID HValue="0x0536" Name="openshop">
        <ServiceID HValue="0x0536" Name="openshop">
            <ServiceName String="openshop"/>
Cambyses:python prl$
Which is a more likely-looking SID for 7 Melbourne. It's currently unused, so it's a new service.
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Tue Jul 23, 2019 19:58

prl wrote:
Tue Jul 23, 2019 16:47
Does anyone have any servicerefs for Open Shop?

It's not yet in Perth.

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

Re: New TV Channels Coming Soon...

Post by IanSav » Tue Jul 23, 2019 21:57

Hi Prl,
prl wrote:
Tue Jul 23, 2019 18:14
Curioser and curioser. The string 046E doesn't appear anywhere in SevenNetwork.xml.

What I see for openshop is:

Code: Select all

Cambyses:python prl$ grep openshop SevenNetwork.xml 
            <ServiceID HValue="0x0536" Name="openshop">
            <ServiceID HValue="0x0536" Name="openshop">
        <ServiceID HValue="0x0536" Name="openshop">
            <ServiceName String="openshop"/>
Cambyses:python prl$
Which is a more likely-looking SID for 7 Melbourne. It's currently unused, so it's a new service.
This is the summary screen of the service scan:
SevenNetwork.png
Service Scan Screen Capture.
SevenNetwork.png (35.76 KiB) Viewed 7568 times

Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by prl » Tue Jul 23, 2019 22:39

Yes, it shows the SID for openshop as 1334 or 0x0536. Not "SID: 0x046E (1334)". The decimal in your original post is correct but the hex is not, and it's the hex that I checked. 0x046E is 1134 decimal.
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Tue Jul 23, 2019 22:40

IanSav wrote:
Tue Jul 23, 2019 17:32
[*]SID: 0x046E (1334)

Yep, that's the bit you stuffed up.
Hex 46E = Dec 1134
Dec 1334 = Hex 536

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

Re: New TV Channels Coming Soon...

Post by IanSav » Wed Jul 24, 2019 00:35

Hi,

That is why I posted the source information. I don't know from where the 1134 typo error came but mistakes can happen when transcribing numbers from images. No-one died no one was hurt.

Original post corrected.

Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 11:06

Anyway, I'm trying to establish a pattern for the openshop servicerefs in the target markets (which is why I need to get the correct ONID, TSID, SID triples and the video encoding).

I think I can generate the openshop servicerefs for the target markets by using:

Code: Select all

if onid == 0x1013 and tsid & 0xFF0 == 0x500 and sid & 0xF0F == 0x500:  # Match metro Seven main channels (7 Adelaide, etc)
	openshop_servicetype = 0x16  # Presumably MPEG4 SD
	openshop_onid = onid
	openshop_tsid = tsid
	openshop_sid = sid & 0xFF0 | 0x6
The scheme would generate (on my current data) unnecessary picon links for NSW Central Coast and Gold Coast, but should cover all the initial target markets for openshop (Adelaide, Brisbane, Melbourne, Perth & Sydney).

But I'd like to get a couple of openshop servicerefs from target markets other than Melbourne to confirm the pattern and to verify the encoding.

With that, I can avoid having to call for scan data.
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: New TV Channels Coming Soon...

Post by Trial_Master » Wed Jul 24, 2019 11:12

Hi Peter

Happy to supply Brisbane openshop servicerefs. Can you point me to how I gather that for you?

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

Re: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Jul 24, 2019 11:20

prl wrote:
Wed Jul 24, 2019 11:06
But I'd like to get a couple of openshop servicerefs from target markets other than Melbourne to confirm the pattern and to verify the encoding.

Still not yet in Perth.

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 11:29

Trial_Master wrote:
Wed Jul 24, 2019 11:12
Happy to supply Brisbane openshop servicerefs. Can you point me to how I gather that for you?

Thanks. Zap to openshop in live TV, then MENU>Information>Service, and the value I want is the last item in the list, labelled "Service reference".

If my assumptions about openshop's broadcast parameters are correct, the Brisbane openshop serviceref should be:
1:0:16:546:504:1013:EEEE0000:0:0:0:

The important fields are the third to the sixth, i.e. :16:546:504:1013:. The others are always the same for all DVB services in Australia.
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: 32703
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 11:32

Grumpy_Geoff wrote:
Wed Jul 24, 2019 11:20
prl wrote:
Wed Jul 24, 2019 11:06
But I'd like to get a couple of openshop servicerefs from target markets other than Melbourne to confirm the pattern and to verify the encoding.

Still not yet in Perth.

Thanks for checking again.

It takes time to transport the bits across the Nullarbor. ;)
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Jul 24, 2019 11:45

prl wrote:
Wed Jul 24, 2019 11:32
It takes time to transport the bits across the Nullarbor. ;)

This time I think they must be coming via ship, via the northern path :wink:

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 12:11

Grumpy_Geoff wrote:
Wed Jul 24, 2019 11:45
prl wrote:
Wed Jul 24, 2019 11:32
It takes time to transport the bits across the Nullarbor. ;)

This time I think they must be coming via ship, via the northern path :wink:

I was thinking camel train. But perhaps you're right: camel train via Cairns, Darwin & Broome :)
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: New TV Channels Coming Soon...

Post by Trial_Master » Wed Jul 24, 2019 12:19

Just did a service scan and not seeing that channel yet. Will keep an eye out during the week.

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 12:22

OK, thanks.

Official launch isn't for a week.
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: New TV Channels Coming Soon...

Post by stevebow » Wed Jul 24, 2019 15:16

prl wrote:
Wed Jul 24, 2019 11:06
But I'd like to get a couple of openshop servicerefs from target markets other than Melbourne to confirm the pattern and to verify the encoding.

Not showing up in Sydney yet either. Melbourne must be blessed with shopping channels.

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 24, 2019 18:15

stevebow wrote:
Wed Jul 24, 2019 15:16
prl wrote:
Wed Jul 24, 2019 11:06
But I'd like to get a couple of openshop servicerefs from target markets other than Melbourne to confirm the pattern and to verify the encoding.

Not showing up in Sydney yet either. Melbourne must be blessed with shopping channels.

My reading of the screenshot of the DVB analyser that IanSav posted is that while Melbourne has an openshop service, it doesn't contain any, well, contents. It has no VPID (Video Packet Id) or APID (Audio Packet Id). The missing PMT and PCR PIDs are also missing, and they point to even more fundamental data structures.

The lights are on, but there's no-one home :)
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Thu Jul 25, 2019 11:28

prl wrote:
Wed Jul 24, 2019 18:15
The lights are on, but there's no-one home :)

The lights are still not yet on here in the west.

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

Re: New TV Channels Coming Soon...

Post by Trial_Master » Thu Jul 25, 2019 18:57

Same in Brisbane. Just rescanned again.

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

Re: New TV Channels Coming Soon...

Post by prl » Fri Jul 26, 2019 11:19

I have the scripts that construct the picon setup ready to go for when I know what the servicerefs for OpenShop will look like. It's set up assuming that they will be like what's being used for Melbourne, but with variation according to the broadcast area.

I've also asked Daniel Hall at IceTV whether he knows whet form the servicerefs will have. I doubt whether IceTV will be carrying OpenShop EPG data, but he may know anyway.
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Jul 31, 2019 08:23

prl wrote:
Fri Jul 26, 2019 11:19
I have the scripts that construct the picon setup ready to go for when I know what the servicerefs for OpenShop will look like. It's set up assuming that they will be like what's being used for Melbourne, but with variation according to the broadcast area.

From lamedb5 entry:

Code: Select all

s:0566:eeee0000:0506:1013:22:0:0,"openshop",p:Seven Network

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

Re: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Jul 31, 2019 08:51

Ooh, I'm looking forward to this -

openshop_EPG.png
openshop_EPG.png (271.21 KiB) Viewed 7356 times

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

Re: New TV Channels Coming Soon...

Post by Trial_Master » Wed Jul 31, 2019 09:27

Brisbane openshop. Nothing broadcasting on it. When I zap to it, the previous station just freezes.
Attachments
openshop.png
openshop.png (1.32 MiB) Viewed 7350 times

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 31, 2019 11:04

Thanks. That confirms that I have the serviceref pattern correct and that openshop will be MPEG4 SD, as I guessed.

I'll update the picon repository today.
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: 32703
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 31, 2019 11:05

Grumpy_Geoff wrote:
Wed Jul 31, 2019 08:51
Ooh, I'm looking forward to this -

Surely that's what you would have expected?
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Jul 31, 2019 11:16

prl wrote:
Wed Jul 31, 2019 11:05
Grumpy_Geoff wrote:
Wed Jul 31, 2019 08:51
Ooh, I'm looking forward to this -

Surely that's what you would have expected?

I love frypans -

Frypan.png
Frypan.png (311.97 KiB) Viewed 7338 times

[tongue-in-cheek]

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Jul 31, 2019 15:20

To contribute to Grumpy_Geoff's enjoyment of Norwegian frypans, I've added open shop to the picon repository.
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: 2789
Joined: Sat Jun 13, 2009 02:34
Location: Melbourne

Re: New TV Channels Coming Soon...

Post by Paul_oz53 » Wed Jul 31, 2019 15:45

prl wrote:
Wed Jul 31, 2019 15:20
To contribute to Grumpy_Geoff's enjoyment of Norwegian frypans, I've added open shop to the picon repository.
Just when I was wondering if I should replace the George Foreman grill... :lol:
__________________________________
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Tue Sep 03, 2019 21:05

I notice that openshop has changed its service type (0x16 -> 0x01).

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

Re: New TV Channels Coming Soon...

Post by IanSav » Wed Sep 04, 2019 21:29

Hi Grumpy_Geoff,
Grumpy_Geoff wrote:
Tue Sep 03, 2019 21:05
I notice that openshop has changed its service type (0x16 -> 0x01).
This was a mistake and should have been corrected today.

FYI:
  • The openshop EPG was correct today but Network Seven are waiting for the date for the coming days. It is hoped that consistent data should be coming online soon.
  • Work is still progressing on trying to find a solution for the audio problems on LCNs 74, 75 and 78 on the older Beyonwiz hardware.
Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Thu Sep 05, 2019 09:43

IanSav wrote:
Wed Sep 04, 2019 21:29
Grumpy_Geoff wrote:
Tue Sep 03, 2019 21:05
I notice that openshop has changed its service type (0x16 -> 0x01).
This was a mistake and should have been corrected today.

Not yet.

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

Re: New TV Channels Coming Soon...

Post by IanSav » Thu Sep 05, 2019 12:18

Hi Grumpy_Geoff,
Grumpy_Geoff wrote:
Thu Sep 05, 2019 09:43
Not yet.
It is now correct in Melbourne. If it is still wrong tomorrow please update this thread and I will let John know.

Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Fri Sep 06, 2019 12:35

IanSav wrote:
Thu Sep 05, 2019 12:18
Grumpy_Geoff wrote:
Thu Sep 05, 2019 09:43
Not yet.
It is now correct in Melbourne. If it is still wrong tomorrow please update this thread and I will let John know.

As of this morning, openshop is still the wrong service type

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

Re: New TV Channels Coming Soon...

Post by IanSav » Fri Sep 06, 2019 14:46

Hi Grumpy_Geoff,
Grumpy_Geoff wrote:
Fri Sep 06, 2019 12:35
As of this morning, openshop is still the wrong service type
The correction was being tested in Melbourne and will soon be progressively applied across Australia.

Regards,
Ian.

Jasmeet_181
Apprentice
Posts: 46
Joined: Sun Nov 13, 2016 16:02
Location: UK

Re: New TV Channels Coming Soon...

Post by Jasmeet_181 » Tue Mar 17, 2020 21:37

TV channel changes starting this Thursday
From Thursday 19 March, TV viewers may notice some channel changes.
A high definition channel for 7 and 10 will become available. These channels will remain available in standard definition and viewers should not experience a loss of these channels.
A high definition channel for 9 will also become available at a later date in the near future (tentatively the end of March 2020).

Which areas are affected?
Spencer Gulf, SA (Port Pirie, Port Lincoln, Whyalla, and surrounds) and Broken Hill, NSW
https://www.facebook.com/SouthernCrossA ... 0821907163

Image

WTV off air in Perth “until further notice”
Perth’s community TV broadcaster WTV is doing it tough, forced to cease broadcasting on Free to Air.

A post on Facebook last night (19 February) said, “Dear loyal WTV c44 viewers. WTV is currently off free-to-air television until further notice. There will be more updates to follow. In the meantime – our Undercurrent journalists will be bringing to you a variety of stories to enjoy on FB. We will also proceed to develop our YouTube channel further with more WTV productions. We thank you for your ongoing support. We appreciate your audience very much.”
https://tvtonight.com.au/2020/02/wtv-of ... otice.html

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Mar 18, 2020 10:02

Hi, Jasmeet.

Thanks for the heads-up.

I'll need new scan data for Spencer Gulf to do the picons for those.

If someone in Broken Hill wants to post scan data for there, I'll add it, too (I don't currently have scan data to do picon setup for Broken Hil).
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

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

Re: New TV Channels Coming Soon...

Post by IanSav » Sun Mar 22, 2020 22:13

Hi All,

The Nine Network has announced its new broadcast service. It is called "9Rush" and will be broadcast on LCN-96 in the major cities. The service is due to start at 19:00 on Sunday 5-Apr-2020. There is no comment if the regionals will get the service. This is to be an action / adventure channel to compete with "7mate".

Here is some more information: The new logo is 9Rush (Logopedia):
9rush-logo2.png
Nine Rush Logo...
9rush-logo2.png (6.22 KiB) Viewed 6564 times

Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by Trial_Master » Sun Mar 22, 2020 22:34

Thanks for the info Ian. Noted in my calendar 😀

Sir Lancelot
Master
Posts: 184
Joined: Wed Feb 20, 2008 10:47
Location: Tweed Heads West

Re: New TV Channels Coming Soon...

Post by Sir Lancelot » Sat Mar 28, 2020 11:45

Will this channel be broadcast in HD or will it be in not worth watching SD?

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

Re: New TV Channels Coming Soon...

Post by prl » Sat Mar 28, 2020 12:04

Sir Lancelot wrote:
Sat Mar 28, 2020 11:45
Will this channel be broadcast in HD or will it be in not worth watching SD?

Depending on its bit budget, it could also easily be not-worth-watching HD ;)

My guess, though, would be MPEG4 SD. Neither article that IanSav linked to mentions it being HD, so I strongly suspect that it won't be.

In the metro areas where 9 Rush is launching, Nine already has Nine HD and 9 Gem HD and 4 (or 6?) SD channels: Nine (twice), 9 Go (twice), 9 Life & 9 Gem.

Anyway, looking at the TVBlackbox article Ian linked to, the content is a more compelling reason for me not to watch it than its broadcast parameters. ;)
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

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

Re: New TV Channels Coming Soon...

Post by IanSav » Sat Mar 28, 2020 15:07

Hi Prl,

I am awaiting the service to be defined / activated so I can give you the parameters. That should tell us if the service will be SD or HD.

Regards,
Ian.

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

Re: New TV Channels Coming Soon...

Post by prl » Sat Mar 28, 2020 15:46

Thanks, Ian. I'll need at least some scan data for 9 Rush, because I don't know what its SID will be.
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

lance124
Apprentice
Posts: 10
Joined: Sat Apr 20, 2019 12:11

Re: New TV Channels Coming Soon...

Post by lance124 » Sat Mar 28, 2020 16:48

Thanks Peter.
Regards
Lance

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Apr 01, 2020 15:52

Has 9Rush started showing a channel loop (or anything) yet?

Thanks to Daniel Hall @ IceTV, I have all the information I need to construct the picon links for 9Rush without the need to ask for scan data.

I can make a picon set available for testing as soon as the channel gets activated.
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: 32703
Joined: Tue Sep 04, 2007 13:49
Location: Canberra; Black Mountain Tower transmitters

Re: New TV Channels Coming Soon...

Post by prl » Wed Apr 01, 2020 15:54

Sir Lancelot wrote:
Sat Mar 28, 2020 11:45
Will this channel be broadcast in HD or will it be in not worth watching SD?

Apparently (Daniel Hall again), it will be broadcast in MPEG2 SD. It seems a waste of bits not to be using MPEG4, but then I think the channel is pretty much a waste of bits anyway.
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: New TV Channels Coming Soon...

Post by Grumpy_Geoff » Wed Apr 01, 2020 16:57

prl wrote:
Wed Apr 01, 2020 15:52
Has 9Rush started showing a channel loop (or anything) yet?

It's up apparently - http://www.digitalbitrate.com/dtv.php?m ... =0&lang=en
SID : 1129
LCN : 96
MPEG2

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

Re: New TV Channels Coming Soon...

Post by prl » Wed Apr 01, 2020 17:06

That matches the SID I have from Daniel :)

I'll make a picon alpha setup tomorrow for people who want to test it. Thanks to Daniel, I have also been able to make the picon setup for the regional areas where Nine will make 9Rush available at some later time (unless they change the SIDs in betweentime :roll:)
Peter
T4 HDMI
U4, T4, T3, T2, V2 test/development machines
Sony BDV-9200W HT system
LG OLED55C9PTA 55" OLED TV

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

Re: New TV Channels Coming Soon...

Post by IanSav » Wed Apr 01, 2020 20:30

Hi Prl,

9Rush started this evening in Melbourne. Here is the data:
9Rush.jpg
Netwrk Nine Scan Melbourne...
9Rush.jpg (96.28 KiB) Viewed 5458 times
Regards,
Ian.

Post Reply

Return to “Digital TV”