Convert M2TS to DSS — Free Online Tool

Convert M2TS Blu-ray and AVCHD video files to DSS (Digital Speech Standard) audio format, extracting and transcoding the audio stream using the ADPCM IMA OKI codec optimized for speech dictation. This niche conversion strips the high-definition video container down to a compact, speech-focused audio file 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

M2TS files typically contain high-definition video (H.264 or H.265), multichannel audio (often AC-3, DTS, or AAC), and sometimes subtitle tracks packaged in an MPEG-2 Transport Stream container. During this conversion, FFmpeg discards all video streams entirely and ignores any subtitle or chapter data, then takes the first audio stream and re-encodes it using the ADPCM IMA OKI codec — a low-bitrate adaptive delta pulse-code modulation algorithm originally designed for speech intelligibility on Olympus digital voice recorders. The resulting DSS file is dramatically smaller than the source M2TS, but retains only a narrow-band, mono audio signal tuned for voice clarity rather than music or full-range sound reproduction.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg binary — the open-source multimedia processing engine running here via WebAssembly in your browser, or locally on your desktop if you run the command yourself.
-i input.m2ts Specifies the input file: an M2TS Blu-ray or AVCHD container that may contain HD video, multichannel audio, and subtitle streams in an MPEG-2 Transport Stream wrapper.
-c:a adpcm_ima_oki Sets the audio codec to ADPCM IMA OKI, the specific low-bitrate adaptive delta encoding algorithm required by the DSS Digital Speech Standard format developed for Olympus, Philips, and Grundig dictation devices. No other codec is valid for DSS output.
output.dss Defines the output filename and container. The .dss extension signals FFmpeg to write a Digital Speech Standard file — a proprietary audio-only container — and implicitly causes all video, subtitle, and chapter streams from the M2TS source to be dropped since DSS supports only a single audio track.

Common Use Cases

  • Extracting spoken commentary or narration recorded via an AVCHD camcorder on a Blu-ray disc for import into Olympus or Philips dictation transcription software
  • Converting recorded conference presentations or lectures captured on Blu-ray-compatible cameras into DSS files for archiving in digital dictation management systems
  • Pulling the audio track from an M2TS interview recording to create a DSS file that legal or medical transcriptionists can play back in dedicated dictation foot-pedal software
  • Repurposing voice-over audio from an AVCHD camcorder recording into a format compatible with legacy Grundig Digta dictation hardware and workflows
  • Archiving spoken-word audio from Blu-ray video productions into a compact DSS format for long-term storage in dictation-oriented document management systems

Frequently Asked Questions

No — DSS with the ADPCM IMA OKI codec is specifically engineered for speech intelligibility, not music or cinematic audio. It operates at a very low bitrate with a narrow frequency response, so music, sound effects, and multichannel surround audio from a Blu-ray M2TS source will sound thin, muffled, and heavily degraded. This conversion is only practical when the audio content is spoken voice, such as narration, commentary, or dialogue.
By default, FFmpeg selects the first audio stream detected in the M2TS container, which is typically the primary language track. M2TS files from Blu-ray discs often contain multiple audio streams — for example, a DTS-HD Master Audio track alongside a Dolby Digital compatibility track. If you need a specific track, you can modify the FFmpeg command by adding '-map 0:a:1' (for the second audio stream, zero-indexed) before the output filename to target your desired track explicitly.
The size reduction is dramatic. An M2TS file can easily be several gigabytes due to high-definition video and lossless or high-bitrate audio. A DSS file encoded with ADPCM IMA OKI operates at a very low fixed bitrate — typically around 13 kbps — meaning an hour of audio in DSS format may occupy only a few megabytes. The vast majority of the M2TS file's size comes from the video stream, which is completely discarded during this conversion.
No — DSS with the ADPCM IMA OKI codec does not support variable bitrate or quality parameters in FFmpeg. The codec operates at a fixed rate determined by the DSS format specification, so flags like '-b:a' have no effect here. Unlike the M2TS input format which supports flexible audio quality settings, DSS output quality is fixed and not configurable.
No. DSS is a pure audio-only container with no support for subtitles, chapters, or video streams. All subtitle tracks, chapter markers, and video content present in the M2TS source are silently discarded during conversion. If preserving subtitles or chapter data is important, you should export those separately before running this conversion.
On Linux or macOS, you can run a shell loop: 'for f in *.m2ts; do ffmpeg -i "$f" -c:a adpcm_ima_oki "${f%.m2ts}.dss"; done'. On Windows Command Prompt, use: 'for %f in (*.m2ts) do ffmpeg -i "%f" -c:a adpcm_ima_oki "%~nf.dss"'. This is especially useful for files over 1GB that exceed the browser tool's limit, since you can run FFmpeg locally without file size restrictions.

Technical Notes

The ADPCM IMA OKI codec used in DSS files is a variant of Adaptive Differential Pulse-Code Modulation developed specifically for the Olympus dictation ecosystem. It encodes audio at a fixed low bitrate and is inherently mono, so any stereo or multichannel audio in the M2TS source — including 5.1 surround AC-3 or DTS tracks common on Blu-ray discs — will be downmixed to mono during encoding. The DSS container itself is a proprietary format with limited software support outside of dedicated dictation applications from Olympus, Philips, and Grundig; it is not playable in most general-purpose media players without special plugins. Metadata such as title tags, language identifiers, or creation timestamps from the M2TS BDAV structure will not be carried over into the DSS file. There is no lossless path available for DSS — all conversions to this format involve lossy compression. Because M2TS source audio is almost always encoded in a lossy format itself (AC-3, AAC, etc.), this conversion introduces a second generation of lossy encoding, which will further reduce audio fidelity, making source quality less critical but also meaning no amount of high-quality M2TS input will recover what DSS's narrow codec cannot reproduce.

Related Tools