This commit is contained in:
rozbrian
2026-01-10 20:46:22 +09:00
commit 304cbcc554
66 changed files with 1291 additions and 0 deletions

14
all2mp4_ Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
IFS=$'\n'
VIDEOS=($(cat $1))
EXITFILE="/tmp/all2mp4.stop"
#cat $1
for a in ${VIDEOS[@]}; do echo "== $a =="
if [[ -f $EXITFILE ]]
then
exit 0
fi
echo $(date) "\""$(pwd)"/"$a"\"" >> /tmp/all2mp4.log
2mp4 "$a"
done