Files
dotfiles/scripts/shell/ffmpeg-get-video-duration.sh
2024-08-22 17:48:41 -03:00

4 lines
80 B
Bash
Executable File

#!/bin/bash
ffmpeg -i $1 2>&1 | grep "Duration" | awk -F, '{print $1}' | xargs