Commandes utilisées

1. Vérifier l’installation

1.1. La commande «ffmpeg»

La commande est-elle connue?
ffmpeg
Afficher la version installée
ffmpeg -version
Créer un fichier de test
ffmpeg -f lavfi -i "testsrc2=size=640x480" -f lavfi -i "sine=frequency=1000" -t 5 -c:v v210 -c:a pcm_s16le test.mkv

1.2. la commande «ffplay»

La commande est-elle connue?
ffplay
Afficher la version installée
ffplay -version
Lecture du fichier de test
ffplay test.mkv

1.3. La commande «ffprobe»

La commande est-elle connue?
ffprobe
Afficher la version installée
ffprobe -version
Afficher les métadonnées du fichier de test
ffprobe -show_format -show_streams -print_format json test.mkv

2. Résumé de l’introduction

Teinte, trémolo et code temporel
ffmpeg -f lavfi -i "smptehdbars=1920x1080" -f lavfi -i "anoisesrc=color=brown" -c:v rawvideo -filter:v "hue=H=0.2*t, drawtext=timecode='00\:00\:00\:00':rate=25:fontfile='/Library/Fonts/Arial.ttf':fontsize=50:fontcolor=cyan:x=(w-text_w)/1.25:y=h/1.3+h*t/180" -c:a pcm_s24le -filter:a "tremolo=f=0.1:d=0.9" -ar 96k -t 30 hue_tremolo_tc.mkv

2026-03-21