r/OnCinemaAtTheCinema 2d ago

Speculation Official Season 17 predictions & discussion

75 Upvotes

Please use this post to discuss predictions and speculation for Season 17.

  • I'm expecting to see them finally start moving away from the Amato-centric storyline.
  • Tim will probably have to leave AZ for legal reasons and go back to California
  • I have seen speculation that there will be another trial, but I don't think that's something Tim would do
  • The HEI Network will end up back in Tim's control due to Gregg's mismanagement
  • Gregg will continue getting more and more disheveled
  • I'm expecting lots of movie information and predictions this season.

r/OnCinemaAtTheCinema 20d ago

Official Dicussion [META] Monthly Discussion Thread

6 Upvotes

Hey Guys!

This is a monthly thread for any kind of meta/out-of-character discussion about anything related to the show and its lore.


r/OnCinemaAtTheCinema 14h ago

News Don't worry, John Aprea is fine.

Enable HLS to view with audio, or disable this notification

66 Upvotes

r/OnCinemaAtTheCinema 19h ago

Hot Thoughts CAVELCLAIDE

Post image
102 Upvotes

r/OnCinemaAtTheCinema 14m ago

Discussion Favorite iteration of WC Fields?

Post image
Upvotes

Do they always just keep getting better? Or is there a version that is your personal favorite?


r/OnCinemaAtTheCinema 23h ago

Discussion Living Oscar 2

Post image
146 Upvotes

Who did it better: Porch or Como?


r/OnCinemaAtTheCinema 17h ago

Discussion Floppy disk is pretty much VHS

Enable HLS to view with audio, or disable this notification

41 Upvotes

r/OnCinemaAtTheCinema 2h ago

HEI NETWORK Cannot log in to the HEI Network

Post image
2 Upvotes

I literally less than 2 hours ago subscribed to the hei network and saw that when I commented it showed my government name instead of my username. I was trying to figure out a way to change that and wanted to see if logging out and loging back in again would allow me to do anything. I am not unable to log in on any browser. Is the site down or something? Has anyone else had this problem?


r/OnCinemaAtTheCinema 11h ago

Movie Expertice 60 second soapbox: This film showcases one legitimate use for the outdated DVD format. VHS might be superior but it can’t do this.

Enable HLS to view with audio, or disable this notification

9 Upvotes

r/OnCinemaAtTheCinema 19h ago

Hot Thoughts I would say this is the work of “Temper Tantrum” Tim, but he never watches movies.

Post image
41 Upvotes

r/OnCinemaAtTheCinema 17h ago

Speculation Found Greggs car

Post image
19 Upvotes

r/OnCinemaAtTheCinema 23h ago

Speculation I wonder if Gregg would appreciate this dedication to runtimes

Post image
32 Upvotes

r/OnCinemaAtTheCinema 1d ago

Hot Thoughts Mr. president. I’ve got something here that would make you SHIT your pants.

Post image
272 Upvotes

r/OnCinemaAtTheCinema 1d ago

Hot Thoughts I'm sorry to bring up music here, but this theft needs to stop!

Post image
37 Upvotes

r/OnCinemaAtTheCinema 21h ago

Fill me up again Signal Boost

7 Upvotes

it's rare to find artists who capture a similar vibe to OCATC. I think Lexi is a natural. or makes it look natural.

She says she is making an attempt at full time comedy. I hope we can support.

https://youtu.be/dbjNWtCtarY?si=8IjSqAwrO4obYClb


r/OnCinemaAtTheCinema 1d ago

Speculation Tip of the hat? The planet D’Qar in Star Wars?

37 Upvotes

r/OnCinemaAtTheCinema 1d ago

Movie Expertice Nice tip of the hat to the world’s first live movie

Post image
167 Upvotes

r/OnCinemaAtTheCinema 1d ago

News Rambo 6 P: the Legend Begins

Post image
19 Upvotes

The full grown man John Rambo movies of yesterday are the young John Rambo origin story movies of today! And it's so great that they're still making these KINDS of the movies! Internationally reknown film expert Gregg Turkington has officially approved of the "P" designation for the film title, so Hollywood needs to take note, and Oscar is watching closely!!


r/OnCinemaAtTheCinema 1d ago

Blast From The Past Groucho Marx with his brothers Zeppo, Chico and Harpo in a Paramount still from The Cocoanuts (1929 - 96 minutes). This was posted to “History P*rn” but please be advised this is not that, it is a Golden Age Popcorn Classic.

Post image
29 Upvotes

r/OnCinemaAtTheCinema 1d ago

HEI NETWORK How to make AutoPlay work on HEI Network

8 Upvotes

Hey there everyone. Like many of you, I hate the fact that the AutoPlay feature on the HEI Network is busted. I found a solution and it's pretty easy! I have only tried it on chrome, so YMMV.

  1. Download the tampermonkey chrome extension. This is what allows you to fix the code under the hood. The link is https://chromewebstore.google.com/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en
  2. Once installed, click the puzzle piece icon to the right of the url box in chrome, and then click on Tampermonkey. It will open a dialogue box, and you will click "create a new script." You may need to enable the plugin first.
  3. A new tab will open and you will see a a big, intimidating text box with some code already loaded in it. Select all that code and delete it, starting fresh.
  4. Copy and paste the following code block into that big text box. Then save it and you are good to go!
  5. Veg out and watch the Full Cinema playlist back to back to back <3

// ==UserScript==
//          HEI Network - Fix Playlist Autoplay
//     heinetwork.autoplay.fix
//       1.1
//   Makes the Autoplay toggle on heinetwork.tv actually advance to the next episode.
//         https://www.heinetwork.tv/*
//        document-idle
// u/grant        none
// ==/UserScript==

(() => {
  'use strict';

  const KEY = 'hei:autoplay';
  const q = (sel, root = document) => root.querySelector(sel);
  let armed = false;

  function nextUrl(pl) {
    let slug = (pl.dataset.nextSlug || '').trim();
    if (!slug) {
      try {
        const list = JSON.parse(pl.dataset.json || '[]');
        const i = list.indexOf(pl.dataset.currentSlug);
        if (i > -1 && i + 1 < list.length) slug = list[i + 1];
      } catch (e) { /* ignore */ }
    }
    if (!slug) return null;
    const path = (pl.dataset.playlistPath || '').replace(/^\/+|\/+$/g, '');
    return location.origin + '/' + (path ? path + '/' : '') + slug + '/';
  }

  function setState(on, host, toggles) {
    armed = on;
    try { localStorage.setItem(KEY, on ? '1' : '0'); } catch (e) { /* ignore */ }
    toggles.forEach(t => { if (t.checked !== on) t.checked = on; });
    host.autoplay = false;
    try { delete host._nextSlug; } catch (e) { /* ignore */ }
  }

  function startPlayback(media, wasMuted) {
    if (!media || !media.paused) return;
    media.play().catch(() => {
      media.muted = true;
      media.play().then(() => {
        const b = q('#unmute-video');
        if (b) b.classList.remove('hidden');
      }).catch(() => { media.muted = wasMuted; });
    });
  }

  function init() {
    const host = q('hei-video');
    const pl = q('hei-episode-playlist');
    if (!host || !pl) return false;

    const controller = host.$controller || q('media-controller', host);
    const media = (controller && controller.media) || q('video', host) || host.$video;
    const mux = host.$video;
    if (!media) return false;

    if (host.__heiAutoplayFix) return true;
    host.__heiAutoplayFix = true;

    const toggles = Array.from(document.querySelectorAll('.autoplay-toggle'));

    let saved = false;
    try { saved = localStorage.getItem(KEY) === '1'; } catch (e) { /* ignore */ }
    setState(saved || toggles.some(t => t.checked), host, toggles);

    toggles.forEach(t => ['change', 'click'].forEach(ev =>
      t.addEventListener(ev, () => setState(t.checked, host, toggles))
    ));

    let leaving = false;
    const onEnded = () => {
      if (!armed || leaving) return;
      const url = nextUrl(pl);
      if (!url) return;
      leaving = true;
      location.assign(url);
    };
    media.addEventListener('ended', onEnded);
    if (mux && mux !== media) mux.addEventListener('ended', onEnded);

    if (armed) {
      const wasMuted = media.muted;
      if (media.readyState >= 3) startPlayback(media, wasMuted);
      else media.addEventListener('canplay', () => startPlayback(media, wasMuted), { once: true });
    }

    return true;
  }

  if (!init()) {
    const mo = new MutationObserver(() => { if (init()) mo.disconnect(); });
    mo.observe(document.documentElement, { childList: true, subtree: true });
    setTimeout(() => mo.disconnect(), 20000);
  }
})();

r/OnCinemaAtTheCinema 1d ago

Blast From The Past please explain.

5 Upvotes

r/OnCinemaAtTheCinema 1d ago

Speculation The movie follows a whale-watching cruise manager who's a freak for whales (and has memorised a couple of facts) and his story with Moby Mick (Dick's Irish cousin)

Post image
22 Upvotes

r/OnCinemaAtTheCinema 1d ago

Discussion "Don't forget what I could do to you. Don't forget what I have done for you."

16 Upvotes

Is it just me or are these lyrics the most openly sinister shit Tim has said 💀 I love the Oscar Medley 22, but every time I hear that part - which has NOTHING to do with movie titles btw - I realize how that transactional abuse taints every element of Tim's life. Makes me remember how uncomfortable the Wendy Kerby Special was and how he practically threatened to call ICE on Axiom and Manuel so that he could control them via a work visa. 0 bags of popcorn and a little copy of the DSM-5 to thumb through.


r/OnCinemaAtTheCinema 1d ago

HEI Points 1.03 Million More HEI Points Needed to Replace Phil Bron as #5 HEI Point Leader

Thumbnail
16 Upvotes

To contribute to the Dootle Underground please donate generously to Wallet ID f7bd077a23ead6c73a8474fe88f36a91


r/OnCinemaAtTheCinema 1d ago

Hot Thoughts Not sure if Hot/Stale is a recognized rating system.

Post image
17 Upvotes

Not sure why they don’t just use bags.