72457df5bd
Signed-off-by: Markus Birth <markus@birth-online.de>
4 lines
170 B
Bash
Executable File
4 lines
170 B
Bash
Executable File
#!/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'
|
|
|