Intitle Index.of Mp4 Fight Club (RELIABLE — 2026)
A. The Frontend Component (React)
This component renders the movie details. It checks for user permissions before showing the "Watch Now" button.
import React, useState, useEffect from 'react';
import motion from 'framer-motion';
const MovieDetailModal = ( movieId, onClose ) =>
const [movieData, setMovieData] = useState(null);
const [isLoading, setIsLoading] = useState(true);
const [isAuthorized, setIsAuthorized] = useState(false);
useEffect(() =>
// Fetch metadata from our secure internal API
const fetchMovieDetails = async () =>
try
const response = await fetch(`/api/movies/$movieId`);
const data = await response.json();
setMovieData(data);
// Check if user has rights (simulated logic)
// In a real app, this would check a JWT or session token
const authCheck = await fetch(`/api/auth/check-rights?movieId=$movieId`);
setIsAuthorized(authCheck.ok);
catch (error)
console.error("Failed to load movie data");
finally
setIsLoading(false);
;
fetchMovieDetails();
, [movieId]);
if (isLoading) return <div className="loading-spinner">Loading...</div>;
if (!movieData) return null;
return (
<motion.div
className="modal-overlay"
initial= opacity: 0
animate= opacity: 1
onClick=onClose
>
<motion.div
className="modal-content"
initial= scale: 0.8, opacity: 0
animate= scale: 1, opacity: 1
onClick=e => e.stopPropagation()
>
<div className="modal-header">
<h1>movieData.title</h1>
<span className="year">movieData.year</span>
<span className="rating">movieData.rating</span>
</div>
<div className="modal-body">
<div className="poster-container">
<img src=movieData.posterUrl alt=movieData.title />
</div>
<div className="info-container">
<p className="synopsis">movieData.synopsis</p>
<div className="cast-crew">
<strong>Director:</strong> movieData.director
<br />
<strong>Cast:</strong> movieData.cast.join(', ')
</div>
<div className="action-buttons">
isAuthorized ? (
<button className="btn-play" onClick=() => window.location.href = `/watch/$movieId`>
▶ Watch Now
</button>
) : (
<div className="upgrade-prompt">
<p>This content requires a Premium subscription.</p>
<button className="btn-upgrade">Upgrade Plan</button>
</div>
)
</div>
</div>
</div>
</motion.div>
</motion.div>
);
;
export default MovieDetailModal;
B. The Backend Security Layer (Node.js/Express)
This code prevents the "Index.of" issue. It ensures that video files are never served via a static public directory. Instead, it generates a temporary, signed URL that expires after a few minutes.
const express = require('express');
const router = express.Router();
const S3Client, GetObjectCommand = require('@aws-sdk/client-s3');
const getSignedUrl = require('@aws-sdk/s3-request-presigner');
const s3Client = new S3Client( region: process.env.AWS_REGION );
// Endpoint to get the streaming URL
router.get('/api/stream/:movieId', async (req, res) =>
const movieId = req.params;
const userId = req.user.id; // Extracted from auth middleware
// 1. Validate User Rights (RBAC)
const hasAccess = await checkUserSubscription(userId);
if (!hasAccess)
return res.status(403).json( error: 'Subscription required' );
// 2. Generate Signed URL
// The file is stored privately in S3 with obfuscated naming, preventing simple browsing
const command = new GetObjectCommand(
Bucket: process.env.S3_BUCKET_NAME,
Key: `movies/$movieId/master.mp4`,
);
try
// URL expires in 1 hour
const signedUrl = await getSignedUrl(s3Client, command, expiresIn: 3600 );
res.json( streamUrl: signedUrl );
catch (err)
console.error(err);
res.status(500).json( error: 'Could not generate stream link' );
);
module.exports = router;
Let’s borrow a little philosophy from Tyler Durden. The first rule of Fight Club is you do not talk about Fight Club. The first rule of digital security? You do not download movies from random IP addresses.
Those "open directories" are often honeypots, malware farms, or legal traps set by copyright enforcement bots. One click on the wrong index.of page and you’re not breaking the first rule—you’re breaking the law and your hard drive simultaneously.
Before we dive into the cultural implications, we must dissect the keyword itself. This is not a natural language query. You wouldn’t type this into Google expecting a Wikipedia page. Instead, it is a Google dork—a specialized search using operators to drill into vulnerable or exposed server directories.
Let’s break it down:
When combined, "Intitle Index.of Mp4 Fight Club" searches for exposed web directories listing MP4 files of the movie Fight Club. It is a treasure map to a file that, legally, you are supposed to pay for.
In the early 2000s, many web servers misconfigured their directory permissions. If you searched intitle:index.of (meaning the words "Index of" appear in the page title), you could find open folders full of MP3s, software, and yes—MP4 movies.
Search engines still index these old directories, but here’s the modern reality:
If you are determined to own a digital file so you can watch it offline without DRM, do not use index.of.
Instead, buy a used Blu-ray of Fight Club on eBay for $5. Then, use a free program called MakeMKV to “rip” (convert) that disc to an MP4 or MKV file on your computer.
If you’ve landed here typing intitle:index.of mp4 Fight Club into Google, you’re likely looking for one thing: a direct line to David Fincher’s 1999 masterpiece without the hassle of Netflix logins or rental fees.
I get it. You’ve heard the rumors. You’ve seen the Reddit threads. The "Index of" hack is an old-school search trick that supposedly reveals open directories on vulnerable websites—bare lists of files just waiting to be downloaded.
But before you click that shady link, let’s talk about why this search string is a ghost hunt, a security risk, and—ironically—a violation of the very first rule of Fight Club.
By implementing this feature:
Understanding the Search for "Intitle Index.of Mp4 Fight Club"
In the world of advanced search queries, few strings are as recognizable to seasoned internet users as the "Index of" operator. When users search for "Intitle Index.of Mp4 Fight Club," they aren't just looking for trivia about David Fincher’s 1999 cult classic; they are attempting to navigate the "Open Directory" layer of the internet.
This specific search string is a powerful Google Dorking technique used to find web servers that are misconfigured or intentionally set to list files directly, often bypassing traditional streaming interfaces. Breaking Down the Query
To understand why this specific phrase is used, we have to look at the syntax:
Intitle: This operator tells Google to only show results where the specified words appear in the HTML title tag of the webpage.
Index.of: Most web servers (like Apache or Nginx) generate a page titled "Index of /" when there is no index file (like index.html) to display. This lists every file in that folder.
Mp4: This filters the results to directories that specifically contain video files in the MPEG-4 format.
Fight Club: The specific keyword for the content being sought. Why This Search Exists
While mainstream audiences have shifted toward subscription services like Netflix, Disney+, or Max, "Index of" searches remain popular for several reasons:
Direct Downloads: Unlike streaming sites, open directories allow for direct, high-speed downloads without the need for third-party "downloader" tools.
No Advertisements: These directories are raw server views. There are no pop-ups, trackers, or "hot singles in your area" ads that typically plague free movie streaming sites.
Archival Access: Sometimes, specific cuts of films or rare high-bitrate versions are stored on private servers that accidentally become indexed by search engines. The Risks of Open Directory Browsing
While it might seem like a shortcut to "Project Mayhem," searching for open directories carries significant risks:
Security Vulnerabilities: "Index of" pages are unencrypted and unverified. Clicking a file that looks like Fight_Club.mp4 could easily be a renamed .exe or .scr file containing malware or ransomware.
Legal Implications: Accessing and downloading copyrighted material via open directories is a violation of digital copyright laws (such as the DMCA).
Dead Ends: Because these are often server errors, many links found via this method are broken, slow, or lead to "403 Forbidden" pages as soon as the administrator realizes the leak. The Legacy of Fight Club
It is no surprise that Fight Club is a frequent subject of these searches. The film’s themes of anti-consumerism and anti-establishment resonate with the "digital pirate" subculture. However, the best way to experience the cinematography of Jeff Cronenweth and the gritty atmosphere of Fincher’s masterpiece remains high-quality, legitimate 4K UHD releases or licensed streaming platforms, which ensure both the safety of your device and the highest possible audio-visual fidelity. Conclusion
The search for "Intitle Index.of Mp4 Fight Club" is a relic of an older internet—a time before the "streaming wars" when users had to hunt through server directories to find media. While it remains a fascinating example of how search engines can be manipulated to find hidden data, the modern user is generally better off sticking to secure, legal channels.
Elias didn’t sleep anymore. His apartment was a graveyard of IKEA furniture and half-empty takeout boxes, lit only by the blue glare of a dual-monitor setup. He was a "digital scavenger," a man who found meaning in the corners of the internet that Google tried to forget.
One Tuesday, at 3:14 AM, he typed a familiar string into the search bar: intitle:index.of mp4 "fight club".
He wasn’t looking for the movie—he owned three copies. He was looking for the server. He liked the raw, skeletal look of an open directory: the white background, the simple blue links, the feeling of standing in someone’s unlocked basement.
He clicked a link from a hosted domain in a country that didn't exist when the movie was released. The directory was nearly empty, except for one file:Fight_Club_Final_Rule.mp4
He hovered over it. The file size was zero bytes. Strange. He refreshed the page.
The file size jumped to 1.2GB. Then 2.4GB. It was growing in real-time, as if someone was uploading it specifically because he was watching. Elias clicked download.
As the bar filled, his speakers began to hum—a low, rhythmic thumping, like a heartbeat or a gloved fist hitting a heavy bag. When the download finished, the file icon wasn't the standard VLC traffic cone. It was a flickering, grainy thumbnail of a bar of pink soap. He opened it. Intitle Index.of Mp4 Fight Club
There was no Brad Pitt. No Edward Norton. The video was a live feed of an empty basement—his basement. The one in the apartment building he’d lived in for three years but never visited. In the center of the frame stood a single, wooden chair.
A notification popped up in the corner of his screen. A new file had appeared in the open directory:Instruction_01.txt
Elias opened the text file. It contained only one sentence:"The first rule of the new world is that you stop watching and start breathing."
Below the text, a GPS coordinate appeared. It pointed to the vacant lot across from his building. Elias looked out the window. In the dark, the orange glow of a single cigarette flickered. Someone was waiting.
He realized then that the "index of" wasn't a list of files. It was an invitation to a life he’d been too tired to live. He grabbed his jacket, left his computer running, and stepped into the hall.
For the first time in months, Elias wasn't an observer. He was the protagonist.
“The first rule of Fight Club… is you do not talk about Fight ... - Facebook
The search query "intitle:index.of mp4 Fight Club" is a specialized search string, often called a " Google Dork
," used to find unsecured web servers (open directories) that contain the movie Fight Club in MP4 format. Technical Breakdown intitle:index.of
: This command instructs Google to search for pages where the browser title includes "Index of." This is the default title for directories on servers (like Apache or Nginx) that allow public file browsing.
: Filters for the specific video file extension, as opposed to documents or images. "Fight Club"
: Refines the search to directories containing that specific title. Safety & Security Risks
Accessing these directories is generally considered high-risk due to several factors: Malware Exposure
: Files in open directories are unmoderated. Attackers often name malicious executables after popular movies to trick users into downloading malware. Lack of Encryption
: These servers often use the less secure HTTP protocol, meaning your activity and IP address can be easily monitored. Unreliable Content
: Since these are often misconfigured private servers, the files may be corrupted, incomplete, or entirely different from what the filename suggests. Legal & Ethical Implications Copyright Infringement : Downloading or streaming copyrighted material like Fight Club
from unauthorized servers is a violation of international copyright laws.
: While browsing is a legal "gray area," many jurisdictions consider the act of downloading a copyrighted work to be illegal reproduction. Impact on Creators
: Using these methods bypasses official distribution channels, ensuring that artists and production staff are not compensated for their work. How to Find Open Directories? - Hunt.io
The blue light of the monitor was the only thing keeping Elias awake at 3:00 AM. His eyes were bloodshot, tracing the lines of a scavenged web directory. He wasn’t looking for anything specific—just the thrill of the hunt in the unindexed corners of the web. He typed the string: intitle:"index of" mp4 "fight club".
Most links were dead ends—404 errors or password-protected gates. But then, one clicked. No flashy UI, no ads, just a stark white page with a list of file names in blue. At the bottom sat a single file: Fight_Club_1999_UNCUT_RAW.mp4.
Elias clicked. He expected a slow download bar, but the video snapped open instantly, filling his screen.
It wasn't the movie he knew. There were no opening credits. It started mid-sentence with Tyler Durden looking directly into the lens—not at the Narrator, but at Elias.
"You're not supposed to be here," the figure on the screen said, his voice crackling with digital artifacts. "The first rule is you don't talk about it. The second rule is you don't search for it."
Elias tried to move his mouse, but the cursor was frozen. The video didn't have a seek bar. It wasn't a stream; it felt like a broadcast.
"You're looking for a way out of your life through a screen," the voice continued, now clearer. "But you just found a door that only opens one way."
Outside Elias’s apartment, a heavy black sedan pulled to the curb. The monitor flickered once, twice, and then went black. In the reflection of the dark screen, Elias saw his own terrified face—and a second shadow standing right behind him in the corner of the room.
He realized too late: some directories aren't meant to be indexed.
Are you interested in more stories about digital mysteries, or would you like a breakdown of how "Index of" searches actually work? [SOLVED]Index of files in a directory - Arch Linux Forums
The phrase "Intitle Index.of Mp4 Fight Club" is a specific search string, known as a Google Dork
, used to find "open directories"—unsecured web servers that accidentally expose their file structures to the public. Below is an essay exploring how this technical query mirrors the subversive themes of the 1999 film Fight Club The Digital Shadow: Subversion and the Open Directory intitle:"index of" mp4 "Fight Club"
serves as a modern digital skeleton key. It exploits the way search engines index the web, specifically targeting servers where the "directory listing" function is enabled. This technical vulnerability allows users to bypass official streaming platforms and commercial storefronts, directly accessing raw movie files like Fight Club.mp4 In a poetic sense, using this query is an act of digital "Project Mayhem."
Just as Tyler Durden sought to dismantle the "IKEA nesting instinct" and corporate control, the open directory allows a user to step outside the curated, paid ecosystems of modern media. It is a rejection of the "consumerist culture" the film so famously critiques. Thematic Parallels
“The first rule of Fight Club… is you don't talk about Fight ... - Facebook
The search query intitle:"index.of" mp4 "Fight Club" is a specialized search technique, often called a "Google Dork," used to find open directories on web servers that contain a video file of the movie Fight Club. How the Query Works
This specific string of Google search operators targets the way web servers (like Apache) automatically display folder contents:
intitle:"index.of": Limits results to pages where the browser tab or title starts with "Index of," which is the standard heading for a raw server directory.
mp4: Filters for the specific file extension, ensuring the directory likely contains video files.
"Fight Club": Specifies the exact movie title to find within those directories. Risks and Considerations
While this method is a common way to find direct downloads, there are several things to keep in mind:
Security: Files in open directories are unvetted and can contain malware or viruses. Let’s borrow a little philosophy from Tyler Durden
Legality: Accessing or downloading copyrighted material without authorization may violate local laws or the terms of service of your ISP.
Broken Links: These directories are often temporary; many results may lead to "404 Not Found" errors or dead links if the server administrator has secured the folder.
If you are looking for a safe way to watch the film, you can check its availability on authorized platforms using the Google "What to Watch" tool.
What is Google Dorking/Hacking | Techniques & Examples - Imperva
Intitle: The `intitle:` operator is used to search for specific terms in the title of a webpage. For example, `intitle:”index of”`
intitle:index.of vs intitle:"index of" for directory listings : r/webdev
The yellow cursor blinked against the black screen like a single, mocking eye.
rubbed his temples, his eyes burning from sixteen straight hours of spreadsheet optimization in a gray cubicle that smelled of stale coffee and toner. He was the perfect consumer, a man who bought Scandinavian furniture to define his personality and lived his life in neat, predictable rows.
But tonight, Arthur wanted to feel something real. He wanted to break the rules.
He didn't go to an underground basement. He didn't start a fight. He opened a web browser and typed the forbidden incantation, a digital skeleton key used by data hoarders and internet pirates: intitle:"index.of" mp4 "fight club".
The command bypassed flashy streaming interfaces and corporate paywalls, diving straight into the exposed, raw directories of vulnerable web servers. It was a search for digital contraband. He pressed enter.
The search engine spat back a list of stark, unstyled parent directories. No posters. No trailers. Just raw text and file sizes. Arthur clicked on the first link. It was an open directory hosted on a forgotten server in Berlin.
There it was, listed between home videos and Linux installation files: Fight_Club_1999_1080p.mp4.
Arthur clicked the file. It didn't buffer. It didn't ask for a subscription. The download bar began to creep forward, a tiny rebellion against the digital conglomerates that controlled every piece of media he consumed. He was bypassing the system, just like the narrator of the movie he was about to watch.
As the download reached 99%, the screen suddenly flickered and went black. A single line of green text appeared in the center of the dark monitor.
The first rule of Project Mayhem is you do not ask questions about the server.
Arthur froze. He tried to move his mouse, but the cursor was gone.
The second rule of Project Mayhem is you do NOT ask questions about the server.
The text vanished, replaced by a live video feed. Arthur jumped back, his heart hammering against his ribs. It was a webcam feed of a man sitting in a dark room. The man was wearing a familiar red leather jacket. He was looking directly into the camera.
"You're looking for a way out of your IKEA-furnished life, aren't you, Arthur?" the man said, his voice a low, gravelly purr. "You think downloading a movie makes you edgy? You think you're breaking the system by stealing a few gigabytes of data?" Arthur couldn't breathe. "How do you know my name?"
"We know everything about you, Arthur. We know your credit score. We know your browsing history. We know you're dying of boredom in that cubicle." The man leaned closer to the camera. "You don't need to watch a movie about fighting back. You need to actually do it."
The video feed cut out, and Arthur's browser returned to the stark, white directory list. But the Fight_Club_1999_1080p.mp4 file was gone. In its place was a new file, timestamped just seconds ago. Your_First_Assignment.txt
Arthur hesitated for only a second before his trembling hand reached out and clicked the link.
I can’t help create or promote content that facilitates finding or downloading copyrighted material (like "Index.of" listings for movies). I can, however:
Which would you like? If you want a film review, specify tone (analytical, casual, 1-paragraph, full-length) and whether spoilers are allowed.
Understanding the Search String: "Intitle Index.of Mp4 Fight Club"
The phrase you provided is a specific type of Google Dork, a search technique used to find open directories on the internet. While it looks like a technical error, it is a purposeful command used by researchers and enthusiasts to locate specific file types—in this case, an MP4 video file of the movie Fight Club What Does This Search String Actually Do?
Each part of the query serves a mechanical purpose in filtering search results:
intitle:index.of: This tells the search engine to only show pages that have "Index of" in their HTML title. This is the standard header for an open server directory.
mp4: Filters the directory results to ensure the folder contains video files in the MP4 format.
Fight Club: Limits the results to directories containing that specific title. Why People Use Open Directories
Open directories are web servers that aren't hidden behind a standard website interface. They are often used for:
Legacy Storage: Older servers that were never properly secured or updated.
Academic/Personal Sharing: Direct file sharing between individuals without using a third-party host.
Media Archiving: Cult classic films like Fight Club are frequently archived by fans in various formats. Security and Ethical Considerations
While "dorking" is a powerful tool for finding information, it comes with risks:
Malware: Open directories are unvetted. Files labeled as movies can often be disguised malware or phishing scripts.
Copyright: Streaming or downloading copyrighted material like Fight Club without authorization is a violation of digital rights and can lead to ISP warnings or legal action.
Privacy: Sometimes these "indices" expose personal data or private server structures not meant for public viewing. A Better Way to Experience Fight Club
Instead of navigating the risks of open directories, Fight Club—celebrated for its themes of anti-consumerism and spiritual awakening—is widely available through legitimate channels.
Streaming: Check platforms like Amazon Prime Video or Hulu (availability varies by region). or "Google Dork
Digital Purchase: You can find high-quality 4K or HD versions on Apple TV or the Google Play Store.
Physical Media: For the best audio and visual experience, many fans prefer the Blu-ray, which includes the sound design that earned the film its only Oscar nomination.
Are you looking to learn more about Google Dorking commands for research, or are you more interested in the thematic analysis of the film itself?
The search term intitle:index.of mp4 "Fight Club" is a specialized "Google Dork" used to find open web directories containing video files of the 1999 film Fight Club Understanding the Search Query intitle:index.of
: This tells Google to find pages that have "Index of" in the title. These are standard directory listing pages generated by web servers (like Apache or Nginx) when there is no index file (like index.html
: Limits the results to directories that likely contain MP4 video files. "Fight Club" : Specifies the exact movie title you are searching for. Movie Information If you are looking for details about the film itself: : A depressed, insomniac narrator ( Edward Norton ) meets a charismatic soap salesman, Tyler Durden (
). Together, they create an underground fight club that evolves into a dangerous anti-consumerist organization called "Project Mayhem" [24, 27].
: It is eventually revealed that Tyler Durden is actually a dissociative alter-ego of the narrator [23]. : Directed by David Fincher , based on the novel by Chuck Palahniuk [26]. Where to Watch Legally
Instead of searching through insecure open directories, you can find the movie on official platforms: : Available on Digital Purchase/Rent : Platforms like Amazon Prime Video , and Google Play.
: A high-definition version is also hosted for free streaming and download at the Internet Archive by David Fincher or other movies with psychological twists
I can’t help create content that promotes finding or accessing pirated material (like using "intitle:index.of" to locate unauthorized copies of movies such as Fight Club). I can, however, help with any of the following instead—pick one:
Which would you like?
The text intitle:index.of mp4 "Fight Club" is a specific type of search query known as a Google Dork. It is used to find web directories (open indexes) that may contain a downloadable video file of the movie Fight Club. Breakdown of the Query
intitle:index.of: This tells the search engine to look for pages where the title contains "index of," which is the standard header for server directories that list files.
mp4: This filters the results to look for the MP4 video file format.
"Fight Club": This ensures the directory specifically contains the title of the movie. Why people use this
Users often use these "dorks" to bypass traditional streaming or storefront sites to find direct download links. However, using these links can be risky:
Security Risks: Files in open directories are unvetted and can contain malware or viruses disguised as movie files.
Legal/Copyright Issues: Downloading copyrighted content like Fight Club without authorization is typically a violation of copyright laws.
Dead Links: Many of these directories are temporary or get taken down quickly once discovered. Where to watch "Fight Club" safely
If you are looking to watch the film, it is widely available on major platforms:
Streaming: Check services like Hulu, Disney+ (in certain regions), or Amazon Prime Video.
Rent/Buy: Available on Apple TV, Google Play Movies, and YouTube.
The search query intitle:"index of" mp4 "Fight Club" is a specialized search technique known as Google Dorking. It is used to locate "open directories"—web server folders that are publicly accessible and indexed by search engines, often due to server misconfigurations. The Mechanics of the Query
Each part of this "dork" serves a specific technical purpose:
intitle:"index of": Instructs the search engine to look for pages where the HTML title tag contains the phrase "index of". This is the standard header generated by servers like Apache or Nginx when directory listing is enabled.
mp4: Filters the results to ensure the directory contains video files in the MP4 format.
"Fight Club": Specifies the exact content being sought, narrowing the search to folders containing files related to the 1999 David Fincher film. Context: Open Directories
Open directories occur when a server lacks a default index page (like index.html) or has been configured to allow users to browse its file structure. While sometimes used intentionally for sharing resources, they are frequently the result of security oversights.
Legitimacy: They can host anything from archived software and scientific papers to personal media backups.
Risks: These directories are a primary target for security professionals (for vulnerability auditing) and cybercriminals (to distribute malware or harvest sensitive data). Legal and Ethical Implications
Using advanced search operators is entirely legal, as it utilizes public search engine features. However, the ethical and legal boundaries change based on the intent and the content accessed: How to Find Open Directories? - Hunt.io
The search query intitle:index.of mp4 "Fight Club" is a specific search operator, or "Google Dork," used to find open directories on the internet that host the movie Fight Club in MP4 format. How the Query Works
intitle:index.of: This tells Google to look for pages where the title contains "Index of," which is the default header for web server directories (like Apache or Nginx) that aren't protected by a standard homepage.
mp4: Filters results to directories containing MP4 video files.
"Fight Club": Specificies the exact title of the file you are looking for. Risks and Safety Considerations
While these queries are a common way to find "abandoned" or public file repositories, they come with significant risks:
Security Vulnerabilities: Open directories are often unmonitored. Clicking links within them can expose your device to malware, phishing scripts, or tracking.
Copyright Issues: Accessing or downloading copyrighted material like Fight Club through these methods typically violates digital copyright laws (such as the DMCA).
Dead Links: Many of these directories are temporary or quickly indexed and removed by search engines once discovered. Better Alternatives
If you are looking to watch Fight Club safely and legally, it is widely available on major platforms:
Streaming: Check services like Hulu, Disney+, or Paramount+ (availability varies by region).
Rent/Buy: Available in high definition on Amazon Prime Video, Apple TV, YouTube, and the Google Play Store.