Skip to content

Instantly share code, notes, and snippets.

@KenLuoTW
Last active November 18, 2019 14:16
Show Gist options
  • Save KenLuoTW/0f17d1e818e0c4d602332f9666acaa2b to your computer and use it in GitHub Desktop.
Save KenLuoTW/0f17d1e818e0c4d602332f9666acaa2b to your computer and use it in GitHub Desktop.
雙音軌轉單音軌
chcp 65001
IF NOT EXIST %cd%\已編碼 md 已編碼
for %%i in (%*) do (
IF NOT EXIST %cd%\%%~i.mkv exit
D:\PortableAPPs\x64\DoubleCmd\tools\ffmpeg\ffmpeg -i "%%~i.mkv" -filter_complex "join=channel_layout=stereo:map=1.0-FL|0.0-FR[a]" -map 0:v -map "[a]" -c:v copy -c:a aac -b:a 256k "%cd%\已編碼\%%~i.mkv"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment