

6·
5 months agoi was for the most part only heating a single room
Have you made sure that your other rooms are not getting moldy? Cold air can’t carry as much moisture so your walls, furniture, etc. might be getting damper than they should be.
i was for the most part only heating a single room
Have you made sure that your other rooms are not getting moldy? Cold air can’t carry as much moisture so your walls, furniture, etc. might be getting damper than they should be.
GNU parallel, to run commands on all cores, and for its filename pattern substitution.
For example:
ls *.flac | parallel ffmpeg -i {} {.}.mp3
encodes a directory of FLAC files to MP3.parallel -a <(ls *.flac) -a <(ls *.mp3) --xapply copytags {1} {2}
then copies each FLAC file’s metadata to the corresponding MP3 file (which ffmpeg already does, just to illustrate the--xapply
option).edit:
copytags
is https://github.com/DarwinAwardWinner/copytags if that’s useful for anyone.