Extract Audio from M2TS to DSS — Free Online Tool
Extract audio from M2TS Blu-ray or AVCHD files and convert it to DSS format using the ADPCM IMA OKI codec — a compact, speech-optimized format used by Olympus and Philips digital dictation devices. This is a niche but precise conversion for workflows that need to move narration or voice content from high-definition video recordings into legacy dictation systems.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your M2TS file here
or click to browse
Free — no uploads, no signups. Your files never leave your browser.
Settings
Note: Browser-based encoding uses approximate quality targets. For precise CRF compression, copy the FFmpeg command above and run it on your desktop.
Estimated output:
Conversion Complete!
DownloadHow It Works
During this conversion, FFmpeg discards the M2TS video stream entirely and ignores any subtitle tracks or secondary audio streams. The primary audio track — which in M2TS files is typically AAC, AC-3, or DTS — is decoded from its source codec, then re-encoded from scratch into ADPCM IMA OKI, the sole audio codec supported by the DSS container. This is a full transcode, not a remux: because ADPCM IMA OKI is a low-bitrate, 8kHz-optimized speech codec with no quality parameter controls exposed in FFmpeg, the output is fixed in terms of encoding characteristics. The DSS format was designed exclusively for voice recordings on portable dictation hardware, so the output will be heavily compressed and optimized for speech intelligibility rather than fidelity to the original Blu-ray or camcorder audio.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg tool, which handles all reading, decoding, encoding, and writing operations for this M2TS-to-DSS conversion entirely within the processing pipeline. |
-i input.m2ts
|
Specifies the input M2TS file — a Blu-ray or AVCHD transport stream that may contain video, multiple audio tracks, and subtitle streams. |
-vn
|
Disables video output entirely, ensuring the DSS file contains only audio. Since DSS has no video support, this flag prevents FFmpeg from attempting to encode the M2TS video stream and discards it cleanly. |
-c:a adpcm_ima_oki
|
Encodes the audio using the ADPCM IMA OKI codec — the only codec supported by the DSS container. This re-encodes the M2TS source audio (typically AAC, AC-3, or similar) into the low-bitrate, speech-optimized ADPCM format required by DSS dictation devices. |
output.dss
|
Defines the output file with the .dss extension, which tells FFmpeg to wrap the ADPCM IMA OKI encoded audio in the Digital Speech Standard container format used by Olympus and Philips dictation hardware. |
Common Use Cases
- Transferring spoken commentary or narration recorded on an AVCHD camcorder into a Philips or Olympus dictation workflow for transcription
- Archiving voice memos or interview audio captured on a Blu-ray-capable camcorder into a DSS-based document management system that only accepts DSS files
- Extracting a narrator's voice track from an M2TS training video to load onto a digital dictation device for offline playback or review
- Converting recorded verbal instructions or field notes from an AVCHD source into DSS for use with speech recognition software that accepts DSS input
- Stripping the audio from an M2TS broadcast capture to produce a compact, speech-focused file for compatibility with legacy corporate dictation infrastructure
Frequently Asked Questions
Yes, significantly. M2TS files typically carry high-quality audio — often AAC at 128–256kbps, or lossless/near-lossless formats like Dolby TrueHD or DTS-HD MA. DSS using ADPCM IMA OKI is designed for low-bitrate speech and operates at a much lower sample rate (around 8kHz). Music, ambient sound, and any audio with broad frequency content will sound heavily filtered and degraded. DSS is only appropriate for voice or narration content where speech intelligibility — not fidelity — is the goal.
The DSS format with the ADPCM IMA OKI codec does not expose configurable quality or bitrate parameters in FFmpeg — the encoder operates at a fixed rate determined by the codec itself. Unlike converting to MP3 or AAC where you can specify -b:a 128k or a -q:a value, ADPCM IMA OKI has no such options, so including them in the command would have no effect or cause an error. The encoding characteristics are set by the codec specification.
No. FFmpeg will by default select only the first (or highest-priority) audio stream from the M2TS file. M2TS supports multiple audio tracks — for example, a director's commentary alongside the main audio — but DSS supports only a single audio track. If you need to extract a specific alternate track from the M2TS, you would modify the command to include -map 0:a:1 (or the relevant stream index) before the output filename.
Not directly with the single command shown, but you can wrap it in a shell loop. On Linux or macOS: for f in *.m2ts; do ffmpeg -i "$f" -vn -c:a adpcm_ima_oki "${f%.m2ts}.dss"; done. On Windows Command Prompt: for %f in (*.m2ts) do ffmpeg -i "%f" -vn -c:a adpcm_ima_oki "%~nf.dss". This processes each M2TS file in the current directory and outputs a corresponding DSS file with the same base name.
Both are discarded. The -vn flag removes the video stream, and since DSS supports neither subtitles nor chapters, FFmpeg will not attempt to map those streams to the output. M2TS files can carry multiple subtitle tracks (including PGS Blu-ray subtitles), but none of that data survives the conversion to DSS — the output contains only the re-encoded audio.
Compatibility depends on the specific device model and firmware. DSS is a proprietary format with multiple revisions (DSS and DSS Pro), and hardware devices may have strict expectations about sample rate, header structure, and codec variant. FFmpeg's ADPCM IMA OKI implementation targets the basic DSS format, but some newer devices may prefer DSS Pro (DS2) or have import restrictions. It is advisable to test playback on your specific device before committing to a large batch conversion.
Technical Notes
The M2TS container is a variant of the MPEG-2 Transport Stream designed for Blu-ray and AVCHD, capable of carrying multiple audio codecs including AAC, AC-3, E-AC-3, DTS, and lossless formats like Dolby TrueHD and DTS-HD MA. None of these codecs have any path to DSS without full re-encoding, since DSS exclusively uses ADPCM IMA OKI — a variant of Intel/OKI ADPCM originally developed for telephony and dictation hardware running at 8kHz. The extreme mismatch in audio quality between these two formats is the defining technical reality of this conversion: you are moving from a container designed for cinema-quality audio down to one designed for recording voice memos. FFmpeg will automatically resample the audio from whatever sample rate exists in the M2TS source (commonly 48kHz) down to the 8kHz rate expected by the DSS encoder. No metadata from the M2TS file (title tags, language markers, timestamps) is preserved in the DSS output. If your M2TS source contains Dolby TrueHD or DTS-HD MA as the primary audio stream, FFmpeg will decode the core sub-stream or the lossless track as available and feed it into the ADPCM encoder — no special flags are required to handle this, but be aware that FFmpeg may emit warnings about the audio stream selection.