file title is an option present on mkvtoolnix (92.0 eyeglow on debian 12.11)

I could single open every file, remove the file title and save, but that’s gonna take ages. almost 100 files.

  • retmas@lemm.ee
    link
    fedilink
    English
    arrow-up
    3
    ·
    23 days ago

    If you are talking about the mkv embedded title, try this:

    find -type f -iname "*.mkv" | while read "i" ; do mkvpropedit "${i}" --edit info --set "title=" ; done