2002-10-23 15:49:44 +00:00
|
|
|
#!/bin/sh
|
2005-06-30 00:46:21 +00:00
|
|
|
#
|
|
|
|
# This is a wrapper around the -identify functionality.
|
|
|
|
# It is supposed to escape the output properly, so it can be easily
|
|
|
|
# used in shellscripts by 'eval'ing the output of this script.
|
|
|
|
#
|
|
|
|
# Written by Tobias Diedrich <ranma+mplayer@tdiedrich.de>
|
|
|
|
# Licensed under GNU GPL.
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Usage: midentify <file> [<file> ...]"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2003-03-12 16:25:25 +00:00
|
|
|
mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null |
|
2005-06-30 13:59:44 +00:00
|
|
|
sed -ne '/^ID_/ {
|
2005-07-02 19:12:01 +00:00
|
|
|
s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p
|
2005-06-30 13:59:44 +00:00
|
|
|
}'
|