mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2026-05-06 11:06:04 +00:00
Convert audio of video files for Resolve
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
# Create backup directory
|
||||||
|
mkdir -p ./converted
|
||||||
|
|
||||||
|
# Convert files
|
||||||
|
for file in *.mp4; do
|
||||||
|
ffmpeg -i $file -acodec pcm_s16le -vcodec copy ./converted/${file%%.*}.mov
|
||||||
|
done
|
||||||
Reference in New Issue
Block a user