summaryrefslogtreecommitdiffstats
path: root/tools/video_bitrate
blob: 95110046034af88c23e221a41207d0a279cbc804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
#
# Date:    2009-12-14
# Author:  Ole Kristian Lien
# License: GNU General Public License
#
# Grabs video bitrate from video-file

if [ -z "$1" ]; then
	echo "Usage: $0 <video-file>"
	exit 1
fi

ffmpeg -i $1 2>&1 | grep Duration | awk '{print $6}'