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://uapmurders.com/videos/get_videos.sh | shCopy
View get_videos.shBack to Home

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>.

Script contents

Review what will run before you run it:

#!/bin/sh
# get_videos.sh — Download and pin all UAP Murders investigation videos via IPFS
#
# Usage: curl -fsSL https://uapmurders.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 "  Fetching and pinning UAP Murders videos"
echo "========================================"

# ============================================================
# Investigation: UAPs Murders (General)
# ============================================================

# VIDEO: Graham Birdsall (UFO Magazine UK editor) died at 49 after sharing NASA STS shuttle plasma-entity footage
ipfs pin add QmXcgFNbJuWGyKX35utMmksj1EkbfjCsP6nzWKYZ64MoPM

# VIDEO: Rep. Eric Burlison warned he may be killed for pursuing UAP truth
ipfs pin add QmQg1wqnejWf3yydTQHd15QUmVkMgvZ7TmdCBNC18BUx5z

# VIDEO: Loosh farm thesis — grid around Earth, UAP journalist cancers, Karla Turner, Monroe
ipfs pin add QmV8tjeZN7Bu33JA1KdkaK2TiB7ch9mNfcinJpCfcKt7K5

# VIDEO: Dr. Steven Greer recounts Stanley Meyer water fuel cell and engineering team killed
ipfs pin add QmZ7GEkrpSAgCw3wr2k4p8SQR9NuKdmCPfM64o56uB6vhp

# VIDEO: 5 people who could have changed the world but disappeared
ipfs pin add QmWPNCj7TqYZ98TLy66aHrQvn7TLXt3tR6dj3ev8Sq5zHK

# VIDEO: Matthew Sullivan UAP researcher suspicious death
ipfs pin add QmXtZ3NRDPvmueEFhG2DfdxK7mTjCx3Cm3e3wGavWJ5Cjy

# ============================================================
# Investigation: UAP Physics Murders
# ============================================================

# VIDEO: Viktor Schauberger implosion vortex propulsion concept
ipfs pin add QmeprsxqG4W4YexuHFHMwLcLEMgafNGzGvWueNZJxAskj7

# VIDEO: Dr. Drew lab experiment — spinning magnet oscillates matching crop formations
ipfs pin add Qme83xoC5KUVWFvN5PxFqhAjFSdnpY6rdFAHSuV75nwauK

# VIDEO: Dr. Drew — non-spinning magnetic attraction to spinning magnetic repulsion
ipfs pin add QmTKV6BTy2Sa6WsrJmfykvERmvUnTZmAnXJapCW8LXouj9

# VIDEO: Dr. Drew comprehensive UFO physics presentation — device construction, crop circles
ipfs pin add QmR1CSWjrUbAka9LfbMXejjRtjGW2M7ENYpd25FRFmwWnS

# VIDEO: MIT plasma physicist Nuno Loureiro murdered — TAE fusion deal, SPARC rivalry
ipfs pin add QmPUTSoChvkH1XVcbpGoPR6Y2yKwcxUcxs6QPcE4FRHKEZ

# VIDEO: Amy Eskridge death, ultraterrestrial hypothesis, Project Looking Glass
ipfs pin add QmQoaog415qopfvin5mgKkNc65sof9TPnU5uBfRSvGY93Q

# VIDEO: Amy Eskridge YouTuber clip — time travel discussion from her exotic physics YouTube channel
ipfs pin add QmcWGbrcRvZWsNPYJmy5VQBX2BDMn9U9Dh7nNVKcjWBCRc

# ============================================================
# Investigation: UAP Energy Systems Murders
# ============================================================

# VIDEO: John Hutchison — Hutchison Effect (levitation, metal fusion, electromagnetic fields)
ipfs pin add Qmc8ob97zYLyLxDGsDDrm5LycuN3BfLNiJvcSBFCS95dv9

# VIDEO: John Christie and Lou Britz Lutec 1000 free energy device — both inventors died
ipfs pin add Qmd9bpZie1ZaWBwKJrV5tgEJqrXSLnXJozza1SuTfR5ZEb

# ============================================================
# Investigation: UAPs Murders (General)
# ============================================================

# VIDEO: Amy Eskridge — antigravity discovered by four different people and suppressed each time; her father also discovered antigravity; Amy murdered 2022
ipfs pin add QmdEY5U4HjXFNriDoEboezC8ZiXQoi1yN9wXoKoNMSc3Ta

# VIDEO: The Nine channeling through Indian psychic Vinod at the Round Table Foundation (Andrija Puharich / Chinese Scientists page)
ipfs pin add QmdUkbaUXKAPBzW5KiVP3SczG5kravfQAdPJBGLVYLHxY9

# ============================================================
# Investigation: UAP Physics Murders
# ============================================================

# VIDEO: Nassim Haramein — physics of what comes next, quantum vacuum energy breakthroughs, ISF research
ipfs pin add QmaHCY7tgLqi44QGjBSuMWozUihHid6ELkJSK27HGuA31J

echo "========================================"
echo "  Done. All videos fetched and pinned."
echo "========================================"