annotate TOOLS/midentify.sh @ 32910:f34e21c5dc2f
Improve documentation on dlabel.
Throughout the skin documentation 'width' is used, so use it
instead of 'length' for the dlabel documentation, too.
Additionally, the German translation has been revised.
author |
ib |
date |
Wed, 02 Mar 2011 13:30:44 +0000 |
parents |
305dc504c407 |
children |
877e37095c2d |
rev |
line source |
27198
|
1 #!/bin/sh
|
|
2 #
|
|
3 # This is a wrapper around the -identify functionality.
|
|
4 # It is supposed to escape the output properly, so it can be easily
|
|
5 # used in shellscripts by 'eval'ing the output of this script.
|
|
6 #
|
|
7 # Written by Tobias Diedrich <ranma+mplayer@tdiedrich.de>
|
|
8 # Licensed under GNU GPL.
|
|
9
|
|
10 if [ -z "$1" ]; then
|
|
11 echo "Usage: midentify.sh <file> [<file> ...]"
|
|
12 exit 1
|
|
13 fi
|
|
14
|
|
15 mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null |
|
|
16 sed -ne '/^ID_/ {
|
|
17 s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p
|
|
18 }'
|