Skip to content

Instantly share code, notes, and snippets.

View Darex1991's full-sized avatar

Dariusz Pieńczykowski Darex1991

View GitHub Profile
@priintpar
priintpar / media-to-mkv-converter.sh
Last active April 10, 2024 10:26
Convert many .media files created by security cameras and babyphones to a single .mkv file using ffmpeg on Macos or Linux. Even skips defective files.
find . -type f -name '*media' >> unsortedlist.txt
sort unsortedlist.txt >> sortedlist.txt
while read line; do ffprobe $line; if [ $? = "1" ]; then echo $line; fi; done < sortedlist.txt >> corruptfiles.txt
awk 'NR==FNR{a[$0];next} !($0 in a)' corruptfiles.txt sortedlist.txt > temp; mv temp sortedlist.txt
while read line; do echo "file '$line'"; done < sortedlist.txt >> sortedlistwithoutcorruptfiles.txt
ffmpeg -f concat -safe 0 -i sortedlistwithoutcorruptfiles.txt -c copy outputvideo.mkv
rm unsortedlist.txt sortedlist.txt sortedlistwithoutcorruptfiles.txt corruptfiles.txt
@plentz
plentz / nginx.conf
Last active April 24, 2024 11:15
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048