Skip to content

Instantly share code, notes, and snippets.

@nickcheng
Last active March 26, 2019 06:08
Show Gist options
  • Save nickcheng/e55b8e38264fe396c1454f097e15c1e7 to your computer and use it in GitHub Desktop.
Save nickcheng/e55b8e38264fe396c1454f097e15c1e7 to your computer and use it in GitHub Desktop.
Batch extract audio from video.
#! /bin/zsh
array=(*.mkv);for i ($array){num=$(echo $i|grep -Eo "第[0-9]+"|grep -Eo "[0-9]+");ffmpeg -i $i -vn xnj$num.m4a;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment