Coupeur Audio

Coupez et recadrez facilement des fichiers audio en ligne gratuitement. Sélectionnez les heures de début et de fin, prévisualisez votre clip et téléchargez sans filigrane. Tout le traitement se fait dans votre navigateur pour une confidentialité à 100%.

Publicité
Publicité

An audio clipper trims and cuts audio files to extract specific segments. You can set start and end points, preview the selection, and export the clip as WAV or MP3. This tool uses the browser's Web Audio API for precise, sample-accurate editing -- all processing happens locally in your browser, making it safe for unreleased music, podcasts, or voice recordings.

Coupez et découpez l'audio sans téléverser vos fichiers

Visual waveform, precise start/end selection, MP3 or WAV output. No watermarks, no sign-up — all processed locally in your browser.

Découpage précis
100% privé
Free no-watermarks

Comment l'utiliser

  1. 1

    Télécharger l'Audio

    Faites glisser votre fichier audio sur la page ou cliquez pour le sélectionner depuis votre ordinateur.

  2. 2

    Définir la Plage de Temps

    Ajustez les curseurs de début et de fin pour mettre en évidence la partie exacte de l'audio que vous souhaitez conserver.

  3. 3

    Sélectionner le Format et la Qualité

    Choisissez le format de sortie (MP3 ou WAV) et le débit audio. Des valeurs plus élevées signifient une meilleure qualité mais des fichiers plus volumineux.

  4. 4

    Traiter et Prévisualiser

    Cliquez sur 'Couper l'audio'. Votre navigateur traitera le fichier et vous montrera un aperçu de la coupe finale.

  5. 5

    Télécharger

    Cliquez sur le bouton de téléchargement pour enregistrer votre nouveau clip audio en tant que fichier MP3 ou WAV.

Simple, Privé et Puissant

100% Privé

Votre audio est traité directement sur votre appareil. Rien n'est téléchargé, donc votre contenu reste complètement confidentiel.

Contrôle Précis

Utilisez les curseurs intuitifs pour sélectionner les points de début et de fin exacts pour votre clip, avec un aperçu en temps réel de la durée.

Pas de Filigrane

Téléchargez votre clip audio final gratuitement, sans filigrane ni marque ajoutée.

Publicité

Understanding Audio Clipping

Comment fonctionne l'audio numérique

Digital audio represents sound as a sequence of discrete samples -- numerical values that describe the air pressure at each point in time. The sample rate (typically 44100 or 48000 Hz) determines how many samples per second are recorded. Each sample has a bit depth (typically 16-bit or 24-bit) that determines the dynamic range. A 3-minute song at 44.1 kHz, 16-bit, stereo has about 8 million samples per channel. Audio clipping (trimming) simply means selecting a subset of these samples and discarding the rest.

The Web Audio API provides the AudioContext interface, which can decode audio files (MP3, WAV, OGG, M4A) into raw PCM (pulse-code modulation) sample data stored in an AudioBuffer. This buffer contains the sample data as Float32Array values (-1.0 to 1.0) for each channel. To clip the audio, the tool copies the samples between the start and end positions into a new AudioBuffer, which is then encoded back into a file format using a WAV encoder or an MP3 encoder (lame.js).

For sample-accurate editing, the start and end positions are specified in samples (or seconds, which are converted to samples by multiplying by the sample rate). This allows precise cuts at any point in the audio -- essential for music production where a cut even a few samples off the beat is noticeable. The Web Audio API also provides real-time playback via AudioBufferSourceNode, allowing you to preview the selection before exporting.

Publicité

Audio formats and quality

WAV is the best format for audio clips because it's lossless -- the clip is an exact copy of the original samples. WAV files are uncompressed, so they're large (about 10 MB per minute at 44.1 kHz, 16-bit, stereo). MP3 is a compressed format that uses psychoacoustic models to discard sounds humans can't hear, achieving 10:1 compression with minimal quality loss. For voice recordings and podcasts, MP3 at 128 kbps is sufficient. For music, use 192-320 kbps.

When clipping MP3 files, there's a technical consideration: MP3 encodes audio in frames of 1152 samples. Cutting at a frame boundary is fast and lossless (no re-encoding), but cutting between frame boundaries requires re-encoding, which introduces generational loss. Our tool re-encodes the clip for precise control, which is acceptable for most use cases. For professional audio editing where generational loss is unacceptable, use WAV source files and export to WAV.

Publicité

Comment cela se compare-t-il aux autres découpeurs audio ?

A side-by-side comparison of popular audio editing tools.

FonctionnalitéNovaToolsmp3cut.netAudacity (desktop)
Confidentialité (sans téléversement)OUI 100% navigateurN Téléverse vers le serveurOUI Local
Sans installationOUI Basé sur le webOUIN Application de bureau
Sample-accurate editingOUINOUI
WAV exportOUINOUI
MP3 exportOUIOUI(via LAME)
Real-time previewOUIOUIOUI

Online audio editors like mp3cut.net require uploading your audio files to their servers. Our tool uses the Web Audio API to decode, edit, and encode audio entirely in your browser -- suitable for unreleased music, confidential podcasts, or private voice recordings.

Questions fréquentes

Mes fichiers audio sont-ils téléchargés sur un serveur ?
Non. Notre outil fonctionne entièrement dans votre navigateur web. Vos fichiers audio ne sont jamais téléchargés, stockés ou transférés vers nos serveurs.
Cet outil de découpe audio est-il gratuit ?
Oui, cet outil est complètement gratuit à utiliser sans aucune limitation ni filigrane sur votre audio final.
Quel est le format du fichier audio de sortie ?
Vous pouvez choisir entre MP3 (compressé, fichier plus petit) ou WAV (non compressé, haute qualité). Les deux formats sont compatibles avec la plupart des appareils et logiciels.
Quels formats audio puis-je téléverser ?
The tool supports any audio format that your browser can decode — typically MP3, WAV, OGG/Vorbis, M4A/AAC, FLAC, and WebM/Opus. The exact set of supported formats depends on your browser and operating system. Chrome and Edge generally support the widest range of formats. If your file is in an unsupported format (e.g., WMA, AIFF, or AMR), you may need to convert it to MP3 or WAV first using a dedicated audio converter. The tool will display an error message if it cannot decode your file.
Quelle est la précision de la découpe ?
The tool provides millisecond-level precision for start and end points. The waveform visualization lets you see the audio's amplitude over time, making it easy to identify silence, speech, or music sections. You can drag the start and end handles on the waveform to select the exact portion you want to keep, or type specific time values in the input fields. A real-time duration display shows the length of your selected clip as you adjust the handles. For even more precision, you can zoom into the waveform to see individual audio frames.
La découpe affectera-t-elle la qualité audio ?
No. The tool performs a lossless cut operation — it does not re-encode the audio when trimming. Instead, it copies the exact audio frames within your selected range and wraps them in a new container. This means the trimmed audio has the exact same quality as the original file, with no generation loss, no compression artifacts, and no changes to the sample rate or bit depth. The only exception is when you change the output format (e.g., from WAV to MP3) — in that case, the tool must re-encode the audio, which may introduce minor quality changes depending on the bitrate you select.
Puis-je prévisualiser le clip avant de le télécharger ?
Yes. After selecting your start and end points, click the 'Preview' button to listen to the selected portion of the audio. The preview plays from the start point to the end point, with a moving playhead indicator on the waveform so you can see exactly where you are in the clip. You can adjust the start and end handles while the preview is playing, and the preview will automatically update to reflect the new selection. This makes it easy to fine-tune your clip until it sounds exactly right before downloading.
Y a-t-il une limite de taille de fichier ?
Il n'y a aucune limite artificielle de taille de fichier imposée par l'outil. Comme tout le traitement se fait dans la mémoire de votre navigateur, la limite pratique dépend de la RAM disponible. La plupart des ordinateurs modernes peuvent gérer des PDF jusqu'à 200-500 Mo. Si le navigateur cesse de répondre, essayez de diviser le fichier en lots plus petits.

Votre confidentialité est notre priorité

Cet outil fonctionne entièrement dans votre navigateur. Vos fichiers ne sont ni téléversés, ni stockés, ni analysés.

  • Nous ne téléversons, ne stockons ni n'analysons vos fichiers.
  • Tout ce que vous traitez reste sur votre appareil.
  • Il n'y a pas de traitement côté serveur, ni de stockage cloud, ni d'analyse.

Même si votre connexion internet tombe, vos fichiers restent en sécurité.

Vous pourriez aussi aimer

Guides utiles

Publicité