Cable Can you just display SD channels

adamsm

Member
With the demise of the sports HD channels, is there a way to just have SD channels in your bouquets, there was an option in sat for SD channels only but on cable builds this option doesn't seem to exist.
 
With the demise of the sports HD channels, is there a way to just have SD channels in your bouquets, there was an option in sat for SD channels only but on cable builds this option doesn't seem to exist.
It's the way ABM works. Sat has 3 regions SD, HD and custom. Cable just has HD maybe things will change as more channels go.

You can delete channels via custommix.

I did one here http://www.techkings.org/threads/customix.137804/#post-849271 it deletes 501 to 510 I haven't been affected yet so I wasn't sure of the channels affected, I've been told 509 and 510 works so just remove those deletes like this

Code:
<custommix>
    <inserts>
    </inserts>
    <deletes>
        <!-- Delete Sky Sport HD Channels -->
        <delete target="501"></delete>
        <delete target="502"></delete>
        <delete target="503"></delete>
        <delete target="504"></delete>
        <delete target="505"></delete>
        <delete target="506"></delete>
        <delete target="507"></delete>
        <delete target="508"></delete>
        </deletes>
    <hacks>
<![CDATA[
]]>
    </hacks>
</custommix>

You can add more if you want just copy this

<delete target="509"></delete>

And past under 508 and change the number to suit.


It's best to edit with a compatible text editor ie notepad ++ not standard notepad
 
can you move the sd to the hd locaiton

This should work.

Code:
<custommix>
   <inserts>
           <!-- replace sky sport HD channels with SD -->
           <insert target="501" source="511" provider="cable_uk_virgin" ></insert> <!-- sky sports Main Event sd -->
           <insert target="502" source="512" provider="cable_uk_virgin" ></insert> <!-- sky sports Main PL sd -->
           <insert target="503" source="513" provider="cable_uk_virgin" ></insert> <!-- sky sports Football sd -->
           <insert target="504" source="514" provider="cable_uk_virgin" ></insert> <!-- sky sports Cricket sd -->
           <insert target="505" source="515" provider="cable_uk_virgin" ></insert> <!-- sky sports Golf sd -->
           <insert target="506" source="516" provider="cable_uk_virgin" ></insert> <!-- sky sports F1 sd -->
           <insert target="507" source="517" provider="cable_uk_virgin" ></insert> <!-- sky sports Action sd -->
           <insert target="508" source="518" provider="cable_uk_virgin" ></insert> <!-- sky sports Arena sd -->
   </inserts>
     <deletes>
       <!-- Delete channels that have been swapped, to remove duplication -->
       <delete target="511"></delete>
       <delete target="512"></delete>
       <delete target="513"></delete>
       <delete target="514"></delete>
       <delete target="515"></delete>
       <delete target="516"></delete>
       <delete target="517"></delete>
       <delete target="518"></delete>
   </deletes>
   <hacks>
<![CDATA[

]]>

   </hacks>
   <instructions>
<![CDATA[

]]>
   </instructions>
</custommix>

Unzip and FTP cable_uk_virgin_CustomMix.xml to usr\lib\enigma2\python\Plugins\SystemPlugins\AutoBouquetsMaker\custom and rescan ABM.
 

Attachments

  • cable_uk_virgin_CustomMix.rar
    459 bytes · Views: 63
Last edited:
This should work.

Code:
<custommix>
   <inserts>
           <!-- replace sky sport HD channels with SD -->
           <insert target="501" source="511" provider="cable_uk_virgin" ></insert> <!-- sky sports Main Event sd -->
           <insert target="502" source="512" provider="cable_uk_virgin" ></insert> <!-- sky sports Main PL sd -->
           <insert target="503" source="513" provider="cable_uk_virgin" ></insert> <!-- sky sports Football sd -->
           <insert target="504" source="514" provider="cable_uk_virgin" ></insert> <!-- sky sports Cricket sd -->
           <insert target="505" source="515" provider="cable_uk_virgin" ></insert> <!-- sky sports Golf sd -->
           <insert target="506" source="516" provider="cable_uk_virgin" ></insert> <!-- sky sports F1 sd -->
           <insert target="507" source="517" provider="cable_uk_virgin" ></insert> <!-- sky sports Action sd -->
           <insert target="508" source="518" provider="cable_uk_virgin" ></insert> <!-- sky sports Arena sd -->
   </inserts>
     <deletes>
       <!-- Delete channels that have been swapped, to remove duplication -->
       <delete target="511"></delete>
       <delete target="512"></delete>
       <delete target="513"></delete>
       <delete target="514"></delete>
       <delete target="515"></delete>
       <delete target="516"></delete>
       <delete target="517"></delete>
       <delete target="518"></delete>
   </deletes>
   <hacks>
<![CDATA[

]]>

   </hacks>
   <instructions>
<![CDATA[

]]>
   </instructions>
</custommix>

Works perfectly thanks @dsayers2014
 
This should work.

Unzip and FTP cable_uk_virgin_CustomMix.xml to usr\lib\enigma2\python\Plugins\SystemPlugins\AutoBouquetsMaker\custom

And re scan AutoBouquetsMaker

It should swap HD with SD and delete duplicates

Is that download still active, I'm getting that its damaged when I try to open it :(
Had to reflash box too which took ages, and can't get my line to work so not having the best of nights lol
 
Is that download still active, I'm getting that its damaged when I try to open it :(
Had to reflash box too which took ages, and can't get my line to work so not having the best of nights lol

Yes still working check you have a rar opener ie winrar for windows not sure about mac though
 
if you've flashed the box, your line will need uploading again to usr/keys folder

yes thanks, I have but for some reason not having it, I may be using an old line though so just waiting on the supplier to come back to me to confirm the details, hopefully I've just got them wrong!

Yes still working check you have a rar opener ie winrar for windows not sure about mac though

Strange, I just get that its an empty rar file, using winrar. I have reflashed with the latest version, not sure if they are included in that but believe you can do it automatically from within the menu can't you?
 
yes thanks, I have but for some reason not having it, I may be using an old line though so just waiting on the supplier to come back to me to confirm the details, hopefully I've just got them wrong!



Strange, I just get that its an empty rar file, using winrar. I have reflashed with the latest version, not sure if they are included in that but believe you can do it automatically from within the menu can't you?

Odd here it is in Dropbox
Code:
https://www.dropbox.com/s/mjjicr8a8a0as2s/cable_uk_virgin_CustomMix.xml?dl=1

With ABM you can choose channel swap this will swap HD with SD. This custommix should remove Sky Sports HD channels and swap with SD.
 
Back
Top