FFmpeg/Capture audio

Aller à la navigation Aller à la recherche
Vidéo
Audio
PowerShell

Il est possible d'effectuer des captures audios à l'aide de FFmpeg.

PowerShell et capture audio

Liste des périphérique "dshow":

ffmpeg -list_devices true -f dshow -i dummy

Résultat :

...
[dshow @ 0000026c68bf8dc0] DirectShow video devices (some may be both video and audio devices)
[dshow @ 0000026c68bf8dc0]  "USB2.0 VGA UVC WebCam"
[dshow @ 0000026c68bf8dc0]     Alternative name "@device_pnp_\\?\usb#vid_0bda&pid_57de&mi_00#6&2a01fa54&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"
[dshow @ 0000026c68bf8dc0]  "OBS Virtual Camera"
[dshow @ 0000026c68bf8dc0]     Alternative name "@device_sw_{860BB310-5D01-11D0-BD3B-00A0C911CE86}\{A3FCE0F5-3493-419F-958A-ABA1250EC20B}"
[dshow @ 0000026c68bf8dc0] DirectShow audio devices
[dshow @ 0000026c68bf8dc0]  "Microphone (Conexant SmartAudio HD)"
[dshow @ 0000026c68bf8dc0]     Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{E95BEC68-5291-405E-BA16-266AAD94F9E6}"
dummy: Immediate exit requested

Enregistrement depuis le microphone, sur une durée de 10 secondes, vers le fichier sortie1.mp3

ffmpeg -f dshow -i audio="Microphone (Conexant SmartAudio HD)" -r 20 -t 10 sortie1.mp3

Voir aussi

  •