Compare commits

..

3 Commits

Author SHA1 Message Date
262e95e42e remove some unused scripts 2024-05-02 22:41:20 -04:00
1f800423ec improve bluetooth restart script 2024-05-02 22:41:20 -04:00
6a242b158e add standardize-music script 2024-05-02 22:41:20 -04:00

View File

@ -11,7 +11,7 @@ fi
count=`ls -1 *.m4a 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.m4a; do
ffmpeg -i "$i" "${i%.*}.ogg" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.ogg" && rm "$i"
done
fi
@ -23,7 +23,7 @@ fi
count=`ls -1 *.webm 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.webm; do
ffmpeg -i "$i" "${i%.*}.ogg" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.ogg" && rm "$i"
done
fi
@ -35,7 +35,7 @@ fi
count=`ls -1 *.opus 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.opus; do
ffmpeg -i "$i" "${i%.*}.ogg" && rm "$i"
ffmpeg -y -i "$i" "${i%.*}.ogg" && rm "$i"
done
fi