Stow scripts

This commit is contained in:
2023-11-25 09:35:34 -05:00
parent 547eb10705
commit b41a4141f2
41 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,9 @@
#! /bin/bash
# Create backup directory
mkdir -p ./converted
# Convert files
for file in *.mp4 *.MP4 *.mov *.MOV; do
ffmpeg -i $file -acodec pcm_s16le -vcodec copy ./converted/${file%%.*}.mov
done