Extract Audio from MPG to DSS — Free Online Tool

Extract audio from MPG video files and convert it to DSS (Digital Speech Standard) format, encoding the audio stream using the ADPCM IMA OKI codec optimized for speech dictation devices. This tool is ideal for repurposing broadcast or DVD-sourced speech recordings into a format compatible with Olympus, Philips, and Grundig digital dictation workflows.

FFmpeg Command

Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg

Free — no uploads, no signups. Your files never leave your browser.

Estimated output:

Conversion Complete!

Download

How It Works

During this conversion, FFmpeg discards the MPG video stream entirely and targets only the audio track, which in MPG files is typically encoded as MPEG Layer 2 (MP2) audio. That audio is decoded and then re-encoded using the ADPCM IMA OKI codec, which is the proprietary compression algorithm used by the Digital Speech Standard format. DSS is a narrowband, speech-optimized format designed for low-bitrate dictation recording, so the output will have a significantly reduced audio bandwidth compared to the original MP2 stream — it is tuned for voice intelligibility rather than full-frequency audio reproduction. The video container and all video data are completely stripped from the output.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg multimedia processing tool, which handles all demuxing, decoding, encoding, and muxing steps for this MPG-to-DSS conversion entirely within your browser via WebAssembly.
-i input.mpg Specifies the input MPG file. FFmpeg reads the MPEG-1/2 container, identifying the video stream (mpeg1video or mpeg2video) and the audio stream (typically MP2) for processing.
-vn Disables video output entirely, instructing FFmpeg to skip all video streams from the MPG file. Since DSS is a dictation audio format with no video capability, this flag ensures only the audio track is processed.
-c:a adpcm_ima_oki Selects the ADPCM IMA OKI encoder for the audio output stream, which is the codec used by the Digital Speech Standard format. This encodes the decoded MP2 audio from the MPG file into the narrowband, speech-optimized compression scheme required by DSS dictation devices.
output.dss Defines the output filename and triggers FFmpeg to use the DSS muxer based on the .dss file extension, producing a file compatible with Olympus, Philips, and Grundig digital dictation hardware and transcription software.

Common Use Cases

  • Extracting speech or interview audio from MPG broadcast recordings for archiving into a digital dictation system compatible with Olympus or Philips transcription software
  • Converting MPG recordings of lectures or spoken-word content captured from VCD or DVD sources into DSS files for playback on dedicated dictation hardware
  • Preparing audio from MPG news broadcast clips for ingestion into a legal or medical transcription workflow that requires DSS format input
  • Stripping the audio track from an MPEG-2 encoded surveillance or conference recording to create compact DSS voice files for review
  • Migrating older MPG-format dictation or meeting recordings into DSS so they can be managed within enterprise transcription platforms that mandate the Digital Speech Standard
  • Producing a lightweight, speech-focused DSS file from an MPG video interview for distribution to transcriptionists working with dedicated DSS playback foot pedals

Frequently Asked Questions

No — DSS is a narrowband format designed exclusively for speech intelligibility at very low bitrates, and the ADPCM IMA OKI codec it uses captures a much narrower frequency range than the MP2 audio typically found in MPG files. Music, sound effects, or any wide-frequency audio content will sound noticeably degraded or muffled in the DSS output. For spoken voice content, intelligibility is generally maintained, but you should expect a clear reduction in audio fidelity compared to the original.
The DSS format using the ADPCM IMA OKI codec does not expose configurable bitrate or quality parameters through FFmpeg — the codec operates at a fixed rate determined by the format specification. This is by design, as DSS was engineered as a standardized dictation format with a fixed encoding profile. If you need higher audio quality, DSS is not the appropriate output format for that use case.
The video stream is completely discarded. The -vn flag in the FFmpeg command explicitly tells FFmpeg to ignore all video data, so neither the MPEG-1 nor MPEG-2 video codec content from the MPG file is processed or included in the output. The resulting DSS file is audio-only, which is consistent with the DSS format specification — DSS does not support video.
Yes. MPG files from VCD sources typically contain MPEG-1 video with MP2 audio, while DVD-sourced MPG files often use MPEG-2 video with MP2 or occasionally AC-3 audio. FFmpeg can decode MP2 audio natively and will re-encode it into the ADPCM IMA OKI codec for DSS output regardless of whether the source is VCD or DVD. If the source audio is AC-3, FFmpeg will still handle the decode transparently before encoding to DSS.
You can adapt the command for batch processing using a shell loop. On Linux or macOS, run: for f in *.mpg; do ffmpeg -i "$f" -vn -c:a adpcm_ima_oki "${f%.mpg}.dss"; done. On Windows Command Prompt, use: for %f in (*.mpg) do ffmpeg -i "%f" -vn -c:a adpcm_ima_oki "%~nf.dss". This will process every MPG file in the current directory and produce a corresponding DSS file with the same base filename.
DSS is a proprietary format with a very limited and specialized metadata structure tied to dictation device workflows, and FFmpeg's DSS muxer does not map standard container metadata from MPG into the DSS output. You should not expect title, artist, date, or other tags from the MPG file to be present in the resulting DSS file. If metadata preservation is critical for your workflow, check the requirements of your target dictation platform separately.

Technical Notes

MPG files store audio using MPEG Layer 2 (MP2) as the default codec, typically at 192 kbps or higher, with a full 20 Hz–20 kHz frequency response. DSS, by contrast, uses the ADPCM IMA OKI codec — a variant of Adaptive Differential Pulse Code Modulation developed for Olympus dictation hardware — which operates at a low sample rate (typically 8000 Hz) and targets only the speech frequency range (roughly 300 Hz–3400 Hz). This means the conversion is inherently lossy in both directions: the original MP2 audio is decoded (lossy decode) and then re-encoded into a codec with far less bandwidth capacity. The resulting DSS file will be substantially smaller than the original MPG file, but audio content that relies on frequencies outside the speech band — music, ambient sound, high-frequency consonants — will be significantly attenuated or lost. FFmpeg's support for writing DSS files with the ADPCM IMA OKI codec is functional but reflects the limited configurability of the format; there are no quality tuning knobs available. This tool is appropriate only when the source MPG contains spoken-word content destined for a dictation or transcription device ecosystem, not for general-purpose audio archiving.

Related Tools