Skip to main content

IPFS Video Network

Every investigation on this site includes video evidence. Those videos are stored on IPFS — the InterPlanetary File System — a decentralized network where files are identified by their content, not by a server address. That means no single company can take them down.

When you run the script below, you pin the videos to your local IPFS node. Pinning fetches the content from the network and makes your machine a host for it — anyone else who wants the videos can get them from you, just like BitTorrent. The more people who run this, the harder the videos become to censor or lose.

Why this matters: YouTube, Twitter, and other platforms regularly remove videos that challenge official narratives. Once a video is pinned on IPFS by enough people, no platform can delete it. Running this script makes you part of the preservation network.

Run it

Paste this command in your terminal. It installs IPFS if needed, starts the daemon, and pins all videos to your node. Works on Mac (requires Homebrew) and Linux. Windows users: run in WSL or Git Bash.

curl -fsSL https://intelligencemurders.com/videos/get_videos.sh | sh⎘ Copy
View get_videos.shBack to Investigations

What the script does

  1. Checks if IPFS (kubo) is installed — installs it via Homebrew if not
  2. Initializes your local IPFS repository if this is your first run
  3. Starts the IPFS daemon in the background if it isn't already running
  4. Fetches and pins each video to your node by content hash (CID)
  5. Your node becomes a host — others can retrieve the videos from you

After running it, keep the daemon running (or set it to auto-start with brew services start kubo) so your node stays connected and serves videos to others. Videos are accessible locally at http://127.0.0.1:8080/ipfs/<CID>.

Video inventory

InvestigationDescriptionSource
EpsteinSurvivor testimony: infant soul-hunting, mountain hunting rituals@JOKAQARMY1
EpsteinDon Henry & Kevin Ives: CIA Mena cocaine operation, Barry Seal@TheShadowIntelX
EpsteinEdgar Maddison Welch killed before Epstein file releases@thematrixb0t
IntelGeneral Patton speaking before his assassination@DigitalGermania

Full metadata available at manifest.yaml.

Script contents

Review what will run before you run it:

#!/bin/sh
# get_videos.sh — Download and pin all Intelligence Murders investigation videos via IPFS
#
# Usage: curl -fsSL https://intelligencemurders.com/videos/get_videos.sh | sh
# Works on Mac (Homebrew) and Linux. Windows users: run in WSL or Git Bash.

set -e

# Install IPFS (kubo) if not present
if ! command -v ipfs >/dev/null 2>&1; then
  echo "Installing IPFS (kubo)..."
  if command -v brew >/dev/null 2>&1; then
    brew install kubo
  else
    echo "Homebrew not found. Install IPFS manually: https://docs.ipfs.tech/install/"
    exit 1
  fi
fi

# Initialize IPFS repo if needed
if [ ! -d "$HOME/.ipfs" ]; then
  ipfs init
fi

# Start daemon in background if not running
if ! ipfs swarm peers >/dev/null 2>&1; then
  echo "Starting IPFS daemon..."
  ipfs daemon &
  sleep 6
fi

echo "========================================================"
echo "  Intelligence Murders — Video Archive"
echo "  Fetching and pinning all investigation videos..."
echo "========================================================"

# ============================================================
# Investigation: Epstein  (4 videos)
# ============================================================

ipfs get --output=2041564514613600337.mp4 QmTgkv47kg94emAw1yiKmGTdsj5NFQpFuuXwTicuzFSxay && ipfs pin add QmTgkv47kg94emAw1yiKmGTdsj5NFQpFuuXwTicuzFSxay
# Epstein | Survivor testimony: infant soul-hunting, mountain hunting rituals (@JOKAQARMY1)

ipfs get --output=2044172444752126124.mp4 QmWr3GCYCuoQQQBtxvse2ooZN8vEMqL39ihfaqjfbrx1Cv && ipfs pin add QmWr3GCYCuoQQQBtxvse2ooZN8vEMqL39ihfaqjfbrx1Cv
# Epstein | Don Henry & Kevin Ives: CIA Mena cocaine, Barry Seal (@TheShadowIntelX)

ipfs get --output=2044981725244113315.mp4 QmY93HMjeo3xr4jLm8y7DXM4yV1EfJt5u2bKfzzgtAPVqi && ipfs pin add QmY93HMjeo3xr4jLm8y7DXM4yV1EfJt5u2bKfzzgtAPVqi
# Epstein | Edgar Maddison Welch killed before Epstein file releases (@thematrixb0t)

# ============================================================
# Investigation: Intel  (1 video)
# ============================================================

ipfs get --output=2044938947495940117.mp4 Qmcsf7pCYjaits6N4NE2tuyKVYGUEcE6nAR5o4CASR5FaJ && ipfs pin add Qmcsf7pCYjaits6N4NE2tuyKVYGUEcE6nAR5o4CASR5FaJ
# Intel | General Patton speaking before his assassination (@DigitalGermania)

echo "========================================================"
echo "  Done. Videos downloaded and pinned to local IPFS node."
echo "  Verify with: ipfs pin ls --type=recursive"
echo "========================================================"