[?]Why .m4a and not .mp3?
Because .m4a is the honest answer. An MP4 already contains AAC audio, and an .m4a file is that same audio in the same container with nothing re-encoded — so the result is bit-for-bit identical to what was in the video. Converting to MP3 would mean decoding the AAC and re-encoding it, which throws away quality permanently to reach a format that is older and generally worse at the same bitrate. Every current phone, browser and music player handles .m4a.
[?]Is the extracted audio really identical?
Yes, when the codec can be carried — which for MP4 means AAC, the usual case. convrtr copies the encoded packets straight across rather than decoding them, so the audio bytes in the .m4a are the audio bytes from the MP4. Where a source uses a codec the target cannot hold, the tool says so instead of re-encoding quietly.
[?]Why is the extracted file a few milliseconds longer?
Because AAC has encoder pre-roll. The first fraction of a second of an AAC stream decodes to samples that come before the intended start, and a video file hides them with an instruction telling players to skip that much. Copying the audio out byte-for-byte brings those samples with it — around 23 milliseconds on a 44.1kHz file — so the extracted audio begins that much later than it did in the video. The alternative is to decode and re-encode in order to trim them, and we measured that: it gives the new encoder its own pre-roll and padding, producing a file further from the original than the copy while also being lossy. So convrtr copies, and tells you about the 23 milliseconds.
[?]How large a video can it handle?
Large ones. The video is read in slices and the audio written straight to disk as it is extracted, so a multi-gigabyte file does not have to fit in memory. In browsers without that capability the file is processed in memory instead, and convrtr says up front if it will not fit.
[?]Are my files uploaded anywhere?
No. convrtr has no server that receives files. Everything runs in your browser, and you can confirm it by opening your network tab while extracting — or by going offline first.
[?]Why convert from MP4 to M4A?
MPEG-4 Part 14 Video (MP4) and MPEG-4 Audio (M4A) serve distinct roles across the digital workflow. Converting to M4A provides optimized compatibility, modern compression efficiency, or standardized playback across web browsers, operating systems, and media production environments.
[?]Is the MP4 to M4A conversion lossless or lossy?
The conversion utilizes Advanced Audio Coding (AAC) or Apple Lossless (ALAC). You can fine-tune quality presets (Lossless, Visually Lossless, Balanced, Smallest) to eliminate noticeable degradation while achieving optimal file size reduction.
[?]Does convrtr upload my files to any cloud server?
Never. convrtr is architected with a strict zero-upload model. All processing, decoding, decompression, and encoding happen 100% locally on your machine using sandboxed WebAssembly and Web Workers. Your data never touches an external server, database, or analytics collector.
[?]How can I convert MP4 to M4A from the terminal / command line?
You can execute this conversion locally via command-line utilities such as ffmpeg, cwebp, or ImageMagick. For example: see the developer terminal recipe provided in the technical specifications dossier above. convrtr provides the identical local-first capability directly inside your browser without installing CLI packages.
[?]Can I batch convert multiple MP4 files to M4A simultaneously?
Yes. You can drop multiple .mp4 files into the instrument to process them concurrently in browser Web Workers, or click 'Open in Master Studio' to queue mixed formats, configure individual targets, and export as a single ZIP archive.