blob: 797eeb4630c623734a5f7413bbb6958b2c7e1e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
#
# Date: 2009-11-30
# Author: Ole Kristian Lien
# License: GNU General Public License
#
# Grabs duration from audio/video-file
if [ -z "$1" ]; then
echo "Usage: $0 <audio/video-file>"
exit 1
fi
ffmpeg -i $1 2>&1 | grep "Duration" | cut -d ' ' -f 4 | sed s/,// | cut -d "." -f1
|