From badc033ef7dcbf1f322627b37403f969cc70c41d Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 7 Jul 2008 09:30:22 +0000 Subject: Give all shell scripts a .sh suffix for consistency. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27230 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/midentify.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 TOOLS/midentify.sh (limited to 'TOOLS/midentify.sh') diff --git a/TOOLS/midentify.sh b/TOOLS/midentify.sh new file mode 100755 index 0000000000..1502950e13 --- /dev/null +++ b/TOOLS/midentify.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +# 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 +# Licensed under GNU GPL. + +if [ -z "$1" ]; then + echo "Usage: midentify.sh [ ...]" + exit 1 +fi + +mplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null | + sed -ne '/^ID_/ { + s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p + }' -- cgit v1.2.3