Mercurial > mplayer.hg
annotate TOOLS/midentify @ 26381:4617c374f752
demux_real.c: Always use MP_NOPTS_VALUE for unknown pts
demux_real.c still had code that used either 0 or MP_NOPTS_VALUE for
unknown timestamps depending on correct_pts setting. It should have
been removed in svn commit 25988 "Change to always use MP_NOPTS_VALUE
(instead of sometimes 0) for unknown pts.".
author | uau |
---|---|
date | Sat, 12 Apr 2008 15:51:15 +0000 |
parents | efb8b8fa323e |
children |
rev | line source |
---|---|
7865 | 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 | 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_/ { |
15889
efb8b8fa323e
Add missing escapes, this should now cover all shell special characters AFAICS
ranma
parents:
15869
diff
changeset
|
17 s/[]()|&;<>`'"'"'\\!$" []/\\&/g;p |
15869
1093105c639c
Solaris sed needs the terminating '}' to be on a separate line
ranma
parents:
15857
diff
changeset
|
18 }' |