r27182: apply parameter name change of no-correct-pts from r26842 to man page
r27208: dvd:// streams accept the device path in the url; patch by Mathieu SCHROETER mathieu.schroeter gamesover ch
r27230: Give all shell scripts a .sh suffix for consistency.
r27235: moved o option beetwen m* and p*
r27236: another alphabetical order correction
r27334: -border/-noborder are supported by gl/gl2, too, but only on Windows.
r27337: No idea which vos support -noborder how well, though those based on
X11 or running on Windows _should_ work.
Just remove that line for now.
r27342: Remove outdated "X11 only" from xineramascreen option and try to make clearer
what it does and what it does not.
r27348: add list of supported vo's to -xineramascreen
#!/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 <ranma+mplayer@tdiedrich.de># Licensed under GNU GPL.if [ -z "$1" ]; then echo "Usage: midentify.sh <file> [<file> ...]" exit 1fimplayer -vo null -ao null -frames 0 -identify "$@" 2>/dev/null | sed -ne '/^ID_/ { s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p }'