add ffmpeg shortcut script

This commit is contained in:
Crispy 2022-08-31 20:47:02 +02:00
parent 7c23db6734
commit 82c9b6f601

14
scripts/cut_video.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage:"
echo "<source> <start_time> <end_time> <name>"
echo
echo "Example:"
echo "cut_video recorded.mp4 1:23 4:31 output"
echo "which would produce: output.mp4 and output_raw.mp4"
exit
fi
ffmpeg -i "$1" -ss $2 -to $3 -c copy $4"_raw.mp4"
ffmpeg -i "$1" -ss $2 -to $3 $4".mp4"