diff options
Diffstat (limited to 'video-crop-detect')
-rwxr-xr-x | video-crop-detect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video-crop-detect b/video-crop-detect index df250f0..45d139b 100755 --- a/video-crop-detect +++ b/video-crop-detect @@ -1,3 +1,3 @@ #!/bin/sh set -x -mplayer `mplayer -ao null -ss 60 -frames 100 -vf cropdetect -vo null "$1" | awk -F '[()]' '{print $2}' | uniq | grep -Ev 'End of file' | tail -2` "$1" +mplayer $(mplayer -ao null -ss 60 -frames 100 -vf cropdetect -vo null "$1" | awk -F '[()]' '{print $2}' | uniq | grep -Ev 'End of file' | tail -2) "$1" |