Convert SHN to AMR

Drag and drop files here or click to select.
Max file size 100mb.
Uploading progress:

SHN vs AMR Format Comparison

Aspect SHN (Source Format) AMR (Target Format)
Format Overview
SHN
Shorten Audio Format

Shorten is a lossless audio codec created by Tony Robinson in 1993 that became the standard for sharing live concert recordings online. Popular among Grateful Dead and Phish fans, SHN preserves full audio quality through predictive coding and Huffman compression, though it has been largely replaced by FLAC in modern archives.

Lossless Legacy
AMR
Adaptive Multi-Rate Audio Codec

AMR is a speech-optimized lossy audio codec developed by the European Telecommunications Standards Institute (ETSI) and adopted as the standard voice codec for GSM and 3G mobile networks. It achieves extreme compression through ACELP (Algebraic Code-Excited Linear Prediction) modeling, designed specifically for human voice frequencies at very low bitrates.

Lossy Legacy
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: 8 kHz (AMR-NB), 16 kHz (AMR-WB)
Bit Rates: 4.75–12.2 kbps (NB), 6.6–23.85 kbps (WB)
Channels: Mono only
Codec: ACELP (Algebraic Code-Excited Linear Prediction)
Container: Raw AMR (.amr), 3GP (.3gp)
Audio Encoding

Shorten uses linear prediction to model audio and Huffman coding for residuals, achieving lossless 2:1 compression:

# Decode SHN to WAV
ffmpeg -i concert.shn concert.wav

# Direct SHN to AMR conversion
ffmpeg -i concert.shn -ar 8000 -ac 1 \
  -codec:a libopencore_amrnb output.amr

AMR models speech using ACELP, transmitting filter coefficients and excitation parameters rather than audio samples:

# Encode to AMR-NB at 12.2 kbps
ffmpeg -i input.wav -ar 8000 -ac 1 \
  -codec:a libopencore_amrnb \
  -b:a 12200 output.amr

# AMR-WB for wideband voice
ffmpeg -i input.wav -ar 16000 -ac 1 \
  -codec:a libvo_amrwbenc output.amr
Audio Features
  • Metadata: No native tag support
  • Album Art: Not supported
  • Gapless Playback: Inherent continuous stream
  • Streaming: Not designed for streaming
  • Quality: Full-fidelity lossless audio
  • Channels: Mono and stereo
  • Metadata: Minimal — via 3GP container
  • Album Art: Not supported
  • Adaptive Rate: Automatically adjusts bitrate to network conditions
  • Streaming: Designed for real-time voice streaming
  • Quality: Optimized for speech intelligibility
  • Channels: Mono only
Advantages
  • Perfect lossless audio reproduction
  • Historical standard for concert recording archives
  • Full-bandwidth stereo audio capture
  • Trusted provenance in tape-trading communities
  • No generation loss from copying
  • Extremely small file sizes (under 1 MB per minute)
  • Standard voice codec for mobile phone networks
  • Playable on virtually every mobile phone worldwide
  • Adaptive bitrate for varying network conditions
  • Excellent speech intelligibility at very low bitrates
  • MMS and voice message standard format
Disadvantages
  • Obsolete format with limited modern support
  • No metadata or tagging capability
  • Large files compared to other lossless codecs
  • Not playable on mobile devices
  • No active development
  • Extremely poor music quality — designed for speech only
  • Mono only, no stereo support
  • Maximum 8 kHz sample rate (telephone quality)
  • Severe loss of musical detail and frequency range
  • Not suitable for any music listening purpose
Common Uses
  • Live concert recording archives
  • Tape-trading community distributions
  • Archival sources on archive.org
  • Legacy audiophile collections
  • Transcoding source for modern formats
  • Mobile phone voice calls (GSM, 3G)
  • MMS voice messages
  • Voice memo recordings on feature phones
  • Low-bandwidth voice transmission
  • Voicemail system storage
Best For
  • Archiving live concert recordings losslessly
  • Maintaining legacy archive compatibility
  • Source material for format conversion
  • Preserving historical recording provenance
  • Extracting spoken announcements from concert recordings
  • Creating ultra-compact voice clips for messaging
  • Sharing brief audio clips on low-bandwidth connections
  • Voice-only excerpts where music quality is not needed
Version History
Introduced: 1993 (Tony Robinson, SoftSound)
Current Version: Shorten 3.x
Status: Legacy, no active development
Evolution: Shorten (1993) → superseded by FLAC (2001)
Introduced: 1999 (ETSI/3GPP)
Current Version: AMR-NB, AMR-WB (G.722.2)
Status: Mature, still used in telephony
Evolution: AMR-NB (1999) → AMR-WB (2001) → EVS (2014, successor)
Software Support
Media Players: foobar2000, VLC, Winamp (plugin)
Decoders: FFmpeg, shorten CLI
Mobile: Not natively supported
Web Browsers: Not supported
Archives: etree.org, archive.org
Media Players: VLC, QuickTime, Windows Media Player
Mobile: All GSM/3G phones (native)
Web Browsers: Limited support
Telephony: All GSM and 3G network infrastructure
Messaging: MMS clients on all mobile platforms

Why Convert SHN to AMR?

Converting SHN to AMR is a specialized operation primarily useful for extracting spoken content — such as stage banter, between-song announcements, or audience interactions — from concert recordings into an ultra-compact voice format. AMR is not suitable for music due to its narrow bandwidth and speech-optimized encoding, but it excels at preserving voice intelligibility in extremely small files, making it ideal for sharing spoken excerpts via MMS or embedding in messaging applications.

The Shorten format preserves complete concert audio including both music and spoken word segments. When a collector wants to share a particularly memorable piece of stage banter — Jerry Garcia's between-song stories, Trey Anastasio's setlist announcements, or crowd interactions — AMR provides the most compact representation of that voice content. A five-minute spoken segment that occupies 50 MB in SHN compresses to under 500 KB in AMR, small enough for any messaging platform.

AMR's adaptive bitrate feature makes it particularly resilient on mobile networks. The codec automatically adjusts its compression level based on available bandwidth, ensuring that voice content remains intelligible even under poor network conditions. This makes AMR-encoded concert banter clips reliable for sharing with fellow fans via SMS/MMS, where file size limits and network variability are constant concerns.

It is crucial to understand that AMR encoding from music-rich SHN sources will severely degrade musical content. The codec operates at 8 kHz sample rate (telephone quality) and is mono-only, discarding all frequencies above 3.4 kHz and eliminating stereo imaging entirely. For music content from SHN files, use AAC, MP3, FLAC, or any full-bandwidth audio codec instead. Reserve AMR conversion exclusively for voice-only excerpts where speech clarity, not musical fidelity, is the priority.

Key Benefits of Converting SHN to AMR:

  • Extreme Compression: Under 1 MB per minute of spoken content
  • Universal Mobile: Playable on virtually every mobile phone ever made
  • MMS Compatible: Fits within MMS size limits for voice message sharing
  • Speech Optimized: Preserves voice clarity and intelligibility
  • Adaptive Rate: Adjusts quality to network conditions automatically
  • Low Bandwidth: Ideal for sharing on slow or metered connections
  • Voicemail Format: Standard format for voice messaging systems

Practical Examples

Example 1: Stage Banter Collection

Scenario: A Grateful Dead historian wants to create a collection of Jerry Garcia's stage banter clips from SHN concert recordings to share with fans via a mobile messaging group.

Source: gd1971-08-06_banter.shn (3 min excerpt, 32 MB)
Conversion: SHN → AMR (12.2 kbps)
Result: gd1971-08-06_banter.amr (270 KB)

Use case:
1. Extract banter segment from full SHN recording
2. Convert voice-only excerpt to AMR
3. Share via group MMS (under 300 KB limit)
4. All phones in the group can play AMR natively
5. 99.2% file size reduction from SHN original

Example 2: Concert Introduction Clips

Scenario: A music blogger extracts MC introductions and crowd announcements from vintage SHN concert tapes for a historical podcast database, needing compact files for mobile delivery.

Source: 50 concert intro clips from SHN archives (total 2 GB)
Conversion: SHN → AMR (12.2 kbps, narrowband)
Result: 50 voice clips in AMR (total 18 MB)

Database benefits:
✓ Entire clip library fits on any device
✓ Quick preview playback on mobile phones
✓ Voice content perfectly intelligible at low bitrate
✓ Suitable for embedding in mobile web pages
✓ Bandwidth-friendly for international listeners

Example 3: Voice Memo Extraction

Scenario: A researcher studying audience reactions at concerts needs to extract crowd call-and-response segments from SHN recordings and convert them to a compact format for field analysis on a basic tablet.

Source: crowd_segment.shn (5 min, 54 MB)
Conversion: SHN → AMR-WB (23.85 kbps)
Result: crowd_segment.amr (870 KB)

Research workflow:
✓ Wideband AMR preserves vocal frequency range
✓ Small files easy to catalog and annotate
✓ Playable on basic Android tablets for field work
✓ Sufficient quality for speech pattern analysis
✓ Batch process hundreds of excerpts efficiently

Frequently Asked Questions (FAQ)

Q: Can I use AMR for music from SHN concert recordings?

A: No — AMR is a speech-only codec operating at 8 kHz (or 16 kHz for wideband). It discards all frequencies above 3.4 kHz, which eliminates the vast majority of musical content. Concert music converted to AMR sounds heavily muffled and distorted. Use AAC, MP3, OGG, or FLAC for music content. AMR is only appropriate for voice-only excerpts like stage banter or spoken announcements.

Q: What is the difference between AMR-NB and AMR-WB?

A: AMR-NB (Narrowband) operates at 8 kHz sample rate with bitrates from 4.75 to 12.2 kbps — this is standard telephone quality. AMR-WB (Wideband) operates at 16 kHz with bitrates up to 23.85 kbps, providing noticeably clearer voice reproduction. For concert banter clips, AMR-WB is recommended if your target devices support it, as the wider bandwidth captures more vocal detail.

Q: Why would anyone convert lossless concert audio to telephone quality?

A: The use case is strictly for voice excerpts, not music. Concert recordings contain spoken segments (banter, introductions, audience chants) that fans may want to share quickly via messaging. AMR makes these clips tiny enough for MMS, email, or low-bandwidth sharing. The full concert in SHN remains the archival master while AMR clips serve as lightweight, shareable voice snippets.

Q: How small are AMR files compared to SHN?

A: Dramatically smaller. At 12.2 kbps, AMR produces roughly 90 KB per minute of audio. The same minute in SHN at CD quality is approximately 10–12 MB. That represents a compression ratio of over 100:1. A five-minute banter clip goes from 50+ MB to under 500 KB — small enough to send in a text message on any mobile network.

Q: Will the conversion lose the stereo image from the original SHN?

A: Yes, completely. AMR is a mono-only codec. The stereo field of the original concert recording — audience on left and right, instrument panning — is collapsed to a single channel during conversion. This is another reason AMR is unsuitable for music and should only be used for voice content where spatial information is not meaningful.

Q: What devices can play AMR files?

A: Virtually every mobile phone supports AMR playback, including basic feature phones, since AMR is the standard voice codec for GSM networks. Android and iOS play AMR natively. On desktop, VLC and QuickTime handle AMR. Windows Media Player may require codec installation. AMR has the widest mobile device compatibility of any audio format.

Q: Is there a better format for voice excerpts from concert recordings?

A: For slightly better voice quality with still-compact files, consider Opus at 16–24 kbps or Speex (SPX). Both handle voice significantly better than AMR while remaining compact. However, AMR has unmatched mobile phone compatibility, especially on older feature phones. If your audience uses modern smartphones, Opus in an OGG container provides superior quality at similar file sizes.

Q: Can I batch convert multiple SHN banter clips to AMR?

A: Yes, batch conversion is straightforward with FFmpeg command-line tools. The SHN-to-AMR conversion is extremely fast since AMR encoding is computationally simple. Hundreds of short clips can be processed in minutes. The main work is in identifying and extracting the spoken segments from full concert SHN files before conversion.