Added script to sha256sum audio streams

Signed-off-by: Markus Birth <markus@birth-online.de>
This commit is contained in:
2026-01-28 23:22:01 +00:00
parent 5dad0c9bfb
commit 72457df5bd
Executable
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
find . -type f -iname "*.m4a" -exec sh -c "ffmpeg -i \"{}\" -map_metadata -1 -c copy -f adts pipe:1 | sha256sum -b" \; -print 2>/dev/null | sed 'N;s/\*-\n//g'