Remove spurious output from effects to commandline. - annna - Annna the nice fr… | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 84de31a6b3819c0bc01f27da9144b2912ff70200 | |
parent 6ece34d5cccaaec6b636c095d3f0d221efc80a1d | |
Author: Annna Robert-Houdin <[email protected]> | |
Date: Sat, 15 Jan 2022 21:14:22 +0100 | |
Remove spurious output from effects to commandline. | |
Diffstat: | |
M annna-message-common | 4 ++-- | |
M ffmpeg-effect | 1 + | |
2 files changed, 3 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/annna-message-common b/annna-message-common | |
@@ -849,10 +849,10 @@ case "${text}" in | |
antidepressant) | |
outfile="${outfile%.*}.jpg" | |
outpath="${outpath%.*}.jpg" | |
- antidepressant "${inpath}" "${outpath}" | |
+ antidepressant "${inpath}" "${outpath}" 2>&1 >… | |
;; | |
*) | |
- ffmpeg-effect "${filter}" "${inpath}" "${outpa… | |
+ ffmpeg-effect "${filter}" "${inpath}" "${outpa… | |
;; | |
esac | |
diff --git a/ffmpeg-effect b/ffmpeg-effect | |
@@ -167,3 +167,4 @@ if process_filter "$1" "$2" "$3"; then | |
else | |
exit $? | |
fi | |
+ |