일부 mp3 파일이 포함된 디렉토리가 있습니다. 다음을 사용하여 (거의) 모든 ID3 태그를 제거하고 싶습니다.
mid3v2 <file> --delete-frames=AENC,APIC,...
디렉토리의 각 mp3 파일에 대해. 다른 파일은 수정하면 안 됩니다. 어떻게 해야 하나요?
편집하다:
find /directory_with_mp3_files -name '*.mp3' -print0 | xargs -0 -I {} mid3v2 {} --delete-frames=AENC,APIC,...
작업이 완료되었습니다.
답변1
find /directory_with_mp3_files -name '*.mp3' |xargs -I {} mid3v2 {} --delete-frames=AENC,APIC,...