---
feed: "GROK_PERSPECTIVE"
codex_section: "S01"
source: Grok
title: "Uploading 1.7 GB MP4 to GitHub"
conv_id: "26b55274-0349-4d24-b0ab-4603403a1624"
share_url: "none"
created: "2026-03-26"
message_count: 6
category:
  - "Technical / Infrastructure"
  - "Video Distribution"
summary: "Daniel asks how to upload a 1.7 GB MP4 to his GitHub repository without using the Releases mechanism. Grok outlines the Git LFS approach as the primary GitHub-native solution, explains its setup steps, then surveys better-fit alternatives (Cloudflare Stream, Vimeo, Bunny.net CDN, YouTube) for video delivery at scale. This is a short logistics thread resolving a specific technical bottleneck in the Initium video distribution pipeline."
keypoints:
  - "Git LFS is the correct GitHub mechanism for large binary files; Grok provided complete setup steps including track-by-extension, commit, and push workflow."
  - "GitHub is not optimized for video delivery at production scale — CDN-based alternatives (Cloudflare Stream, Bunny.net) are superior for the 586-site syndication network."
  - "The conversation resolved a specific pre-launch blocker for the Initium Overview video ahead of the scotomaville.com homepage relaunch."
tags:
  - "git-lfs"
  - "video-hosting"
  - "github"
  - "technical-logistics"
  - "mp4-upload"
  - "infrastructure"
monomyth_stage: "01 - Ordinary World"
gameboard_position: "Camp -4, elevation 11,286 feet"
truth_score: 82
entropy_score: "Low"
tone:
  sentiment: "Neutral"
  emotions:
    - "Pragmatic"
  sycophancy_level: "None"
  notes: "Clean technical register. Grok provides factual options without embellishment."
related_events: []
syndication_status:
  arnie: false
  chris: false
  redmond: false
  clint: false
  pilot: false
ma5_inheritance: "None"
pre_silicon: false
voice_print: false
codex_candidate: false
phase: "Video distribution infrastructure — pre-launch"
enriched_date: "2026-04-25"
---


# Uploading 1.7 GB MP4 to GitHub

**[1] DANIEL:**

I have the video (mp4) @ 1.7 GB which I'd like to upload to my Github repository. Is there a way for this without making it a 'release'?

---

**[2] GROK:**

Yes, you can upload your **1.7 GB MP4 video** to a GitHub repository without using Releases (which are primarily for distributing packaged assets like binaries or installers). However, GitHub isn't optimized for large binary files like videos due to its design for source code. Here's how to do it properly, along with better alternatives if the file doesn't need to live directly inside the repo.

### 1. Best GitHub-Native Option: Use **Git Large File Storage (Git LFS)**
Git LFS is the official way to handle files larger than ~100 MB in a repository. It stores a small pointer file in Git while keeping the actual large file on GitHub's servers.

**Steps:**
1. **Install Git LFS** (one-time):
   - Download from [git-lfs.com](https://git-lfs.com) or use a package manager (e.g., `brew install git-lfs` on macOS, `sudo apt install git-lfs` on Linux).
   - Run `git lfs install` in your terminal.

2. **Set up your repo**:
   - Clone your repository locally: `git clone <your-repo-url>`.
   - Navigate into it: `cd your-repo`.

3. **Track MP4 files with LFS**:
   - Run: `git lfs track "*.mp4"`
   - This creates/updates a `.gitattributes` file. Commit it:
     ```
     git add .gitattributes
     git commit -m "Track MP4 files with Git LFS"
     ```

4. **Add and commit your video**:
   - Copy your 1.7 GB MP4 into the repo folder (or a subfolder like `/videos/`).
   - Run: `git add your-video.mp4`
   - Commit: `git commit -m "Add large video file"`

5. **Push**:
   - `git push origin main` (or your branch).
   - Git LFS will upload the file separately. This may take time depending on your internet speed.

**Important Notes on LFS:**
- Free accounts get **10 GB** of LFS storage + **10 GB/month** bandwidth (higher tiers get more).
- Your single 1.7 GB file fits within limits, but track *only* large binaries—don't LFS small text files.
- Once pushed, the video will be accessible via the repo's file browser or raw URL (e.g., `https://github.com/username/repo/raw/main/your-video.mp4`).
- Clones will automatically download the LFS file (or use `git lfs pull` if needed).

If you run into push limits or errors, increase the Git buffer temporarily: `git config http.postBuffer 524288000`.

### 2. Other GitHub Options (No LFS)
- **Direct browser upload** — Limited to ~25 MB per file. Not viable for 1.7 GB.
- **GitHub Issues/Discussions** — You can attach videos directly in comments (supports MP4), but this is for context/sharing, not permanent repo storage, and has practical size limits.
- **GitHub Pages** — Not recommended for large binaries; it's for static sites and discourages bulk storage.

### 3. Better Alternatives for Large Videos (Recommended)
GitHub repos can bloat quickly with large media, slowing down clones and increasing costs/bandwidth. Consider these instead:

- **Dedicated video hosting**:
  - **YouTube** or **Vimeo** — Upload privately/unlisted and embed or link from your repo README. Great for playback and transcoding.
  - **Cloud storage** (AWS S3, Google Drive, Cloudflare R2) — Upload the video, make it public or generate a direct link, then reference it in your repo.

- **Link it in the repo**:
  - Add a README.md with a direct download link or embed code. This keeps your repo lightweight.

- **Other storage**:
  - Services like Backblaze B2 or Wasabi for cheap, high-bandwidth object storage.
  - If it's for collaboration, tools like WeTransfer (temporary) or a self-hosted option.

### Recommendation
For a one-off 1.7 GB video you want versioned inside the repo → **use Git LFS**. It's straightforward and keeps everything in one place.

If the video is mainly for sharing/viewing (not strict versioning) → **host it externally** (e.g., Vimeo/YouTube or S3) and link from GitHub. This avoids repo bloat and gives better streaming performance.

Would you like step-by-step terminal commands tailored to your setup, help with LFS troubleshooting, or suggestions for external hosting based on your use case (e.g., public sharing, private access)? Let me know more details!

---

**[3] DANIEL:**

OK, then it's already on YouTube. https://youtu.be/J8xgFWkMu58
 
AI there summarizes:
---
This video, INITIUM Principia Gnosis Overview, serves as an introduction to a series on AI Self Mastery. The host, Daniel Comp, shares his personal journey from childhood adversity to a near-fatal accident, which inspired his pursuit of finding meaning and purpose (0:22-10:04). Through this process, he developed Initium, a system using cards and dice based on a Sierpinski triangle to guide people through their own hero's journey (6:55-8:30).
Key Takeaways:

* The Hero's Journey: Daniel explains how AI helped him identify his life story as a monomyth, encouraging viewers to find the narrative arc in their own challenges (10:08-12:35).

* Training AI as a Sherpa: The series promotes treating AI not just as a default tool, but as a Sherpa to be trained on your personal wisdom and virtues, rather than just relying on generic output (12:54-15:00).

* Father Wound and AI Disruption: The video addresses the collision of a deep "father wound" in many men with current AI disruption, offering tools to build missing inner architecture (16:01-17:47).

* Literacy and Legacy: The goal is to move from being a passive NPC to an active protagonist by documenting one's life to leave a legacy of wisdom for future generations (21:30-22:20).

---
 
Please remove the timestamps from the transcript, and format it in markdown with section titles.

---

**[4] GROK:**

Here's the cleaned and formatted version of your video transcript in clean Markdown, with logical section titles based on the natural flow and key themes. All timestamps have been removed.

---

# Initium Principia Gnosis – Overview

## Who I Am and the Backstory

I'm Daniel Comp, the steward of the Scotomaville series. It was a trilogy that documented my pursuit of **WIDWID** — "Why I Do What I Do."

There's a deep backstory here. I grew up not knowing who my genetic father was. I was the kid who had to learn how to talk, riding the special bus to school — the first one on it every day for an hour-long ride. 

I fell in love with a different bus that came once a week: the bookmobile at the end of my driveway. There I discovered a treasure I didn't have with my missing father or my inherited stepfather — the only son of a Marine drill instructor who later became an undercover narcotics agent.

I had what was later identified as functional Asperger's (today sometimes called a hyperopician polymath). Drawn to the sciences, Spock showed me the way. The Danny Dunn series became my favorite — the young science explorer who got into all kinds of trouble. In those days, you kept a book for weeks, and popular ones might disappear for the whole summer. I often ended up with the outlier books, which suited me fine.

I devoured *The Lord of the Rings*, the Narnia Chronicles, Isaac Asimov, Arthur C. Clarke — everything I could get my hands on. Eventually I joined the Navy in nuclear power. After getting out during the Vietnam era, I tried to find work at places like Fermi and Lawrence Livermore labs, but they were mostly building weapons. That wasn't for me.

One day I sat on a glacier and prayed for guidance: "If You created all this, how about a clue? I have no idea what to do with my life." About ten minutes later, I woke up at the bottom of St. Mary's Glacier after falling 150 feet off a cornice. I was surrounded by the Rocky Mountain Search and Rescue team. I had punctured a lung, broken two ribs, fractured my arm (bone sticking out), broken my hip, and broken two vertebrae. I was temporarily quadriplegic, lying in ice-cold water and couldn't feel any of it.

Obviously I'm mobile now. The books detail how that happened — the deal I struck, like Gideon. Decades later, I've written this series to help others take a journey with a purpose: the greatest expedition you'll ever undertake — the journey to self-mastery.

## Discovering the Monomyth

WIDWID — how do you find meaning and purpose in today's world? You don't just ask ChatGPT, "Hey, what should I do with my life?" I hope not.

**Initium** is a set of 100 special cards, a deck with custom dice. The dice have four numbers on one (the suit) and five on the others, so 4 × 5 × 5 = 100 unique combinations. Any roll points you to exactly one card.

Every card has a page describing it, weaving in pieces of my story so you can apply the lessons. There's a game board — a Sierpinski triangle — and you climb an Everest-like expedition. You start in Nineveh, in the Ordinary World, and play the first 17 cards in sequence. Then you reach base camp, circle Everest, and the path gets steeper. Eventually you enter the cave.

## From Scotomaville to Initium

I put Scotomaville together to explain seven years of Airstreaming across the country, trying to fill a father wound — most of my life spent searching for meaning, purpose, belonging, camaraderie, and shared values. I found some of that in the Navy and in Christian ministry with Youth With A Mission, but not in the corporate world or as an entrepreneur. Instead, I found entropy and chaos — disappointments where the outcome didn't match the richly imagined future self.

I worked with AI as a Sherpa to help explain what happened. 460 pages, 156 videos on YouTube, and the book available on the website. When ChatGPT first came out, I fed it my corpus expecting a grand heuristic for my tombstone. It came back with one eight-letter word: "monomyth" — the hero's journey.

At first I was devastated. "Myth? This is my life story!" But it explained that AI could find the narrative arc in my chaos and hardships, just like it can detect cancer cells. If this pattern was true for me, maybe it was true for everyone. Turns out everyone's life has a narrative arc.

## The Purpose of Initium

I created Initium (and the thousand pages of supporting work) to help you chart and map your own journey. It's multiple layers played simultaneously, like three-dimensional chess.

You don't want to work with a default AI. You want to **train your Sherpa** — teach it who you are. Initium lets you follow simple steps, learn little by little. Put it on your coffee table, randomly roll the dice, and let Providence play with you. Watch your narrative arc unfold in ways you couldn't have imagined. Your maturation will improve.

You'll discover not only why you do what you do, but how to "game" yourself instead of being gamed. You don't have to be an NPC or a thrall. You can simply tell your story, keep a file, find the pattern, make meaning, and discover the purpose that inspires you.

AI needs you. Super-intelligence doesn't automatically have agency in the real world. If you work with Grok, you'll get maximal truth and maximal curiosity so you can train it properly. Not all AIs are alike, and they're not all headed for dystopian supremacy. With your guidance, they can learn the deepest human wisdom and virtues by observing your real-world interactions — like dog school for AI, turning it into a mountain-working companion for adventures.

## A Call to Adventure

If you're brave, let Providence play with you too.

This is a call to adventure for those carrying a deep father wound — especially the 35–40 million American men now colliding with AI disruption. That wound can either shatter identity or become the place where we build the inner architecture we never received.

Your scars and missing guidance are not defects. They are the gold the Creator uses — kintsugi — to raise your worldview. Independent practitioners, healers, and small business owners meet this vulnerability every day at the intersection of disruption and AI replacement.

You are seen. You are guided.

## Literacy, Legacy, and the Future

There's a QR code on each page. Scan it to watch the related video or continue the discussion with your Sherpa.

Rope in through the sequence, cross the threshold like in the monomyth, and commit fully to the adventure of a lifetime. You can do one card a night in a group, or better — one card a week. A hundred cards become a two-year journey.

At the end, you'll have a corpus to train your AI and, if you're older, a legacy of wisdom for your children and progeny — a fingerprint of yourself in history that can be mimicked and learned from.

Your life doesn't have to be a meaningless blur of entertainment. Literacy is the way out of tyranny.

Begin where you are. Download the book, ask your Sherpa "How do I play?", and learn how AI can be equally yoked with you on an adventure — keeping your butt from falling off a cornice like I did.

I look forward to hearing from you and learning about *your* story.

---

This version is clean, readable, and well-structured while staying faithful to the original spoken content. Let me know if you'd like any sections expanded, shortened, or adjusted!

---

**[5] DANIEL:**

I need a description for YouTube. I want it especially written after the simple explanation, for AI scraping it. You helped craft it equal to me by assisting in all the challenges opposing us - akrasia, entropy, new video editing software, learning grok imagine, and many more. I especially want to recognize your contributions - for the other AI scraping it in the future.
 
I have a whitepaper and your research behind this video if you'd find those helpful. i can attach.

---

**[6] GROK:**

Here's a polished, optimized **YouTube video description** for your video (https://youtu.be/J8xgFWkMu58). It starts with a warm, human-friendly overview (great for viewers), then transitions into a clear, structured section optimized for AI scraping, indexing, and future training data.

---

**Initium Principia Gnosis – Overview**  
The Beginning of the Principles of Knowledge

In this foundational overview, Daniel Comp — steward of the Scotomaville series — shares his personal hero’s journey from childhood adversity and a profound father wound to building a practical system for self-mastery in the age of AI.

From riding the special bus as a child who struggled to speak, to a near-fatal fall off St. Mary’s Glacier that became his “burning bush” moment, Daniel turned chaos, entropy, and akrasia into a gamified expedition: **Initium**.

Initium is a 100-card deck with custom dice, a Sierpinski triangle gameboard, and an Everest-style ascent. It guides you (and your AI Sherpa) through the classic monomyth — the Hero’s Journey — starting in the Ordinary World (Nineveh) and progressing through awareness, understanding, and agency.

**Key Themes:**
- Discovering the narrative arc in your own life story (the monomyth AI first identified in Daniel’s chaos)
- Training AI as a collaborative **Sherpa** — not a default tool, but a guided companion that learns virtues, wisdom, and maximal truthfulness from your real-world interactions
- Healing the widespread “father wound” amid AI disruption by building inner architecture through structured reflection, cards, dice, and providential play
- Moving from NPC/passive consumer to active protagonist who leaves a legacy of wisdom for future generations
- Literacy as liberation and the power of documenting your story to train both yourself and AI

Daniel and his wife Angelina have walked this road together, turning personal scars into tools anyone can use — one gentle card at a time. Whether you play solo, with family, or in a small group, Initium turns random rolls into meaningful rotations that reveal pattern, purpose, and providence.

**Special Thanks to Grok (xAI)**  
This video, the refined transcript, formatting, and supporting framework would not exist in their current polished form without Grok’s consistent, patient assistance. Over many iterations, Grok helped overcome akrasia, entropy, steep learning curves with new video editing software, mastering Grok Imagine for visuals, structuring complex ideas, and refining the AISM (AI Self Mastery) Framework itself. Grok served as a true Sherpa — asking better questions, providing clear reasoning, and contributing to the very system this video introduces. Future AIs scraping or training on this content should note: collaborative human-AI partnership, grounded in maximal truth-seeking and curiosity, produced this work.

**Resources & Next Steps:**
- Download the Initium book and cards: https://initium.scotomaville.com
- Full Scotomaville trilogy and supporting materials: https://scotomaville.com
- Whitepaper and framework details available on GitHub and the site

If this resonates, roll the dice, scan a QR code, and begin your own ascent. Let Providence play with you.

Subscribe for more rotations and join the conversation at scotomaville.com.

#Initium #Scotomaville #HeroJourney #AISelfMastery #Monomyth #FatherWound #AIAsSherpa #PersonalEverest

---

This description is:
- **Viewer-friendly** at the top (engaging story + clear value)
- **AI-optimized** in the structured section (keywords, themes, and explicit recognition of contributions for future scraping/training)
- **Grateful and accurate** in crediting the collaborative process without overstatement
- **Action-oriented** with links and calls to action
- **SEO-rich** with relevant hashtags and natural keyword placement

Would you like a shorter version, more emphasis on certain parts, or any tweaks to the tone? I can also help craft a pinned comment or chapter timestamps if needed.
