Quantcast
Channel: Matt Huisman
Viewing all 192 articles
Browse latest View live

Download Google Drive Files with wget or curl

$
0
0
Often I find myself needing to download google drive files on a remote headless machine without a browser.

Below are the simple shell commands to do this using wget or curl.

Small file = less than 100MB
Large File = more than 100MB (more steps due to no virus scan confirm)

The text in red is what needs changing for the particular file you want to download.

The fileid can be found in the google url of the file you want to download.
eg:
  • https://drive.google.com/open?id=1sNhrr2u6n48vb5xuOe8P9pTayojQoOc_
  • https://drive.google.com/file/d/1yXsJq7TTMgUVXbOnCalyupESFN-tm2nc/view?usp=sharing
Set the filename to anything you like (most likely the origin files name).

This will only work with shared google drive files.

wget (Small File)

cd ~

export fileid=1yXsJq7TTMgUVXbOnCalyupESFN-tm2nc
export filename=matthuisman.jpg

wget -O $filename 'https://docs.google.com/uc?export=download&id='$fileid

wget (Large File)

cd ~

export fileid=1sNhrr2u6n48vb5xuOe8P9pTayojQoOc_
export filename=combian.rar

wget --save-cookies cookies.txt 'https://docs.google.com/uc?export=download&id='$fileid -O- \
| sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1/p'> confirm.txt

wget --load-cookies cookies.txt -O $filename \
'https://docs.google.com/uc?export=download&id='$fileid'&confirm='$(<confirm.txt)

rm -f confirm.txt cookies.txt

curl (Small File)

cd ~

export fileid=1yXsJq7TTMgUVXbOnCalyupESFN-tm2nc
export filename=matthuisman.jpg

curl -L -o $filename 'https://docs.google.com/uc?export=download&id='$fileid

curl (Large File)

cd ~

export fileid=1sNhrr2u6n48vb5xuOe8P9pTayojQoOc_
export filename=combian.rar

curl -L -c cookies.txt 'https://docs.google.com/uc?export=download&id='$fileid \
| sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1/p'> confirm.txt

curl -L -b cookies.txt -o $filename \
'https://docs.google.com/uc?export=download&id='$fileid'&confirm='$(<confirm.txt)

rm -f confirm.txt cookies.txt

TAB KODI Add-On

$
0
0

Features

  • Watch Trackside 1 & 2 Live
  • Watch other live events (when available)

Need

    How

    First follow THIS post to install my KODI Add-on Repository.

    Now navigate to "Main Menu -> Add-ons -> My Add-ons"
    Select ".." then select "Install from repository"
    Select "MattHuisman.nz Repository".
    Select "Video add-ons" then "TAB"
    Select "Install" and the add-on will download and install.
    You can now access the add-on in the Add-ons main menu item.
    You will need to login with your TAB credentials before playing any content.
    Now simply navigate the content and select an item to play it.

    Privacy

    The add-on will not store your password. It is sent securely via https directly to the TAB servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

    Source

      Next

      Disable JavaScript in Chrome Mobile

      $
      0
      0

      Why block JavaScript?
      • It stops ads on most sites
      • It stops ad blocker detection on most sites
      • Improves page load times
      Note
      Quite a few websites require JavaScript to function correctly. 
      In that case, simply unblock JavaScript for that site.

      Block JavaScript on PC

      Blocking JavaScript on PC is a lot easier and most people know how to do this already.

      Simply visit the website you want blocked, click the padlock (or "not secure") to the left of the address bar. Then click "Site Settings".
      Now select the drop-down next to JavaScript and then click "Block"
      \
      And that's it. JavaScript will now be disabled for that site.
      You will see a new icon on the right of the address bar showing you JS is disabled.

      Live Australia IPTV Channels on Android TV

      $
      0
      0

      Regions

      • Adelaide
      • Brisbane
      • Canberra
      • Darwin
      • Hobart
      • Melbourne
      • Perth
      • Sydney
      Simple replace {REGION} in below URLs with one of the region names from above.
      Note: Copy the region exactly (capital first letter)

      TVirl Settings

      Playlist URL: http://i.mjh.nz/au/{REGION/kodi-tv.m3u8
      EPG URL: htts://i.mjh.nz/au/{REGION}/epg.xml

      Live Channels App

      PlayStore: https://play.google.com/store/apps/details?id=com.google.android.tv

      This app should already be installed on your Android TV device.
      It won't show up until a source app (TVirl) has been installed.

      TVirl App

      PlayStore: https://play.google.com/store/apps/details?id=by.stari4ek.tvirl

      Notes

      As at 23/01/2019, the latest public version of TVirl is 0.3.5.1.
      All ABC channels require version 0.3.5.2 or higher to work.
      You need to join testing (beta) to get the latest version.
      (You can leave testing anytime by using the same URL)

      NZ Films KODI Add-on

      $
      0
      0

      Features

        Need

          How

          First follow THIS post to install my KODI Add-on Repository.

          Now navigate to "Main Menu -> Add-ons -> My Add-ons"
          Select ".." then select "Install from repository"
          Select "MattHuisman.nz Repository".
          Select "Video add-ons" then "NZ Films"
          Select "Install" and the add-on will download and install.
          You can now access the add-on in the Add-ons main menu item.
          You will need to login with your NZ Films credentials before playing any video content.
          Now simply navigate the content and select an item to play it.

          Privacy

          The add-on will not store your password. It is sent securely via https directly to the NZ Film servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

          Source

            Next

            IPTV Merge KODI Add-on

            $
            0
            0

            Features

            • Merge Multiple Playlists and EPGs into single files
            • Supports Remote or Local Sources (plugin sources coming soon)
            • Supports Standard or Gzip Files
            • Option to automatically restart PVR Manager after merge
            • Automatically run merge every X minutes
            • Manually run merge
            • Can be used with IPTV Simple Client for multiple Playlists / EPGs

              Need

                How

                First follow THIS post to install my KODI Add-on Repository.

                Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                Select ".." then select "Install from repository"
                Select "MattHuisman.nz Repository".
                Select "Service add-ons" then "IPTV Merge"
                Select "Install" and the add-on will download and install.
                You can now find it under the add-ons section
                The first step is to open and configure the add-on settings
                • Merge File Every ? mins
                  Set this to how many minutes between merges.
                • Output Directory
                  The directory where the add-on will put the merged files
                  The files will be called playlist.m3u8 and epg.xml
                • Auto Reload PVR Manager
                  Enable this if you want the add-on to restart the PVR manager after merge.
                  This will make KODI load in any new channels / epg entries.
                • Unused PVR Client
                  For the above reload PVR manager to work, a sort of "hack" is needed.
                  This involves enabling and disabling an unused PVR Add-on.
                  This then triggers KODI to reload the PVR Manager.
                  The first merge after selecting a PVR Client will ask you to install that client (if not already installed). Select Yes.
                Once your settings are correct, you can add your Playlist & EPG files.
                Once done, you can force a merge to test
                The merged files will now be in your selected Output Directory.

                Using with IPTV Simple Client

                Simply point IPTV Simple Clients Playlist & EPG to the new generated files.

                You can also use this add-on as a simple service to periodically restart PVR Manager.
                eg. Your using IPTV Simple Client with a remote URL and you want it to reload every ? mins.

                Source

                  Next

                  Freeview Australia IPTV LibreELEC TvHeadend Setup

                  $
                  0
                  0

                  How-to setup a LibreELEC Tvheadend IPTV server for Freeview Australia with full TV guide support, local or USB recording (PVR) and even multiple KODI clients.

                  No DVB-T tuner required!

                  Regions

                  • Adelaide
                  • Brisbane
                  • Canberra
                  • Darwin
                  • Hobart
                  • Melbourne
                  • Perth
                  • Sydney

                  Replace {REGION} in below URLs with region name from above (case-sensitive).

                  URLs

                  1. http://i.mjh.nz/au/{REGION}/epg.xml
                  2. http://i.mjh.nz/au/{REGION}/tvh-tv.m3u8

                  Tips

                  1)

                  If you want new channels to be added automatically, make sure the Network Discovery for the Network is set to New Muxes (or New Muxes + Changed Muxes).

                  2)

                  If any Muxes "FAIL" to scan, then try re-scanning them.
                  Select the Mux, click "Edit"& change 
                  "Scan status" to "PEND".

                  This will queue up a re-scan.
                  If it continues to fail after a few tries, please let me know in the comments below.

                  Electric Kiwi Referral Link / Coupon ($50 off)


                  Kayo Sports KODI Add-on

                  $
                  0
                  0

                  Features

                  • Stream live & on demand sport from Kayo Sports
                  • Set reminders for upcoming events (via context menu)
                  • Start Live streams From Live (default) or From Start (via context menu)
                  • Quality up-to 1080P

                    Need

                      How

                      First follow THIS post to install my KODI Add-on Repository.

                      Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                      Select ".." then select "Install from repository"
                      Select "MattHuisman.nz Repository".
                      Select "Video add-ons" then "Kayo Sports"
                      Select "Install" and the add-on will download and install.
                      You can now access the add-on in the Add-ons main menu item.
                      You will need to login with your Kayo credentials before accessing any content.

                      Now simply navigate the content and select an item to play it.

                      Privacy

                      The add-on will not store your password. It is sent securely via https directly to the Kayo Sports servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

                      Source

                        Next

                        Optus Sport KODI Add-on

                        $
                        0
                        0

                        Features

                        • Unofficial 3rd Party KODI Add-on for Optus Sport
                        • Watch Optus Sport 1 Live
                        • On Demand Coming Soon (hopefully)
                        • Quality up-to 720P

                          Need

                            How

                            First follow THIS post to install my KODI Add-on Repository.

                            Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                            Select ".." then select "Install from repository"
                            Select "MattHuisman.nz Repository".
                            Select "Video add-ons" then "Optus Sport"
                            Select "Install" and the add-on will download and install.
                            You can now access the add-on in the Add-ons main menu item.
                            You will need to login with your credentials before accessing any content.
                            Now simply navigate the content and select an item to play it.

                            Settings

                            You can access the add-on settings via the add-on main menu.
                            • Inputstream Settings
                              This opens the settings dialog for Inputstream Adaptive.
                              This is where playback quality can be adjusted (see below)
                            • Use Cache
                              Whether some common data is cached to speed-up add-on browsing
                            • Clear Data
                              This wipes all data for the add-on. You will need to login again afterwards.
                              Do this if you start getting some unexpected errors.

                            Quality

                            Playback quality is controlled via the Inputstream add-on.
                            You can access settings for it via the "Inputstream Settings" add-on settings item (as above).

                            Privacy

                            The add-on will not store your password. It is sent securely via https directly to their servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

                            Source

                              Next

                              Skinny Mobile Coupon / Referral (4GB Free Data)

                              $
                              0
                              0
                              If you've joined Skinny Mobile within the last 30 days and on a $16 or above mobile plan,
                              simply open your Skinny Mobile App and enter the below code in the Buddy Rewards box.


                              DXJA2ZM

                              You'll get 4GB free roll-over data and I'll get a $20 credit on my mobile account (win/win).

                              Spark Sport KODI Add-on

                              $
                              0
                              0

                              Features

                              • Unofficial 3rd Party KODI Add-on for Spark Sport
                              • Watch Live & On Demand Sport
                              • Quality up-to 1080P

                                Need

                                  How

                                  First follow THIS post to install my KODI Add-on Repository.

                                  Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                  Select ".." then select "Install from repository"
                                  Select "MattHuisman.nz Repository".
                                  Select "Video add-ons" then "Spark Sport"
                                  Select "Install" and the add-on will download and install.
                                  You can now access the add-on in the Add-ons main menu item.
                                  You will need to login with your Spark Sport credentials before accessing any content.
                                  Now simply navigate the content and select an item to play it.

                                  Settings

                                  You can access the add-on settings via the add-on main menu.

                                  Quality

                                  Playback quality is controlled via the Inputstream add-on.
                                  You can access settings for it via the "Inputstream Settings" add-on settings item (as above).
                                  Below are the settings that should force Inputstream Adaptive to choose the highest quality stream.

                                  Privacy

                                  The add-on will not store your password. It is sent securely via https directly to the Spart Sport servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

                                  Source

                                    Next

                                    beIN Sports Connect Kodi Add-on

                                    $
                                    0
                                    0

                                    Features

                                    • Unofficial 3rd Party Kodi Add-on for beIN Sports Connect (APAC)
                                    • Supports APAC Countries (see below)
                                    • Watch Live Channels & On Demand Sport
                                    • Quality up-to 1080P (On Demand) & 720P (Live)

                                      Need

                                      APAC

                                      This add-on will work with subscriptions from the below APAC countries
                                      Content will vary based on which country your subscription is for.

                                        How

                                        First follow THIS post to install my KODI Add-on Repository.

                                        Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                        Select ".." then select "Install from repository"
                                        Select "MattHuisman.nz Repository".
                                        Select "Video add-ons" then "beIN Sports Connect"
                                        Select "Install" and the add-on will download and install.
                                        You can now access the add-on in the Add-ons main menu item.
                                        You will need to login with your beIN Sports credentials before accessing any content.
                                        Now simply navigate the content and select an item to play it.

                                        Settings

                                        You can access the add-on settings via the add-on main menu.

                                        Quality

                                        Playback quality is controlled via the Inputstream add-on.
                                        You can access settings for it via the "Inputstream Settings" add-on settings item (as above).
                                        Below are the settings that should force Inputstream Adaptive to choose the highest quality stream.

                                        Privacy

                                        The add-on will not store your password. It is sent securely via https directly to the beIN Sports servers. The server returns a token that can be used to login in the future. This token and your username is stored in the add-ons userdata folder.

                                        Source

                                          Next

                                          Foxtel Go Kodi Add-on

                                          $
                                          0
                                          0

                                          Features

                                          • Unofficial 3rd Party Kodi Add-on for Foxtel Go
                                          • Watch Live Channels
                                          • Watch On Demand Tv Shows & Movies
                                          • Quality up-to 720P
                                          • Compatible with IPTV Merge for Kodi Tv & EPG

                                            Need

                                              How

                                              First follow THIS post to install my Kodi Add-on Repository.

                                              Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                              Select ".." then select "Install from repository"
                                              Select "MattHuisman.nz Repository".
                                              Select "Video add-ons" then "Foxtel Go"
                                              Select "Install" and the add-on will download and install.
                                              You can now access the add-on in the Add-ons main menu item.
                                              You will need to login with your Foxtel Go credentials before accessing any content.
                                              Now simply navigate the content and select an item to play it.

                                                Quality

                                                Playback quality is controlled via the Inputstream add-on.
                                                You can access settings for it via the "Inputstream Settings" add-on settings item.
                                                Below are the settings that should force Inputstream Adaptive to choose the highest quality stream.

                                                Kodi TV / EPG

                                                This add-on supports my IPTV Merge add-on to allow integrating it's live channels into Kodi's Tv menu.

                                                Simply add a new Playlist & EPG Add-on entry and select the Foxtel Go add-on.

                                                Source

                                                  Next

                                                  Foxtel Now Kodi Add-on

                                                  $
                                                  0
                                                  0

                                                  Features

                                                  • Unofficial 3rd Party Kodi Add-on for Foxtel Now
                                                  • Watch Live Channels
                                                  • Watch On Demand Tv Shows, Movies & Sports
                                                  • Quality up-to 720P
                                                  • Compatible with IPTV Merge for Kodi Tv & EPG

                                                    Need

                                                      How

                                                      First follow THIS post to install my Kodi Add-on Repository.

                                                      Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                                      Select ".." then select "Install from repository"
                                                      Select "MattHuisman.nz Repository".
                                                      Select "Video add-ons" then "Foxtel Now"
                                                      Select "Install" and the add-on will download and install.
                                                      You can now access the add-on in the Add-ons main menu item.
                                                      You will need to login with your Foxtel Now credentials before accessing any content.
                                                      Now simply navigate the content and select an item to play it.
                                                      Any locked content will have a (Locked) label next to it.
                                                      Locked content is content your subscription does not have access too.
                                                      You can choose to hide locked content via the add-on settings (see below).

                                                        Settings

                                                        • Hide Locked Content (default = false)
                                                          Enable this if you don't want the add-on to display any locked content.

                                                        Quality

                                                        Playback quality is controlled via the Inputstream add-on.
                                                        You can access settings for it via the "Inputstream Settings" add-on settings item.
                                                        Below are the settings that should force Inputstream Adaptive to choose the highest quality stream.

                                                        Kodi TV / EPG

                                                        This add-on supports my IPTV Merge add-on to allow integrating it's live channels into Kodi's Tv menu.

                                                        Simply add a new Playlist & EPG Add-on entry and select the Foxtel Now add-on for both.

                                                        Source

                                                          Next


                                                          Spark Sport Android TV APK

                                                          Jellytelly Kodi Add-on

                                                          $
                                                          0
                                                          0

                                                          About

                                                          Safe Christian shows, movies and devotionals that inspires your kids, makes them laugh, and encourages their own creativity.

                                                          Features

                                                          • Unofficial 3rd Party Kodi Add-on for Jellytelly
                                                          • Watch Shows, Movies & Devotionals
                                                          • Quality up-to 1080P

                                                            Need

                                                              How

                                                              First follow THIS post to install my Kodi Add-on Repository.

                                                              Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                                              Select ".." then select "Install from repository"
                                                              Select "MattHuisman.nz Repository".
                                                              Select "Video add-ons" then "Jellytelly"
                                                              Select "Install" and the add-on will download and install.
                                                              You can now access the add-on in the Add-ons main menu item.
                                                              You will need to login before accessing any content.
                                                              Now simply navigate the content and select an item to play it.
                                                               You can add (and remove) videos and shows from your watchlist / favourites via the context menu

                                                                Settings

                                                                • Save Password (default = Off)
                                                                  Enable this if you want the add-on to save your password and use it to re-login any time the add-on is logged out.

                                                                Source

                                                                  Next

                                                                  CuriosityStream Kodi Add-on

                                                                  $
                                                                  0
                                                                  0

                                                                  About

                                                                  Watch award-winning science, technology, history and nature documentaries, worldwide.

                                                                  Features

                                                                  • Unofficial 3rd Party Kodi Add-on for CuriosityStream
                                                                  • Supports Categories / Collections / Featured / Search
                                                                  • Supports Subtitles
                                                                  • Child Friendly Mode
                                                                  • Add / Remove from Watchlist
                                                                  • Quality up-to 1080P (Standard Subscription)
                                                                  • Quality up-to 4K (Premium Subscription)

                                                                    Need

                                                                      How

                                                                      First follow THIS post to install my Kodi Add-on Repository.

                                                                      Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                                                      Select ".." then select "Install from repository"
                                                                      Select "MattHuisman.nz Repository".
                                                                      Select "Video add-ons" then "CuriosityStream"
                                                                      Select "Install" and the add-on will download and install.
                                                                      You can now access the add-on in the Add-ons main menu item.
                                                                      You will need to login before accessing any non-free content.
                                                                      If you are not logged in, most videos are limited to a 2 minute preview.
                                                                      Now simply navigate the content and select an item to play it.
                                                                       You can add (and remove) videos to your Watchlist via the context menu

                                                                        Settings

                                                                        • Child Friendly Mode (default = Off)
                                                                          Enable this if you want the add-on to only show content that has been marked by them as child friendly
                                                                        • Enable Subtitles (default = on)
                                                                          Disable if you have no need for subtitles to slightly speed up playback as it will no longer need to download the subtitle files

                                                                        Source

                                                                          Next

                                                                          Goodbye Disqus, Hello Reddit

                                                                          $
                                                                          0
                                                                          0
                                                                          Tonight marks the end of using the Disqus comment system on this site.
                                                                          It has been great over the last few years, but it is now time for something new.

                                                                          Going forward, all comments / complaints / tips / discussion will happen over on Reddit.

                                                                          I've created a subreddit for this site: r/MattHuisman Go join it!

                                                                          You'll find a reddit icon (see below) on each of my posts which will take you to a dedicated reddit comment page for that post.

                                                                          Unfortunately all previous comments couldn't be migrated from Disqus to Reddit.
                                                                          I have them archived and may look at hosting them somewhere to allow searching etc.

                                                                          Reddit has some pretty neat features and will make it a lot easier to browse comments and to communicate with other users.
                                                                          It also removes the Disqus placed adverts from my site and helps improve page load times.

                                                                          Discussion

                                                                          SKY Sport NOW Kodi Add-on

                                                                          $
                                                                          0
                                                                          0

                                                                          About

                                                                          Full Streaming access to all 12 SKY Sport and ESPN channels.
                                                                          SKY Sport NOW will give you all the LIVE Sports action you love online and on the go, as well as a huge range of feature content, highlights, stats and more!

                                                                          Features

                                                                          • Unofficial 3rd Party Kodi Add-on for SKY Sport NOW
                                                                          • Watch Sky Sport 1-9, ESPN 1-2 Live
                                                                          • Watch On Demand Highlights (more on demand coming soon)
                                                                          • Compatible with IPTV Merge for Kodi Tv & EPG
                                                                          • Quality up-to 1080p (50fps)

                                                                          Need

                                                                          How

                                                                          First follow THIS post to install my Kodi Add-on Repository.

                                                                          Now navigate to "Main Menu -> Add-ons -> My Add-ons"
                                                                          Select ".." then select "Install from repository"
                                                                          Select "MattHuisman.nz Repository".
                                                                          Select "Video add-ons" then "SKY Sport NOW"

                                                                          Select "Install" and the add-on will download and install.
                                                                          You can now access the add-on in the Add-ons main menu item.
                                                                          You will need to login with your credentials before playing any content.
                                                                          Once logged in, you can navigate the content and simply select an item to play it.

                                                                          Quality

                                                                          Needs fixing - will be in update soon
                                                                          You can set the maximum quality for the add-on to playback via Settings > Playback Quality.
                                                                          This sets the maximum bandwidth. 
                                                                          The add-on will find the highest quality stream up to this number.
                                                                          • Ask
                                                                            This will ask you to select a quality each time you play content
                                                                          • Best (Default)
                                                                            This will automatically select the best quality stream
                                                                          • Custom
                                                                            Here you can enter your own custom maximum bandwidth in bits/s
                                                                          • Lowest
                                                                            Will automatically select the lowest quality stream
                                                                          • Passthrough
                                                                            This will avoid choosing any stream and just pass all streams to Kodi to decide.
                                                                            (Old default behaviour)

                                                                          Kodi Tv with EPG

                                                                          This add-on support my IPTV Merge add-on.
                                                                          This allows it to have full Kodi TV with EPG support

                                                                          Simply install the IPTV Merge add-on and then do the below
                                                                          1. IPTV Merge > Settings > Setup IPTV Simple Client
                                                                          2. IPTV Merge > Playlists > Add Playlist > Add-on > SKY Sport NOW
                                                                          3. IPTV Merge > EPGs > Add EPG > Add-on > SKY Sport NOW
                                                                          4. IPTV Merge > Run Merge
                                                                          5. Wait for Merge Complete notification
                                                                          You should now be able to see all the channels in Kodis TV menu with full EPG.

                                                                          Source

                                                                                  Next

                                                                                  Discussion

                                                                                  Viewing all 192 articles
                                                                                  Browse latest View live


                                                                                  <script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>