strip-metadata: update
This commit is contained in:
parent
abbdf07583
commit
b3836e31b2
1 changed files with 8 additions and 0 deletions
|
@ -4,11 +4,19 @@ def main [path: string] {
|
|||
glob $path | each { |item|
|
||||
match ($item | path parse | get extension | str downcase) {
|
||||
"jpg" | "jpeg" | "png" => {
|
||||
do -i {
|
||||
xattr -d com.apple.metadata:kMDItemWhereFroms $item
|
||||
xattr -d com.apple.metadata:kMDItemComment $item
|
||||
}
|
||||
exiftool -all= -overwrite_original_in_place $item
|
||||
},
|
||||
"mp4" => {
|
||||
let tmp_item = $"($item)_out.mp4"
|
||||
|
||||
do -i {
|
||||
xattr -d com.apple.metadata:kMDItemWhereFroms $item
|
||||
xattr -d com.apple.metadata:kMDItemComment $item
|
||||
}
|
||||
ffmpeg -i $item -map_metadata -1 -c:v copy -c:a copy $tmp_item
|
||||
rm $item
|
||||
mv $tmp_item $item
|
||||
|
|
Loading…
Reference in a new issue