This was posted 2 years 4 months 1 day ago, and might be an out-dated deal.

Related
  • expired

Free: Stream Every Episode of Bluey @ ABC iView

4030

Bluey: Every Episode Ever

Wackadoo! It's every episode of Bluey EVER! (Naughty ABC omitting the apostrophe in it's.)

130 episodes are listed on Wikipedia (seasons 1 & 2, and half season 3) and all 130 episodes are available for streaming.

Update: I found out that the "every episodes" deal page is dynamically generated and randomly omits episodes. The main Bluey show page will have all the episodes listed but it uses an inconvenient side-scrolling format.

Episode Expiry
Housework 7:56am 2/1/2022
Promises 7:56am 2/1/2022
Omelette 6:15pm 3/1/2022
Pass the Parcel 7:56am 3/1/2022
Takeaway 8:20am 28/2/2022
All other episodes 16/2/2022

Happy New Year to you all.

Army Asparagus Baby Race
Backpackers Bad Mood Barky Boats
BBQ Bedroom Bike
Bin Night Bingo Blue Mountains
Bob Bilby Born Yesterday Bumpy and the Wise Old Wolfhound
Burger Shop Bus Butterflies
Café Calypso Camping
Charades Chest Chickenrat
Christmas Swim Circus Copycat
Curry Quest Dad Baby Daddy Dropoff
Daddy Putdown Daddy Robot Dance Mode
Double Babysitter Driving Duck Cake
Dunny Early Baby Easter
Escape Explorers Faceytalk
Fairies Fairytale Family Meeting
Fancy Restaurant Favourite Thing Featherwand
Flat Pack Fruitbat Grandad
Grannies Hairdressers Hammerbarn
Handstand Helicopter Hide and Seek
Horsey Ride Hospital Hotel
Housework Ice Cream Keepy Uppy
Kids Library Magic
Markets Mini Bluey Mount Mumandad
Movies Mr Monkeyjocks Muffin Cone
Mum School Mums and Dads Neighbours
Obstacle Course Octopus Omelette
Pass the Parcel Pavlova Perfect
Phones Piggyback Pirates
Pizza Girls Postman Promises
Queens Ragdoll Rain
Road Trip Rug Island Seesaw
Shadowlands Shaun Sheep Dog
Shops Sleepytime Spy Game
Squash Sticky Gecko Stumpfest
Swim School Takeaway Taxi
Teasing The Adventure The Beach
The Claw The Creek The Doctor
The Dump The Magic Xylophone The Pool
The Quiet Game The Show The Sleepover
The Weekend Tickle Crabs Tina
Trains Trampoline Typewriter
Unicorse Verandah Santa Wagonride
Whale Watching Work Yoga Ball
Zoo

Related Stores

ABC - Australian Broadcasting Corporation
ABC - Australian Broadcasting Corporation

closed Comments

    • We have a senior citizen on our midst.

  • +5

    If you want to scrape all episodes while they're available using youtube-dl:
    for url in $(curl -s https://iview.abc.net.au/show/bluey | grep -oP 'http[^"]*(?=\\",\\"_entity\\":\\"video)'); do youtube-dl -o '%(series)s - %(title)s.mp4 ${url}; done

    • +4

      Above is missing a single quote after .mp4. Fixed:

      for url in $(curl -s https://iview.abc.net.au/show/bluey | grep -oP 'http[^"]*(?=\\",\\"_entity\\":\\"video)'); do youtube-dl -o '%(series)s - %(title)s.mp4' ${url}; done

      • +1

        Any tips on a tutorial on doing this, i'm 'ok' with terminal but need a push to get me up.

        • I ran/tested it on a ubuntu linux bash shell. You'll need to install youtube-dl which is cli software for scraping videos off youtube etc (works with iview too)
          It's a for loop that uses 'curl' to pull the list of bluey episode urls from the iview show page, and using 'youtube-dl' software, saves a local copy of each one.

          You can install youtube-dl via pip package manager:
          sudo pip3 install youtube-dl

          curl should come as standard software.

          command below should return list of urls:
          curl -s https://iview.abc.net.au/show/bluey | grep -oP 'http[^"]*(?=\",\"_entity\":\"video)'

          https://iview.abc.net.au/show/bluey/series/0/video/CH2003Q02…
          https://iview.abc.net.au/show/bluey/series/0/video/CH2003Q02…
          etc

          command below runs youtube-dl on every member of the url list collected above which saves the video locally as an mp4
          youtube-dl -o '%(series)s - %(title)s.mp4' ${url}

          The one-line is just putting it together in a for loop. Whatever terminal/shell you're using you'll have to look up the for loop syntax.

          • @bluey321: highly recommend using yt-dlp (https://github.com/yt-dlp/yt-dlp/) instead of youtube-dl because youtube-dl hasn't been updated in yonks

          • @bluey321: On Mac OS here, I've managed to get YouTube-dl installed using the home-brew package installer but am now stuck trying to get the command to execute in Terminal with the one liner option..

            I've narrowed it down to something about the "grep" command:

            grep: invalid option — P
            usage: grep [-abcdDEFGHhIiJLlMmnOopqRSsUVvwXxZz] [-A num] [-B num] [-C[num]]
            [-e pattern] [-f file] [—binary-files=value] [—color=when]
            [—context[=num]] [—directories=action] [—label] [—line-buffered]
            [—null] [pattern] [file …]

            That's the error which comes up. Any suggestions?

            • @jace88: -P is for perl regexp patterns. This is what is used to process the webpage for all the video URLs.
              According to a quick google apparently the version of grep that ships with MacOS doesn't include this flag.
              You can install grep from homebrew below command which might fix it:
              brew install grep

              However based on theg00s3's post above you may have more luck with yt-dlp. I haven't tested it but apparently it does all the magic of my one-liner for you and something like below may work:
              yt-dlp https://iview.abc.net.au/show/bluey

      • Is there an equivalent way of doing this in Windows using youtube-dl.exe?

  • +1

    ABC Kids iView app lists all the episodes at once rather than the stupid side scrolling on the iView desktop or partial load on the regular iView app.

    • I reckon the most important thing is a quick right click to block threads from yah feed .
      My OZB dream .

  • +1

    Omelette expires 6:15pm 3/1/22
    Pass the parcel expires 7:56am 3/1/22 (prob one of the best episodes - watch it before it disappears!)

    • Thanks for your update.

  • +1

    Are these episodes the censored ones?

    • Just answered my own question - yup! they are censored.

      • Are you referring to changing “ooga booga” in two episodes and sneezing being changed to burping in one episode?
        https://censorship-history.fandom.com/wiki/Bluey#ABC_Kids_.2…

        • +1

          Wow! I had no idea that censorship was so pervasive… truly scary manipulation of the hivemind at work.

          Not respecting a creator’s right to self-expression might seem innocuous, but to me that is a red line. Where does it stop…

  • Cheers!

  • I use Allavsoft to download stuff from and watch it later - minus the ads. When downloading web video files, the software automatically detects advertisements and does not download them.

Login or Join to leave a comment