This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $folderPath = "." | |
| $newName = "" | |
| # Ensure mkvmerge is available | |
| if (-not (Get-Command mkvmerge -ErrorAction SilentlyContinue)) { | |
| Write-Error "mkvmerge is not installed or not found in PATH." | |
| return | |
| } | |
| function Set-SubtitleName { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #===========================================# | |
| # +Psycho-Pass # | |
| # |+Season 1 # | |
| # |-01 - First Episode.mkv # | |
| # |-02 - Second Episode.mkv # | |
| # |-... # | |
| # |-Season 2 # | |
| # |-Extract-Subtitles-And-Attachments.ps1 # | |
| #===========================================# |