F5F Stay Refreshed Software Operating Systems Attempting to obtain an MKVPropedit batch file for execution

Attempting to obtain an MKVPropedit batch file for execution

Attempting to obtain an MKVPropedit batch file for execution

_
_NeCr0m
Member
59
05-31-2023, 05:59 PM
#1
You're trying to automate changing audio and subtitle labels across multiple MKV files in a folder using mkvpropedit. The current command works for individual files, but you're looking to apply these changes to all files in a directory. The issue is that the tool doesn't natively support batch processing of all tracks across multiple files without specifying each one individually. You may need to loop through the files, identify the relevant tracks, and apply the settings manually or with a script. Keep in mind that not every file will have track 4, which can cause errors. If you need a more efficient solution, consider using a scripting language like Python to automate this task.
_
_NeCr0m
05-31-2023, 05:59 PM #1

You're trying to automate changing audio and subtitle labels across multiple MKV files in a folder using mkvpropedit. The current command works for individual files, but you're looking to apply these changes to all files in a directory. The issue is that the tool doesn't natively support batch processing of all tracks across multiple files without specifying each one individually. You may need to loop through the files, identify the relevant tracks, and apply the settings manually or with a script. Keep in mind that not every file will have track 4, which can cause errors. If you need a more efficient solution, consider using a scripting language like Python to automate this task.

1
111carys111
Posting Freak
832
05-31-2023, 08:53 PM
#2
Create a PowerShell script named convert.ps1 with the following content. The initial line scans for MKV files in the given directory. Each file processed runs mkvpropedit.exe with specific settings.
1
111carys111
05-31-2023, 08:53 PM #2

Create a PowerShell script named convert.ps1 with the following content. The initial line scans for MKV files in the given directory. Each file processed runs mkvpropedit.exe with specific settings.

X
xl97
Member
104
06-02-2023, 02:58 PM
#3
Great job! It was exactly what I was looking for. I wasn't even aware PS could execute scripts similar to CMD, but it makes sense now.
X
xl97
06-02-2023, 02:58 PM #3

Great job! It was exactly what I was looking for. I wasn't even aware PS could execute scripts similar to CMD, but it makes sense now.