parent
e1eedd869c
commit
610cb3f47b
@ -1,4 +1,6 @@
|
||||
A new version of the wrapper was deployed (v2.6) fixing an issue with offline transcoding.
|
||||
You can find the changelog here: https://github.com/AlexPresso/VideoStation-FFMPEG-Patcher/releases/tag/2.6
|
||||
|
||||
/!\ PLEASE FOLLOW THE UPDATE PROCEDURE IN THE CHANGELOG TO UPDATE /!\
|
||||
|
||||
As always, please let me know of any issue you could have.
|
||||
|
@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
repo_full_url=@repo_full_url@
|
||||
curl "$repo_full_url/patcher.sh" | bash -s -- -a unpatch
|
||||
|
||||
exit 0
|
@ -0,0 +1,87 @@
|
||||
#!/bin/bash
|
||||
|
||||
stderrfile=/dev/null
|
||||
child=""
|
||||
pid=$$
|
||||
|
||||
log() {
|
||||
local now
|
||||
now=$(date '+%Y-%m-%d %H:%M:%S')
|
||||
echo "[$now] [$1] $2" >> "$stderrfile"
|
||||
}
|
||||
|
||||
newline() {
|
||||
echo "" >> "$stderrfile"
|
||||
}
|
||||
|
||||
info() {
|
||||
log "INFO" "$1"
|
||||
}
|
||||
|
||||
kill_child() {
|
||||
if [[ "$child" != "" ]]; then
|
||||
kill "$child" > /dev/null 2> /dev/null || :
|
||||
fi
|
||||
}
|
||||
|
||||
endprocess() {
|
||||
info "========================================[end $0 $pid]"
|
||||
newline
|
||||
|
||||
if [[ $errcode -eq 1 ]]; then
|
||||
cp "$stderrfile" "$stderrfile.prev"
|
||||
fi
|
||||
|
||||
kill_child
|
||||
rm -f "$stderrfile"
|
||||
|
||||
exit "$errcode"
|
||||
}
|
||||
|
||||
handle_error() {
|
||||
log "ERROR" "An error occurred"
|
||||
newline
|
||||
errcode=1
|
||||
kill_child
|
||||
}
|
||||
|
||||
fix_args() {
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case "$1" in
|
||||
-acodec)
|
||||
shift
|
||||
if [[ "$1" = "libfaac" ]]; then
|
||||
args+=("-acodec" "aac")
|
||||
else
|
||||
args+=("-acodec" "libfdk_aac")
|
||||
fi
|
||||
;;
|
||||
|
||||
-vf)
|
||||
shift
|
||||
arg="$1"
|
||||
|
||||
if [[ "$arg" =~ "scale_vaapi" ]]; then
|
||||
scale_w=$(echo "$arg" | sed -n 's/.*w=\([0-9]\+\):h=\([0-9]\+\).*/\1/p')
|
||||
scale_h=$(echo "$arg" | sed -n 's/.*w=\([0-9]\+\):h=\([0-9]\+\).*/\2/p')
|
||||
|
||||
if (( scale_w && scale_h )); then
|
||||
arg="scale_vaapi=w=$scale_w:h=$scale_h:format=nv12,hwupload,setsar=sar=1"
|
||||
else
|
||||
arg="scale_vaapi=format=nv12,hwupload,setsar=sar=1"
|
||||
fi
|
||||
fi
|
||||
|
||||
args+=("-vf" "$arg")
|
||||
;;
|
||||
|
||||
-r)
|
||||
shift
|
||||
;;
|
||||
|
||||
*) args+=("$1") ;;
|
||||
esac
|
||||
|
||||
shift
|
||||
done
|
||||
}
|
Loading…
Reference in New Issue