This file contains 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
/* | |
* Created by C.J. Kimberlin | |
* Refactored by Mane Function | |
* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2019-2023 | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal |
This file contains 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
# This script can easily combine MKV and MKA files to the single MKV package | |
# Required installed ffmpeg (can be easily done with brew install ffmpeg) | |
# As a bonus, can copy ass subtites as well | |
# Enjoy :) | |
# by Mane Function (2023) | |
import os | |
import shutil | |
import subprocess |