Created wiki page through web user interface.
This commit is contained in:
parent
af977abccc
commit
2f6b22e4d5
24
wiki/Example_script.wiki
Normal file
24
wiki/Example_script.wiki
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#summary script showing usage of PPSS variables
|
||||||
|
|
||||||
|
{{{
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
SRC="$1"
|
||||||
|
DEST="$2"
|
||||||
|
|
||||||
|
|
||||||
|
TYPE=`file -b "$SRC"`
|
||||||
|
RES=`echo "$TYPE" | grep "WAVE audio"`
|
||||||
|
if [ ! "$?" == "0" ]
|
||||||
|
then
|
||||||
|
echo "File $FILE is not a wav file..."
|
||||||
|
echo "Type is $TYPE"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
BASENAME=`basename "$SRC"`
|
||||||
|
MP3FILE="`echo ${BASENAME%wav}mp3`"
|
||||||
|
lame --quiet --preset insane "$SRC" "$DEST/$MP3FILE"
|
||||||
|
exit "$?"
|
||||||
|
|
||||||
|
}}}
|
Loading…
Reference in New Issue
Block a user