mkvextract and batch extraction

Is there a way to extract all attachments in a mkv file via mkvextract with batch?

Otherwise I need to give the name of all attachments one by one.


Solution 1:

If you run the following: mkvextract attachments file.mkv 1:1.ttf 2:2.ttf 3:3.ttf 4:4.ttf 5:5.ttf 6:6.ttf ... etc Then mkvextract will extract attachments by id until it can't find an attachment. It will exit when it fails to find an attachment, so the batch will progress. Disadvantage here is that you lost the attachment filenames, but without grepping around some mkvinfo output, this is the only way I know of to extract all the attachments.

Solution 2:

For Bash you could use mkvextract attachments "$file" $(seq 1 100) to extract attachments 1 to 100, assuming that there are no more than 100 attachments. If you use another shell you'll have to find the equivalent of seq to generate a sequence of numbers, here's one for Powershell.