mirror of
https://github.com/albfan/miraclecast.git
synced 2025-03-09 23:38:56 +00:00
fix view tester
This commit is contained in:
parent
091080b3a7
commit
740a9de080
1 changed files with 9 additions and 4 deletions
|
@ -1,29 +1,32 @@
|
|||
#!/bin/bash
|
||||
|
||||
#
|
||||
# test gstreamer plugins required for miraclecast
|
||||
#
|
||||
|
||||
plugins=(udpsrc rtpjitterbuffer rtpmp2tdepay tsdemux h264parse avdec_h264 autovideosink)
|
||||
|
||||
echo testing plugins required
|
||||
echo testing plugins required:
|
||||
echo
|
||||
|
||||
FAIL=
|
||||
|
||||
for plugin in ${plugins[@]}
|
||||
do
|
||||
echo -n test $plugin...
|
||||
gst-inspect-1.0 $plugin &> /dev/null
|
||||
if [ $? != 0 ]
|
||||
then
|
||||
FAIL=1
|
||||
echo
|
||||
echo -e \\tgst plugin \"$plugin\" not available
|
||||
else
|
||||
echo -e " (passed)"
|
||||
fi
|
||||
done
|
||||
|
||||
echo
|
||||
|
||||
if [ -v FAIL ]
|
||||
if [ -n "$FAIL" ]
|
||||
then
|
||||
cat <<EOF
|
||||
Some plugins required for visualization are missed
|
||||
|
@ -35,7 +38,9 @@ If that fails too, try:
|
|||
$ vlc rtp://@1991
|
||||
|
||||
EOF
|
||||
else
|
||||
echo everything installed
|
||||
fi
|
||||
|
||||
echo
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue