LoginSignup
0

More than 5 years have passed since last update.

音声データを一括で軽量化

Last updated at Posted at 2013-05-11

ffmpegを使います。

cd ~/Music/trpg/session_name/records/
mkdir rec
for fn in *.mp3;do ffmpeg -i "$fn" -ab 64k "rec/$fn";done

このようなコマンドで動きます。-ab 64k のところを128kなどとしてビットレートを変更できます。

ボイスメモを軽量化したい場合

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
0