0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacOSXでスペース入りの複数ogg/wavをコンバートする方法

Last updated at Posted at 2018-01-20

MacOSXでスペース入りの複数ogg/wavをコンバートする方法

準備

まずvorbis-toolsをいれます

$ brew install vorbis-tools

Wav->Ogg(Encode)

$oggenc hoge.wav

ビットレートを64kbpsに指定する場合は-bオプション

$oggenc -b 64 -o hoge.ogg hoge.wav

Ogg->Wav(Decode)

$ oggdec fuga.ogg

MacOSXでスペース入りの複数ogg/wavをコンバートする

サンドデザイナーさんがよくやる「スペースいれちゃった☆」場合は心をおちつけて

エンコード

$find . -type f -name "*.wav" -print0|xargs -0 oggenc

デコード

$find . -type f -name "*.ogg" -print0|xargs -0 oggdec

ビットレート48kって約束したのにうっかり混ざってそうな時には

$find . -type f -name "*.ogg" -print0|xargs -0 ogginfo|grep -E '^Rate: 44100'

##参考

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?