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
bash.1556494958.txt.gz · Last modified: 2019/04/29 01:42 by leo