annna-add-hashtag: do not allow ffmpeg(1) to read stdin - annna - Annna the nic… | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 4071707e65654b1ea2b18d461439f676adbe4d5b | |
parent 5ecda1d4aeea1720b4cc7655181d6b43752058d4 | |
Author: Anders Damsgaard <[email protected]> | |
Date: Tue, 6 Oct 2020 21:29:53 +0200 | |
annna-add-hashtag: do not allow ffmpeg(1) to read stdin | |
Doing so breaks the read loop in annna-add-hashtag-mass | |
Signed-off-by: Annna Robert-Houdin <[email protected]> | |
Diffstat: | |
M annna-add-hashtag | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/annna-add-hashtag b/annna-add-hashtag | |
@@ -63,7 +63,7 @@ processtag() { | |
case "${tagfile}" in | |
*.MP4|*.mp4|*.MKV|*.mkv|*.webm|*.WEBM|*.mov|*.MOV) | |
printf "Making %s streamable by adding faststart.\n" "${tagfil… | |
- ffmpeg -i "${tagfile}" -c copy -movflags faststart "faststart_… | |
+ ffmpeg -i "${tagfile}" -c copy -movflags faststart "faststart_… | |
mv "faststart_${tagfile}" "${tagfile}" | |
;; | |
esac |