User Tools

Site Tools


bash

This is an old revision of the document!


scripts pour xampp.

Pour extraire la piste audio mp3 de tous les mpg d'un dossier :

for i in *.mpg ; do ffmpeg -i "$i" -acodec copy "$(basename "${i/.mpg}").mp3"; done

mp4 vers m4a :

for i in *.mp4 ; do ffmpeg -i "$i" -acodec copy "$(basename "${i/.mp4}").aac"; done

pour télécharger une suite de fichier

source

Pour 1, 2, 3, 4, etc…

curl -O https://domain.tld/path/filename[0-9].png

Pour 01, 02, 03, 04, etc…

curl -O https://domain.tld/path/filename[00-9].png

macOS : lire un fichier texte en texte vers voix et enregistrer le fichier audio :

say -o sortie-audio.m4a -f texte-source.txt
bash.1630921447.txt.gz · Last modified: 2021/09/06 11:44 by leo