Sujet : Re: I installed openSUSE Leap
De : OFeem1987 (at) *nospam* teleworm.us (Chris Ahlstrom)
Groupes : comp.os.linux.advocacyDate : 17. Oct 2024, 11:42:48
Autres entêtes
Organisation : None
Message-ID : <veqpob$2n4rs$7@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : slrn/1.0.3 (Linux)
Lawrence D'Oliveiro wrote this copyrighted missive and expects royalties:
On Tue, 3 Sep 2024 10:30:17 -0400, DFS wrote:
>
I guess you've never had to rename 100 files in a variety of ways. When
you do, you'll find out that compared to using scripts, ReNamer is
extremely wonderful.
>
Only 100 files? What a quaint toy.
Ask Doofus how he would recode (e.g. rotate) hundreds of videos using
"ReNamer". Or convert a bunch of MP4 files to MP3.
Here's an excerpt from a Bash scrip I wote years ago:
declare -i COUNTER
COUNTER=0
for FILE in $(ls -1 *.mp4) ; do
FILE2=$(echo "$FILE" | sed -r -e 's/\.\///')
NEWFILE="normal-$FILE2"
echo "File '$FILE' becomes '$NEWFILE'"
ffmpeg -i "$FILE" -vf "vflip" $NEWFILE
COUNTER=COUNTER+1
done
echo "$COUNTER files processed."
-- "Are those cocktail-waitress fingernail marks?" I asked Colletti as heshowed us these scratches on his chest. "No, those are on my back," Collettianswered. "This is where a case of cocktail shrimp fell on me. I told herto slow down a little, but you know cocktail waitresses, they seem to havea mind of their own."
-- The Incredibly Monstrous, Mind-Roasting Summer of O.C. and Stiggs
National Lampoon, October 1982