Rename in automatic all your .stream recordings

Code:
cd /media/hdd/movie
find . -depth -name "*.stream" -exec sh -c 'f="{}"; mv -- "$f" "${f%.stream}.ts"' \;
find . -depth -name "*.stream.meta" -exec sh -c 'f="{}"; mv -- "$f" "${f%.stream.meta}.ts.meta"' \;


20200525 1153 - 8 FM - instant record.stream
to
20200525 1153 - 8 FM - instant record.ts

You can also add these 3 lines to the beggining of the enigma2.sh file, and it will automatically rename all the recordings when you reboot your box.
_________________________