59 lines
1.2 KiB
Bash
59 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
#########################
|
|
# VARS
|
|
#########################
|
|
|
|
pid=$$
|
|
stderrfile="/tmp/gst-launch-1.0.stderr"
|
|
logfile="/tmp/gst-launch-1.0.log"
|
|
|
|
echo '' > stderrfile;
|
|
echo '' > logfile;
|
|
|
|
#########################
|
|
# UTILS
|
|
#########################
|
|
|
|
function log() {
|
|
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [$pid] [$1] $2" >> $logfile
|
|
}
|
|
function newline() {
|
|
echo "" >> $logfile
|
|
}
|
|
function info() {
|
|
log "INFO" "$1"
|
|
}
|
|
|
|
function handle_error() {
|
|
log "ERROR" "Error on line $(caller)"
|
|
endprocess
|
|
}
|
|
|
|
function endprocess() {
|
|
info "========================================[end gst-launch $pid]"
|
|
newline
|
|
kill -TERM $child 2>/dev/null
|
|
# rm -f "$stderrfile"
|
|
exit 1
|
|
}
|
|
|
|
#########################
|
|
# ENTRYPOINT
|
|
#########################
|
|
|
|
trap endprocess SIGTERM
|
|
trap handle_error ERR
|
|
|
|
newline
|
|
info "========================================[start gst-launch $pid]"
|
|
info "DEFAULT_ARGS: $*"
|
|
|
|
export LD_LIBRARY_PATH=/var/packages/VideoStation/target/lib/patch/lib/
|
|
export GST_PLUGIN_PATH=/var/packages/VideoStation/target/lib/patch/plugins/
|
|
|
|
/var/packages/CodecPack/target/pack/bin/gst-launch-1.0.orig "$@" 2> $stderrfile &
|
|
child=$!
|
|
info "gst-launch pid: $child"
|
|
wait $child
|