annotate TOOLS/midentify @ 15869:1093105c639c

Solaris sed needs the terminating '}' to be on a separate line
author ranma
date Thu, 30 Jun 2005 13:59:44 +0000
parents 70ad5a19d831
children efb8b8fa323e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7865
d151608b9f28 Add convenience wrapper for mplayer -identify
ranma
parents:
diff changeset
1 #!/bin/sh
15857
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
2 #
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
3 # This is a wrapper around the -identify functionality.
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
4 # It is supposed to escape the output properly, so it can be easily
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
5 # used in shellscripts by 'eval'ing the output of this script.
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
6 #
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
7 # Written by Tobias Diedrich <ranma+mplayer@tdiedrich.de>
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
8 # Licensed under GNU GPL.
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
9
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
10 if [ -z "$1" ]; then
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
11 echo "Usage: midentify <file> [<file> ...]"
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
12 exit 1
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
13 fi
70ad5a19d831 Better approach to shell escaping, may not catch all cases yet
ranma
parents: 9572
diff changeset
14
9572
96f874a6cd60 Prevent vo window flashing.
ranma
parents: 9562
diff changeset
15 mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null |
15869
1093105c639c Solaris sed needs the terminating '}' to be on a separate line
ranma
parents: 15857
diff changeset
16 sed -ne '/^ID_/ {
1093105c639c Solaris sed needs the terminating '}' to be on a separate line
ranma
parents: 15857
diff changeset
17 s/[]`\\!$" []/\\&/g;p
1093105c639c Solaris sed needs the terminating '}' to be on a separate line
ranma
parents: 15857
diff changeset
18 }'