Hello Guest, if you are reading this it means you have not registered yet. Please take a second, Click here to register, and in a few simple steps you will be able to enjoy our community and use our OpenViX support section.
Results 1 to 14 of 14

Thread: Mr. Mister E2 settings 8.2e,23.5e,19.2e,16e,13e,5e,1w

  1. #1
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts

    Mr. Mister E2 settings 8.2e,23.5e,19.2e,16e,13e,5e,1w

    Hi guys..

    This is my 1st go at putting the settings togather for E2.. I asked B16MCC`s permission to include his 28E bouquets.. which have been added..

    One thing i always found when using all other peoples settings.. You have a sh1t load of satellites that you never use.. So i have made these using 28.2e,, 23.5e,, 19.2e,, 16e,, 13e,, 5e and 1w ..

    Please have a go and install them.. and please give any feedback that you can..

    Please also remember to make a back-up of your existing settings just incase you dont like these.. but i am hopeing that alot of you will like these..

    Thanks.. and looking forward to your feedback..

    ps.. i have posted these on a few forums yesterday and go some really good feedback..

    looking forward to your replies..

    Mr. Mister
    Attached Files Attached Files

  2. The Following 4 Users Say Thank You to Mr. Mister For This Useful Post:

    Doomed (18-10-10),happydays (05-10-10),Larry-G (01-10-10),Sicilian (01-10-10)

  3. #2
    Larry-G's Avatar
    Title
    V.I.P
    Donated Member
    Join Date
    May 2010
    Posts
    32,542
    Thanks
    7,824
    Thanked 22,935 Times in 12,378 Posts
    nice one mate. i got a copy from B16MCC's forum. very nice work.

  4. The Following User Says Thank You to Larry-G For This Useful Post:

    Mr. Mister (01-10-10)

  5. #3
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts
    Hi Phoenix..

    Thank you very much for your nice words.. Its really appreicated..

  6. #4

    Title
    Junior Member
    Join Date
    May 2010
    Posts
    2
    Thanks
    6
    Thanked 0 Times in 0 Posts
    Mr Mister

    this is an excellent channel list. thank you !!

    a quick question is there anyway to get rid of the channel numbers? I've tried using channel number remover but doesn't seem to work any ideas?

  7. #5
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts
    Hi buddy..
    Thank you for your kind words.. Very much appreicated..
    I know B16MCC is working on a piece of software that will do this..
    I dont know if he has it finished yet.. but i am sure he will post it here when he has it finished..

    Thanks

  8. #6
    Sicilian's Avatar
    Title
    The Boss
    Join Date
    Mar 2010
    Posts
    29,649
    Thanks
    23,585
    Thanked 26,054 Times in 7,638 Posts
    Quote Originally Posted by happydays View Post
    Mr Mister

    this is an excellent channel list. thank you !!

    a quick question is there anyway to get rid of the channel numbers? I've tried using channel number remover but doesn't seem to work any ideas?
    This should do it http://www.vuplus-support.co.uk/show...Number-remover
    D I S C L A I M E R

    My right to post information is protected under the rights for freedom act. In all instances, information discussed here on my posts are either hypothetical in nature, out of general curiosity, common knowledge, public knowledge, or role-play. Any use of the collective descriptions and shared knowledge from any of my posts are at the sole discretion of the reader. I am not responsible for what you do with it!

    Please help keep OpenViX online, donate HERE.
    Rules can be found
    HERE
    Support our sponsor World-Of-Satellite
    HERE
    GIGABLUE UHD QUAD 4K, VU+ DUO 4K SE, ZGEMMA H7S, VU+ UNO 4K SE
    Triax 1.1m Powered by TM2600, Fixed 28.2 Zone 2 dish with GT-SAT Unicable





  9. The Following User Says Thank You to Sicilian For This Useful Post:

    Mr. Mister (06-10-10)

  10. #7
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts
    You could also try this.. from Spacemonkey

    This is an updated version of TrimNum.exe to change it from a command line tool to a GUI based Tool

    Changes channels naming

    Old 101 101 - BBC ONE
    New 101 BBC ONE

    It also can amend the dummy name "Place Holder Channel"

    Code:
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_Compression=4
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    
    AutoItSetOption("TrayIconHide", 1)
    Opt("GUIOnEventMode", 1)
    Opt("GUICoordMode", 1)
    Opt("GUIResizeMode", 0)
    
    #Include <File.au3>
    #Include <Array.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    
    Dim $Folder = @ScriptDir
    Dim $reg = "\s\d+\s\-"
    Dim $strEmptyChannelName = "Place Holder Channel"
    Dim $strCheckFile = "bouquets.tv"
    Dim $Form1 = GUICreate("Remove Channels Numbers from Bouquets", 400, 150, 191, 124)
    
    GUISetOnEvent($GUI_EVENT_CLOSE, "SpecialEvents")
    GUISetOnEvent($GUI_EVENT_MINIMIZE, "SpecialEvents")
    GUISetOnEvent($GUI_EVENT_RESTORE, "SpecialEvents")
    
    Dim $Label1 = GUICtrlCreateLabel("Bouquets Folder", 16, 10, 150, 17)
    Dim $Input1 = GUICtrlCreateInput($Folder, 16, 25, 201, 21)
    Dim $Button1 = GUICtrlCreateButton("Browse", 232, 25, 50, 20, $WS_GROUP)
    GUICtrlSetOnEvent(-1, "_Browse_folder")
    
    Dim $Label2 = GUICtrlCreateLabel("Dummy Channel Name", 16, 55, 150, 17)
    Dim $Input2 = GUICtrlCreateInput($strEmptyChannelName, 16, 70, 201, 21)
    
    
    Dim $Label3 = GUICtrlCreateLabel("New Dummy Channel Name", 16, 100, 150, 17)
    Dim $Input3 = GUICtrlCreateInput($strEmptyChannelName, 16, 115, 201, 21)
    
    Dim $Button2 = GUICtrlCreateButton("GO", 330, 115, 50, 20, $WS_GROUP)
    GUICtrlSetOnEvent(-1, "_ButtonGO")
    
    GUISetState(@SW_SHOW)
    
    Dim $iAction = 0
    Dim $bCheckPath = False
    While 1
        Select
            Case $iAction = 0
                Sleep(50)
    
            Case $iAction = 1
                $bCheckPath = _ButtonGO()
                If $bCheckPath = true Then
                    GUICtrlSetState($Button2,$GUI_DISABLE)
                    _Process(GUICtrlRead($Input1))
                    $iAction = 0
                    GUICtrlSetState($Button2,$GUI_Enable)
                Else
                    $iAction = 0
                Endif
        EndSelect
    WEnd
    
    Func _ButtonGO()
        If FileExists(GUICtrlRead($Input1) & "\" & $strCheckFile) = 0 then
            MsgBox(4096,"","There is no bouquets.tv in this folder",5)
            ConsoleWrite("WWWW" & @CRLF)
            return(False)
        Else
            If GUICtrlRead($Input2) = "" then
                MsgBox(4096,"","Dummy channel is blank",5)
                return(False)
            Else
                $iAction = 1
                return(True)
            EndIf
        EndIf
    EndFunc
    func _Browse_folder()
        Local $BouquetsFolder = FileSelectFolder("Choose a Bouquets Folder", "")
        GUICtrlSetData($Input1, $BouquetsFolder)
    EndFunc
    Func SpecialEvents()
        Select
            Case @GUI_CtrlId = $GUI_EVENT_CLOSE
                Exit
            Case @GUI_CtrlId = $GUI_EVENT_MINIMIZE
    
            Case @GUI_CtrlId = $GUI_EVENT_RESTORE
    
        EndSelect
    EndFunc
    Func _Process($strFolder)
        Local $arrayFiles = _FileListToArray($strFolder,"*.tv")
        If IsArray($arrayFiles) = 1 then
            ProgressOn("Progress Meter", "Increments every second", "0 percent")
            For $i = 1 to $arrayFiles[0]
                ProgressSet( $i, $i & " percent")
                _editfile($strFolder & "\" & $arrayFiles[$i])
            Next
            ProgressSet(100 , "Done", "Complete")
            sleep(5000)
            ProgressOff()
        EndIf
    EndFunc
    Func _Editfile($FileName)
        Local $file = FileOpen($filename,0)
        Local $input = fileread($file)
        FileClose($file)
        Local $output = StringRegExpReplace ($input, $reg, "")
    
        If GUICtrlRead($Input2) <> GUICtrlRead($Input3) then
            $output = StringReplace($output,GUICtrlRead($Input2),GUICtrlRead($Input3))
        endif
        $file = FileOpen($filename,2)
        FileWrite($file,$output)
        Fileclose($file)
    EndFunc

  11. #8
    MKD's Avatar
    Title
    Senior Member
    Join Date
    Oct 2010
    Location
    Milton Keynes
    Posts
    117
    Thanks
    70
    Thanked 47 Times in 27 Posts
    Well i got to say after many years of making my own i don't need to now , best one yet by far . good work Mr Mister.

  12. The Following User Says Thank You to MKD For This Useful Post:

    Mr. Mister (01-12-10)

  13. #9
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts
    Hi guys..

    Done a wee update on these..

    ALL channels on 28E are now numbered the same as $ky UK..

    So BBC1 is 101..
    $ky Premiere 301..
    Discovery Channel 520
    $ky Sports HD1 408.. etc etc etc

    Please give any feedback you can.. or if you spot any mistakes..

    Please remember to click options in DBEdit
    Then click advanced tab
    Puy a tick in the " Allow duplicate entries"

    then save..

    this will give you all the place holders for sky uk..

    Thanks
    Attached Files Attached Files
    Last edited by silverfox0786; 20-12-10 at 22:05.

  14. The Following 5 Users Say Thank You to Mr. Mister For This Useful Post:

    afacan (01-12-10),bassethound (01-12-10),Larry-G (01-12-10),Sicilian (01-12-10)

  15. #10

    Title
    Junior Member
    Join Date
    Nov 2010
    Posts
    7
    Thanks
    85
    Thanked 2 Times in 1 Post
    Nothing for SKY.DE HD channels,apart from that I think it is the perfect listing,thanks very much. Also the BFBS listings are out of date Ricky

  16. #11
    bassethound's Avatar
    Title
    Forum Supporter
    Donated Member
    Join Date
    May 2010
    Location
    North West
    Posts
    5,719
    Thanks
    6,871
    Thanked 6,130 Times in 2,737 Posts
    BFBS has moved satellite to Eutelsat W2A (10.0°E)
    All PM,s asking about c/s on cable will be ignored and reported to forum staff!

  17. #12

    Title
    Junior Member
    Join Date
    Nov 2010
    Posts
    7
    Thanks
    85
    Thanked 2 Times in 1 Post
    Thanks bassethound

  18. #13
    Mr. Mister's Avatar
    Title
    Moderator
    Donated Member
    Join Date
    Jul 2010
    Location
    Northern Ireland
    Posts
    4,936
    Thanks
    4,825
    Thanked 2,677 Times in 1,190 Posts
    Quote Originally Posted by rickyblanes View Post
    Nothing for SKY.DE HD channels,apart from that I think it is the perfect listing,thanks very much.
    Hi Ricky.
    Thank you for pointing that out..
    They were there under the heading -=-=-SKY DE -=-=-
    I have now added them to a bouquet of there own..

    Thanks for pointing that out..

    PS.. My bouquets are also available to download throught the VIX1.3 download panel..
    Attached Files Attached Files

  19. The Following 3 Users Say Thank You to Mr. Mister For This Useful Post:

    bassethound (05-12-10),JoeH (12-12-10)

  20. #14

    Title
    Senior Member
    Join Date
    Oct 2010
    Location
    Berkshire
    Posts
    9,697
    Thanks
    1,039
    Thanked 4,385 Times in 2,257 Posts
    Mr Mister are these a new fixed set [if so i will need to get them sorted and put on the server]
    PM HELP WILL BE IGNORED PLEASE POST HERE IN FORUM AS IT BENEFITS EVERYONE
    NO CARD SHARING TALK WILL BE TOLERATED, LAN OR WAN! IN OPEN FORUM OR PM


    IF THE POSTS HELP PLEASE CLICK THANKS OR ADD TO REP ↓

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.