How to test that your microphone is working, using pulseaudio:
pactl load-module module-loopback latency_msec=1
To disable it again:
pactl unload-module module-loopback
Thanks to: https://askubuntu.com/a/262297
How to test that your microphone is working, using pulseaudio:
pactl load-module module-loopback latency_msec=1
To disable it again:
pactl unload-module module-loopback
Thanks to: https://askubuntu.com/a/262297
This snippet works for the Iphone image/movie files in format: YY-MM-DD HH24-MI-SS NNNN.ext
Then, to overwrite with EXIF information from JPEG files:
exiv2 -T rename *.jpg
Useful snippet for some of the Iphone files/movies on my disk:
Identify broken symbolic links:
find . -xtype l
To delete as well:
find . -xtype l -delete
Use rdfind tool from Debian repo.
To find duplicate files in directories dir1 (and dir2) with results.txt output file produced:
rdfind dir1 [dir2]
To test:
rdfind -n true -deleteduplicates true dir1 dir2
To delete duplicates:
rdfind -deleteduplicates true dir1 dir2