diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-12-05 13:55:15 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-12-05 13:55:15 +0100 |
commit | 8d8c5681e39d60ab9c826fc766a5ef0d9ab03916 (patch) | |
tree | 0ccf4e609ea6bd836e6060b5baded21533324e09 /video-crop-detect | |
parent | 81f0a194c53a5d74b646ac2981e26e3ef2614c84 (diff) | |
download | bin-8d8c5681e39d60ab9c826fc766a5ef0d9ab03916.tar.gz bin-8d8c5681e39d60ab9c826fc766a5ef0d9ab03916.tar.xz |
misc
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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" |