8383651367
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@282 2a923420-c742-0410-a762-8d5b09965624
15 lines
157 B
Bash
Executable File
15 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x /mod/bin/ffprobe ]; then
|
|
/mod/bin/ffprobe "$@" 2>&1 | sed '
|
|
1,10d
|
|
'
|
|
else
|
|
/mod/bin/ffmpeg "$@" 2>&1 | sed '
|
|
1,8d
|
|
$d
|
|
'
|
|
fi
|
|
exit 0
|
|
|