LoginSignup
5
5

More than 5 years have passed since last update.

mp4 から音声ファイル (.aac) を抜く

Last updated at Posted at 2016-09-24

1ファイル処理

avconv -i mov.mp4 -vn -acodec copy snd.aac

-vn は video を無視.

ディレクトリのファイル全てを処理する bash script

extract_aac_from_mp4.sh
#!/bin/bash
ls *.mp4 | sed "s/\.mp4//" | awk '{printf "avconv -i \"%s.mp4\" -vn -acodec copy \"%s.aac\"\n", $0, $0}' | sh

~/script/extract_aac_from_mp4.sh に保存.

bash script の呼び出し

~/Download/mp4$ sh ~/script/extract_aac_from_mp4.sh

参照

[SOLVED] Best way to extract AAC from mp4 losslessly

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5