⏱️ Lectura: 10 min

For nine years, a private BitTorrent tracker called What.cd maintained a music database with better metadata curation than any commercial streaming catalog of the era. Its predecessor, Oink’s Pink Palace, was so meticulous that Trent Reznor, frontman of Nine Inch Nails, described it in an interview with Vulture as “the world’s greatest record store.”

📑 En este artículo
  1. TL;DR
  2. What happened
  3. Context and history
  4. Technical details: how private trackers work
  5. How to try the model today (without infringing copyright)
  6. Impact and analysis
  7. What’s next
  8. Frequently Asked Questions
    1. What was What.cd?
    2. Why did Oink’s Pink Palace shut down?
    3. What is the ratio on a BitTorrent tracker?
    4. Are there legal successors to What.cd?
    5. Is using BitTorrent illegal?
    6. What replaced the private music trackers?
  9. References

The story is told by Rob Sheridan, the band’s former creative director, in an interview published by Pigeons & Planes. Behind the anecdote sits a system design (upload and download ratios, chained invitations, community metadata verification) that explains why these private BitTorrent trackers came to surpass in quality any legal digital store of their time.

TL;DR

  • Oink’s Pink Palace launched in 2004, created by a 21-year-old computer science student in England.
  • Oink shut down in 2007 after an international legal operation against its administrators.
  • What.cd, the direct successor to Oink, ran from 2007 to 2016 before being shut down by the French courts.
  • Rob Sheridan, former creative director of Nine Inch Nails, discovered Oink and then invited Trent Reznor.
  • Trent Reznor called Oink ‘the world’s greatest record store’ in an interview with Vulture.
  • Both trackers required a minimum upload/download ratio (commonly 1:1) to keep access.
  • Registration was invitation-only, which produced stricter metadata curation than any legal catalog of the era.
  • What.cd’s spiritual successors, Redacted (RED) and Orpheus (OPS), still operate under the same ratio and invitation model.

What happened

Rob Sheridan started building web pages as a hobby in high school. In 1997 he discovered that someone had recorded the Nine Inch Nails single “The Perfect Drug” off the radio and uploaded it in RealAudio format, one of the first formats that made downloading music over the internet viable. A year later, at the Pratt Institute in New York, he began sharing files with other students connected to the dorm network, long before Napster as we know it existed.

That early access to music he could never have afforded (each album cost 18 dollars) turned him, in his own words, into a fan of far more music than he would have discovered any other way. In 1999, a Nine Inch Nails fan site Sheridan had built caught the band’s attention, and they hired him to design their official site. He ended up moving to the band’s studio in New Orleans and, over time, became its creative director.

BitTorrent client interface showing upload and download ratio statistics
The upload and download ratio was the currency of access on private trackers like What.cd. Foto de Zulfugar Karimov en Unsplash

Context and history

Oink’s Pink Palace was born in 2004 as a direct response to the lawsuits that were dismantling public file-sharing services like Napster and The Pirate Bay. Its creator, a 21-year-old English student, bet on a different model: closed access, invitation-only, with strict participation rules.

That entry friction was the key to the result. Sheridan describes it as opening a secret door to a world that most users of public services like LimeWire never got to see: while LimeWire was, in his words, like a ransacked dollar store with everything thrown on the floor, Oink operated with the care of an archive curated by expert collectors.

When Oink shut down in 2007 after a legal operation, much of its community migrated to an almost immediate successor: What.cd. The new tracker inherited the ratio and invitation model, refined it with better audio-quality verification tools, and stayed active for nearly a decade until it was shut down in 2016 by the French authorities.

Technical details: how private trackers work

To understand why these trackers produced better curation than a commercial catalog, you have to look at the protocol underneath. BitTorrent splits a file into pieces and coordinates the download among multiple peers instead of relying on a single central server. A tracker is the server that keeps track of which peers have which pieces available.

# Estructura minima de un pedido "announce" que un cliente BitTorrent
# envia al tracker para anunciarse en un swarm
curl "http://tracker.ejemplo.org:6969/announce?info_hash=%89%d4%3e%c4...&peer_id=-qB4520-000000000001&port=51413&uploaded=0&downloaded=0&left=734003200&event=started"

That call tells the tracker: “I want this file, I haven’t uploaded or downloaded anything yet, and I have 734,003,200 bytes left to download.” The tracker responds with the list of active peers for that info_hash. The full specification lives on the official BitTorrent protocol site.

What made Oink and What.cd special was not the protocol (that one is public and standard) but the rules they imposed on top of it. Each account carried a ratio between bytes uploaded and bytes downloaded: the ratio. Downloading without uploading back lowered the ratio; if it dropped below a minimum (typically 1:1 or similar), the site restricted or suspended the account.

class MiembroTracker:
    def __init__(self, nombre):
        self.nombre = nombre
        self.subido_bytes = 0
        self.bajado_bytes = 0

    @property
    def ratio(self):
        if self.bajado_bytes == 0:
            return float("inf")
        return self.subido_bytes / self.bajado_bytes

    def puede_descargar(self, ratio_minimo=1.0):
        return self.bajado_bytes == 0 or self.ratio >= ratio_minimo


miembro = MiembroTracker("usuario_demo")
miembro.subido_bytes = 50 * 1024 ** 3
miembro.bajado_bytes = 40 * 1024 ** 3
print(f"Ratio actual: {miembro.ratio:.2f}")
print(f"Puede seguir descargando: {miembro.puede_descargar()}")

This snippet reproduces, in a simplified way, the ratio enforcement logic that trackers like What.cd ran on every account. The same pattern (measure contribution, condition access on that contribution) is what private forums, legal seedboxes, and even reputation systems on open-source platforms use today.

Invitation-only registration added another layer: each new user entered vouched for by an existing member, and the staff used IRC bots to coordinate moderation and upload verification in real time. Before accepting an album, volunteers reviewed the audio spectrograms to confirm that a file marked as lossless (FLAC) really was lossless, and not a repackaged MP3 version.

Audio spectrogram used to verify the quality of flac files
What.cd volunteers reviewed spectrograms to catch fake FLAC files. Foto de Dayne Topkin en Unsplash

📌 Note: the technical term for this practice is “transcode detection”: confirming, from the frequency spectrum, that an audio file was not recompressed from a lossy format into a lossless one.

This is the typical sequence between a client and a private tracker:

sequenceDiagram
    participant U as Usuario invitado
    participant T as Tracker privado
    participant P as Otros peers
    U->>T: registro con invitacion
    T-->>U: cuenta creada, ratio 0
    U->>T: announce (descarga)
    T-->>U: lista de peers del swarm
    U->>P: intercambio de piezas
    Note over U,T: el tracker recalcula el ratio en cada announce
    T-->>U: advertencia si ratio cae bajo el minimo
Platform Access model Advantage Limitation
Oink (2004-2007) Invitation + ratio Catalog curated by expert volunteers Shut down by international legal action
What.cd (2007-2016) Invitation + ratio + audio verification Metadata and file quality superior to legal stores Shut down by the French courts in 2016
Current commercial streaming Open subscription Legal, instantly accessible, no entry friction Algorithmic curation, not always editorial or expert

The BitTorrent protocol remains perfectly legal: what determines legality is the content being shared, not the technology. To experiment with clients and trackers risk-free, there are legitimate alternatives.

  • Client: install qBittorrent (Windows, macOS, and Linux) from its official site.
  • Legal content: Linux distributions (Ubuntu, Arch) publish official torrents of their ISOs.
  • Research datasets: Academic Torrents distributes machine learning datasets and papers using exactly the same swarm model as Oink and What.cd, but with freely distributable content.
# macOS (Homebrew)
brew install qbittorrent-nox

# Debian/Ubuntu
sudo apt install qbittorrent-nox

# Windows (winget)
winget install qBittorrent.qBittorrent

With the client installed, any .torrent file from a Linux distribution lets you watch the ratio figures rise and fall live, exactly the mechanism that governed access on Oink and What.cd.

💡 Tip: Academic Torrents is the closest and fully legal successor to What.cd’s curation culture, but applied to papers and datasets instead of music.

Impact and analysis

Sheridan’s comparison between Oink and Spotify is not merely nostalgic. A tracker sustained by nonprofit volunteers achieved levels of curation (correct editions, complete metadata, audio-quality verification) that no record store or streaming service replicated with the same detail. The structural reason is the incentive: on a private tracker, reputation and access depended directly on the quality of what each user contributed.

That does not make it a viable business model. Oink and What.cd were never legal and both ended up shut down by court action, with real consequences for their administrators. The cost of building that curation was transferring the legal risk to thousands of volunteer users, something no formal company can replicate.

Streaming solved the access problem (the whole catalog, instantly, legally) but did not inherit the problem the private trackers did solve well: rigorous editorial curation. Algorithmic recommendation systems optimize for retention and consumption, not necessarily for catalog quality or metadata accuracy. That same problem, curation versus scale, reappears today in the training of AI models: the manual cleaning and verification of a dataset remains more decisive for a model’s final quality than raw data volume, something every machine learning team ends up rediscovering sooner or later.

What’s next

After What.cd shut down in 2016, part of its community and staff relaunched the same model under new names: Redacted (RED) and Orpheus (OPS), both invitation-only private trackers that still operate with ratio rules almost identical to their predecessor’s. The demand for that kind of curation did not disappear, it just went more underground.

On the legal side, the “access conditioned on contribution” pattern these trackers popularized lives on in other contexts: private seedboxes for distributed backups, reputation systems on technical forums, and even karma mechanisms in open-source communities all rely on the same idea that active participation earns privileges.

📖 Summary on Telegram: View summary

Try it yourself: install qBittorrent and download the official torrent of the latest Ubuntu ISO to watch in real time how a tracker calculates your upload and download ratio.

Frequently Asked Questions

What was What.cd?

A private BitTorrent tracker specialized in music, active between 2007 and 2016, known for the quality and precision of its catalog and metadata.

Why did Oink’s Pink Palace shut down?

It shut down in 2007 after an international legal operation against its administrators, in the same context of court actions that hit Napster and The Pirate Bay.

What is the ratio on a BitTorrent tracker?

The relationship between the bytes a user uploads and the bytes they download. Private trackers required keeping that ratio above a minimum to retain access.

There is no direct legal successor for music, but Academic Torrents applies the same curation and distribution model to research datasets and papers.

Is using BitTorrent illegal?

No. The protocol is legal and is used to distribute software, datasets, and freely licensed content. Legality depends solely on the content shared, not the technology.

What replaced the private music trackers?

Mainly commercial streaming (Spotify, Apple Music), which solved legal, instant access but with different editorial curation, based on algorithms instead of expert volunteers.

References

📱 Enjoying this content? Follow @programacion on Telegram for daily tech content in Spanish: quick summaries, fresh content every day. @programacion

Imagen destacada: Foto de leannk. en Unsplash

Categories: Noticias Tech

Andrés Morales

Developer and AI researcher. Writes about language models, frameworks, developer tooling, and open source releases. Covers ML papers, the tech startup ecosystem, and programming trends.

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.