True - fair dinkum mate - tardigradesβ¦ Considering I was ALWAYS late for school (when I wasnβt wagging / playing hookie / truant) I can relate to tardigrades
β¦
OK - I now have my script to convert a folder of FLAC files to a new folder of mp3 files⦠Slowly housekeeping all the duplicates (i.e. delete an mp3 album if I already have it in FLAC).
And - just decided to do some housekeeping on my digital movie βoffsite backup for archival purpose onlyβ collection - I have dozens of them over 4 GB in filesize, some were close to 8 GBβ¦
So - Iβve been using βffmpegβ (I canβt imagine life without it - especially as my favourite movie player [mpv] use ffmpeg) to resample overly large video files using the libx265 codec (which is an upgrade of H.264 I believe) and changing the compression ratio (lossiness) - and watching the re-sampled video on my QHD 32" 165 Hz monitor about 2 feet away - having BOTH of them side-by-side - I canβt tell the difference - in some cases Iβve made a 10 fold saving! An 8 GB mkv is now between 8-900 MB and it looks just as goodβ¦ For special stuff - Iβm setting a slighly less lossy (-crf 24) valueβ¦ I think the default is 23 - I might actually try 23 next time around and see if I still get any space savingsβ¦
Anyway - I got sick of searching back through my shell history - and I ended up writing a shell script to do it for me :
ββx@titan ~
β°ββ€ bat ~/bin/reducto.bash
ββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β File: /home/x/bin/reducto.bash
ββββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
1 β #!/usr/bin/env bash
2 β # Reduce a video file by #FACTOR
3 β PROG=$(basename $0)
4 β BNARY=ffmpeg
5 β echo "Usage : "
6 β echo -e "\t $PROG \$videofile \$factor"
7 β echo -e "\t\t where \$vidofile exists and : "
8 β echo -e "\t\t $factor is some value between 20 (lowest) and 51 (highest) compression..."
9 β # defaults to using x265 format...
10 β if [ $# -lt 2 ] ; then
11 β echo "this $PROG expects two arguments..."
12 β exit 1
13 β fi
14 β VID="$1"
15 β FCT=$2
16 β if [ ! -f $VID ] ; then
17 β echo "$VID doesn't seem to exist...."
18 β exit 1
19 β fi
20 β if [[ "$FCT" =~ ^[0-9]+$ || "$FCT" =~ ^[-][0-9]+$ ]] ; then
21 β echo "looks like an integer then...."
22 β else
23 β echo "$FCT is NOT an integer..."
24 β exit 1
25 β fi
26 β if [ $FCT -gt 51 ] ; then
27 β echo "$FCT out of range - should be less than 52!"
28 β exit 1
29 β fi
30 β # EXT=$(echo $VID | awk '{print $NF}')
31 β # echo "${filename%.*}"
32 β NEWVID="${VID%.*}"
33 β echo Old : $VID
34 β echo New : $NEWVID
35 β echo "$BNARY -i $VID -vcodec libx265 -crf $FCT $NEWVID-x265-crf$FCT.mp4"
36 β $BNARY -i "$VID" -vcodec libx265 -crf $FCT "$NEWVID-x265-crf$FCT".mp4
ββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
AND I managed to write a shell script without any SWEARING in it too! I might change it a bit later to accept a 3rd argument, filetype by extension - i.e. mkv, mpg, avi as well as mp4β¦
That NEWVID="${VID%.*}"
stuff is to lose the existing filename extensionβ¦
Anyway - about tardigrades - some of the output (several times - for each βstreamβ) from ffmpeg shows (that is quite possibly actually in the library - not the ffmpeg binary??? "mkvmerge or libx265) :
Stream #0:0: Video: hevc (hev1 / 0x31766568), yuv420p(tv, bt709, progressive), 1280x688 [SAR 172:173 DAR 320:173], q=2-31, 23.98 fps, 24k tbn (default)
Metadata:
BPS-eng : 3977147
DURATION-eng : 02:00:48.992000000
NUMBER_OF_FRAMES-eng: 173802
NUMBER_OF_BYTES-eng: 3603788774
_STATISTICS_WRITING_APP-eng: mkvmerge v21.0.0 ('Tardigrades Will Inherit The Earth') 64-bit
_STATISTICS_WRITING_DATE_UTC-eng: 2019-02-12 08:35:12
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
encoder : Lavc58.134.100 libx265
Side data:
cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
I love seeing humorous little βasidesβ in things like this!
Anyway - if I keep up this sort of house keeping the existing disks in my NAS should last at least another few years - I was under 1 TB free late last year - I now have 1.3 TB free!