Initializing... drag & drop files here
Supports: MP4, M4V
M4V is Apple's video container, structurally a near-identical sibling of MP4 (both are MPEG-4 Part 14). The format typically carries H.264 video and an AAC audio track — AAC is lossy compressed audio that's already much smaller than the original PCM. Converting to WAV doesn't recover lost detail (no decoder can), but it gives you uncompressed PCM that every DAW, transcription tool, and audio-analysis pipeline can ingest cleanly. Common reasons to extract WAV from M4V:
| Property | M4V (source) | WAV (output) |
|---|---|---|
| Container | MPEG-4 (.m4v) | RIFF (.wav) |
| Typical contents | H.264 video + AAC audio | PCM audio only (no video) |
| Compression | Lossy video and lossy audio | Uncompressed PCM (lossless) |
| Typical 44.1k stereo bitrate | 128-256 kbps audio | 1,411 kbps |
| 1-minute file size | ~5-20 MB (video dominates) | ~10 MB (audio only) |
| DRM possible? | Yes — FairPlay on iTunes Store content | No — WAV has no DRM |
| Editor support | Video tools (Premiere, FCP, Resolve) | Universal in audio tools |
| Best for | Apple ecosystem video delivery | Editing, transcription, archival audio |
| Sample rate / depth / channels | Bitrate | File size per minute | Use case |
|---|---|---|---|
| 16 kHz, 16-bit, mono | 256 kbps | ~1.9 MB | Speech recognition (Whisper, ASR) |
| 22.05 kHz, 16-bit, mono | 353 kbps | ~2.6 MB | Audiobook, voiceover |
| 44.1 kHz, 16-bit, stereo | 1,411 kbps | ~10.3 MB | CD-quality, general editing |
| 48 kHz, 16-bit, stereo | 1,536 kbps | ~11.3 MB | Video-standard audio (broadcast / post) |
| 48 kHz, 24-bit, stereo | 2,304 kbps | ~16.9 MB | Pro audio editing headroom |
| 96 kHz, 24-bit, stereo | 4,608 kbps | ~33.8 MB | High-resolution archival |
No. M4V files purchased or rented from the iTunes Store / Apple TV app are protected with Apple's FairPlay DRM and can only be played inside authorized Apple apps (Apple TV on macOS/iOS/tvOS, or iTunes on Windows). Web-based converters cannot decrypt FairPlay — and circumventing it would violate the DMCA and Apple's terms. Only M4V files you authored yourself (iMovie exports, QuickTime screen recordings, GoPro/camera exports renamed to.m4v) or DRM-free M4V downloads will convert.
The M4V contains lossy-compressed AAC audio at roughly 128-256 kbps. WAV is uncompressed PCM at 1,411 kbps for CD-quality stereo — about 6-11× the data rate of the AAC track. Plus the original M4V's size includes the video track; once you extract only audio to WAV, you're comparing the M4V's audio component (which was small) to a much bigger uncompressed copy. Size growth of 5-10× per minute of audio is normal and expected.
No — WAV cannot recover detail the AAC encoder already discarded. The conversion is "transcode an already-lossy source to a lossless container." The WAV is bit-perfect relative to what your decoder produces from the AAC, but it's not bit-perfect relative to the original studio master. WAV's advantage here is editability and tool compatibility, not added fidelity. For new recordings, capture in WAV from the start.
Match the source when possible. iTunes Store and most M4V exports use 44.1 kHz (music origin) or 48 kHz (video/broadcast origin) — pick the same rate to avoid resampling. For speech-to-text (Whisper, AssemblyAI), downsample to 16 kHz mono — most ASR models train on 16 kHz and don't benefit from higher rates. For DAW editing, stay at 44.1 or 48 kHz; for archival or pro post-production, 48 kHz is the broadcast standard.
Keep stereo if the source has true stereo content (music videos, narrative film). Downmix to mono if the source is a single voice (interview, lecture, dialog-only podcast) — it halves file size with no perceptual loss, and ASR/transcription tools prefer mono. Avoid converting an already-mono source "to stereo" — it just duplicates the channel and doubles size for no benefit.
Yes. The Trim section accepts a start time and a duration. Both fields take plain seconds (e.g. 90 for 1:30 in) or HH:MM:SS.ms format (e.g. 00:01:30.500). Common uses: pulling a single song from a music-video M4V, extracting one chapter from a long screen recording, or grabbing a 10-second clip for sound design. After trimming, the WAV contains only the selected range. For more flexibility post-conversion, see Trim WAV.
Yes. M4V and MP4 are structurally the same MPEG-4 Part 14 container — Apple uses the .m4v extension to signal "this came from our pipeline and may contain DRM, chapter markers, or Apple-specific metadata." If you rename a vanilla MP4 to .m4v, this converter still reads it correctly. The upload accepts both .m4v and .mp4.
WAV is uncompressed and large. If file size matters and you don't need the WAV format specifically, convert M4V to a compressed audio format instead: M4V to MP3 for universal playback at ~10% the size, M4V to M4A to keep the AAC track in an audio-only container (no quality loss vs the source AAC, near-instant), or M4V to FLAC for lossless compression at roughly half the size of WAV. For the inverse direction, see WAV to MP3.
pcm_s16le is 16-bit signed little-endian — CD-quality, the universal WAV default, and what every editor and ASR model expects. pcm_s24le is 24-bit — extra headroom for pro mixing and mastering, useful only if your DAW workflow benefits from it. Going from a lossy AAC source, 24-bit output adds file size without adding real precision (the source detail isn't there to capture). Stick with 16-bit unless you have a specific 24-bit pipeline requirement.