mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 09:15:34 +00:00
10 lines
202 B
Bash
10 lines
202 B
Bash
#! /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
|