Convert SHN to FLAC
Max file size 100mb.
SHN vs FLAC Format Comparison
| Aspect | SHN (Source Format) | FLAC (Target Format) |
|---|---|---|
| Format Overview |
SHN
Shorten Audio Format
Shorten is a lossless audio compression format created by Tony Robinson at SoftSound in 1993. It was one of the earliest practical lossless audio codecs and became the de facto standard for trading live concert recordings online during the late 1990s and early 2000s, particularly among fans of Grateful Dead, Phish, and other jam bands. Though largely superseded by FLAC, SHN files remain common in legacy music archives. Lossless Legacy |
FLAC
Free Lossless Audio Codec
FLAC is an open-source lossless audio codec developed by Josh Coalson and released in 2001. It compresses audio without any quality loss, typically achieving 50-60% reduction in file size compared to uncompressed WAV. FLAC has become the universal standard for lossless music distribution, supported by virtually every media player, streaming service, and hardware device on the market today. Lossless Modern |
| Technical Specifications |
Sample Rates: 8 kHz – 96 kHz
Bit Depth: 8, 16-bit integer Channels: Mono, Stereo Codec: Shorten (predictive coding + Huffman) Container: Raw Shorten stream (.shn) |
Sample Rates: 1 Hz – 655,350 Hz
Bit Depth: 4 to 32-bit integer Channels: 1 to 8 channels Codec: FLAC (linear prediction + Rice coding) Container: Native FLAC (.flac), Ogg (.oga), Matroska (.mka) |
| Audio Encoding |
Shorten uses linear prediction to model audio samples and encodes residuals with Huffman coding, achieving lossless compression ratios of roughly 2:1: # Decode SHN to WAV (intermediate) ffmpeg -i input.shn output.wav # Direct SHN to FLAC conversion ffmpeg -i input.shn -codec:a flac \ -compression_level 8 output.flac |
FLAC uses linear predictive coding with Rice entropy coding, offering compression levels 0-8 that trade encoding speed for file size: # Encode to FLAC level 8 (best compression) ffmpeg -i input.wav -codec:a flac \ -compression_level 8 output.flac # Verify FLAC integrity flac --test output.flac |
| Audio Features |
|
|
| Advantages |
|
|
| Disadvantages |
|
|
| Common Uses |
|
|
| Best For |
|
|
| Version History |
Introduced: 1993 (Tony Robinson, SoftSound)
Current Version: Shorten 3.x Status: Legacy, no active development Evolution: Shorten (1993) → largely replaced by FLAC (2001) |
Introduced: 2001 (Josh Coalson)
Current Version: FLAC 1.4.x (2022+) Status: Active, maintained by Xiph.Org Foundation Evolution: FLAC 1.0 (2001) → 1.3 (2013) → 1.4 (2022, SIMD optimizations) |
| Software Support |
Media Players: foobar2000, VLC, Winamp (plugin)
Decoders: FFmpeg, shorten CLI tool Mobile: Not natively supported Web Browsers: Not supported Archives: etree.org, archive.org, bt.etree.org |
Media Players: VLC, foobar2000, Winamp, MusicBee, Clementine
DAWs: Audacity, Adobe Audition, Reaper Mobile: Android (native), iOS (native since iOS 11) Web Browsers: Chrome, Firefox, Edge (partial support) Streaming: Tidal, Amazon Music HD, Deezer HiFi |
Why Convert SHN to FLAC?
Converting SHN to FLAC is the single most important upgrade you can make to a legacy concert recording collection. Both formats are lossless, meaning no audio quality is lost during conversion — every sample is preserved bit-perfectly. The difference lies entirely in the container and codec: FLAC offers superior compression, rich metadata support, embedded album art, built-in error detection, and universal playback compatibility that SHN simply cannot match. This is a pure upgrade with zero compromise.
The Shorten format was revolutionary when Tony Robinson created it in 1993, giving the concert trading community its first practical lossless codec during the dial-up era. For nearly a decade, SHN was how fans shared audience recordings of the Grateful Dead, Phish, Widespread Panic, and dozens of other bands via etree.org and similar networks. But FLAC arrived in 2001 and systematically replaced SHN in every use case, offering 10-20% better compression ratios while adding features SHN never had.
The most compelling reason to convert is metadata. SHN files carry no internal tags — show information, taper details, and setlists are stored in separate .txt or .nfo files that easily become separated from the audio. FLAC embeds all this data directly inside each file using Vorbis Comment tags. You can tag artist, album (venue and date), track titles (songs), comments (recording lineage, microphone info), and even embed concert poster artwork. Your entire collection becomes searchable and browsable in any media library.
From a practical standpoint, FLAC files are typically 10-20% smaller than their SHN equivalents for the same audio content. FLAC's advanced linear prediction models and Rice coding simply outperform Shorten's older Huffman-based approach. For a 100 GB SHN collection, you might save 10-20 GB by switching to FLAC — while simultaneously gaining compatibility with every modern player, phone, and streaming device. There is genuinely no reason to keep audio in SHN format once FLAC copies exist.
Key Benefits of Converting SHN to FLAC:
- Zero Quality Loss: Lossless-to-lossless conversion preserves every audio sample perfectly
- Better Compression: FLAC files are 10-20% smaller than SHN equivalents
- Full Metadata: Embed artist, album, track names, and recording lineage
- Album Artwork: Attach concert posters and show photos directly to files
- Universal Playback: FLAC works on every modern player, phone, and device
- Error Detection: Built-in MD5 fingerprint verifies audio integrity
- Community Standard: FLAC is the accepted format on archive.org, etree, and music trackers
Practical Examples
Example 1: Migrating a Concert Archive to Modern Standards
Scenario: A collector has 500 GB of Grateful Dead SHN recordings from etree.org spanning 1965-1995 and wants to modernize the entire archive with proper tagging and better compression.
Source: gd1972-08-27.shn (full show, 18 tracks, 1.8 GB) Conversion: SHN → FLAC (compression level 8) Result: gd1972-08-27.flac (18 tracks, 1.5 GB) Workflow: 1. Convert each SHN track to FLAC losslessly 2. Tag with Vorbis Comments: Grateful Dead, Veneta OR 8/27/72 3. Add recording lineage: AUD > DAT > SHN > FLAC 4. Embed Sunshine Daydream concert poster as album art 5. Verify with MD5 checksums — bit-perfect confirmed
Example 2: Uploading to Archive.org in Modern Format
Scenario: A taper has old audience recordings in SHN format and wants to upload them to archive.org's Live Music Archive, which now prefers FLAC submissions.
Source: wsp2001-10-31.shn (Halloween show, 22 tracks, 2.4 GB) Conversion: SHN → FLAC (lossless) Result: wsp2001-10-31.flac (22 tracks, 2.0 GB) Archive.org benefits: + FLAC is the preferred upload format for new submissions + Proper metadata tags indexed by archive.org search + 400 MB saved per show — significant for 100+ uploads + Archive.org auto-generates derivative formats from FLAC + Community can verify integrity via FLAC MD5 fingerprints
Example 3: Building a Tagged Music Library
Scenario: A Phish fan has 200 SHN shows with setlist information only in .txt sidecar files, and wants a properly organized, searchable music library in MusicBee.
Source: 200 Phish shows in SHN (total 350 GB) Conversion: SHN → FLAC with full tagging Result: 200 shows tagged and organized (290 GB) Library organization achieved: + Each track tagged: Artist/Album/Title/Date/Venue + Concert posters embedded as album artwork + Recording source noted in Comment field + MusicBee scans and indexes all metadata automatically + Browse by year, venue, song — impossible with SHN
Frequently Asked Questions (FAQ)
Q: Is SHN to FLAC conversion truly lossless?
A: Yes, absolutely. Both SHN and FLAC are lossless codecs, so the conversion produces bit-identical audio output. The audio samples in the resulting FLAC file are mathematically identical to those in the original SHN. You can verify this by decoding both to WAV and comparing checksums — they will match perfectly. This makes SHN-to-FLAC the ideal archival migration.
Q: Will my FLAC files be smaller than the SHN originals?
A: Yes, in virtually all cases. FLAC's more advanced compression algorithm (linear prediction with Rice coding) achieves better ratios than Shorten's Huffman-based approach. Expect FLAC files to be 10-20% smaller than their SHN equivalents. For a 500 GB SHN collection, you could save 50-100 GB — a significant gain with zero quality cost.
Q: Can I add metadata to the FLAC files after conversion?
A: Yes, and this is one of the biggest advantages of converting. FLAC supports Vorbis Comment tags for artist, album, title, date, genre, and custom fields. You can add recording lineage, taper information, microphone details, and setlist notes. Tools like MusicBrainz Picard, Mp3tag, or foobar2000 make batch tagging straightforward. You can also embed album art directly into each FLAC file.
Q: Should I delete my SHN files after converting to FLAC?
A: Since the conversion is lossless, the FLAC files contain identical audio data, making the SHN files technically redundant. However, some archivists prefer keeping original SHN files to preserve the exact distribution format and its historical provenance. If storage is a concern, it is safe to delete SHN originals after verifying FLAC integrity — the audio content is identical.
Q: What FLAC compression level should I use?
A: FLAC compression levels range from 0 (fastest, largest) to 8 (slowest, smallest). The difference between levels is only in encoding speed and file size — all levels produce identical audio quality. Level 5 is the default and offers a good balance. Level 8 saves an additional 1-3% file size at the cost of slower encoding. For archival, level 8 is recommended since you encode once and decode many times.
Q: Will gapless playback be preserved in FLAC?
A: Yes, and FLAC actually handles gapless playback better than SHN. FLAC is sample-accurate by design — there is no encoder padding or delay to compensate for. This means live concert recordings with seamless song transitions will play back perfectly without gaps. Every FLAC-capable player inherently supports gapless playback, making it ideal for continuous live sets.
Q: Can I verify that the conversion was perfect?
A: Yes. FLAC includes a built-in MD5 audio fingerprint that you can verify at any time using "flac --test". Additionally, you can decode both the original SHN and the new FLAC to WAV format and compare their MD5 checksums — they should be identical. FFmpeg can also perform this verification. This level of integrity checking is another advantage FLAC has over SHN.
Q: How long does SHN to FLAC conversion take?
A: SHN to FLAC conversion is extremely fast — typically 20 to 50 times faster than real-time at default compression level. A 70-minute concert converts in under 2 minutes on modern hardware. At compression level 8, it takes slightly longer but still completes in 3-5 minutes per show. Batch-converting hundreds of shows is practical as an overnight operation.