Search found 1 match

by Dragonnova
Thu Jul 24, 2025 7:25 pm
Forum: MakeMKV for Mac OS X
Topic: Metadata app recommendations on Mac
Replies: 4
Views: 12165

Re: Metadata app recommendations on Mac

You can install MKVToolNix using Homebrew: Then, use Apple Automator to create a service with the following shell script. This script sets the metadata title of each .mkv file in a selected folder to match its filename: #!/bin/bash find "$@" -type f -name "*.mkv" | while read -r ...