The Convergence Protocol - Audio Guides

This directory contains the auditory assets and a specialized web player for “The Convergence Protocol” series. These “Auditory Guides” are designed to be listened to while navigating the project’s broader ecosystem.

Directory Overview

The directory serves as a self-contained audio library. It consists of high-quality audio files (.m4a) and a custom-built HTML5 audio player that categorizes content by themes such as Cognitive Bias, Systems Thinking, and Chinese Parables.

Key Components

  • index.html: A standalone web player featuring:
    • A custom audio visualizer using the Web Audio API.
    • A searchable tracklist.
    • Metadata mapping (titles and themes) for all audio files.
    • A placeholder system for transcripts.
  • Audio Assets (.m4a): The core content, consisting of 19 distinct guides. Filenames typically match the guide titles (e.g., Anchoring Bias Chestnut Trap.m4a).

Themes & Categories

The content is organized into several recurring themes:

  • Cognitive Bias: Exploring psychological pitfalls like anchoring and misinterpretation.
  • Systems & Futures: Discussing complexity, the singularity, and systemic failure.
  • Chinese Parables: Classical stories used as metaphors for modern concepts.
  • Knowledge & Information: Examining how we process and trust data.
  • History: Historical case studies like the Qin Dynasty.

Usage & Maintenance

Adding New Guides

To add a new audio guide to the library:

  1. Upload the .m4a file to this directory.
  2. Update the podcasts constant in the <script> section of index.html:
    { 
      id: [Next ID], 
      title: "Title of the Guide", 
      file: "Exact_Filename.m4a", 
      theme: "Theme Category" 
    }
  3. Update the playlist-count and total guide count in the HTML/JS if necessary.

Pathing Note

The index.html currently uses a relative path ../assets/podcasts/ for audio sources. If the player is accessed directly from this directory, this pathing may need adjustment depending on the hosting environment.