Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vicidialベースのアスタリスクサーバー1.2バージョンを使用しています。アスタリスクサーバーで、デフォルトの形式のwavではなくmp3形式で着信および発信の通話を録音する必要があります。
助けてください
Debian/Ubuntu に sox と libsox-fmt-mp3 をインストールします。
apt-get install sox libsox-fmt-mp3
以下のコマンドを crontab に追加します。
nice find /tmp -iname "*.wav" -type f -exec bash \ -c 'WAV={}; MP3=${WAV/%wav/mp3}; sox -r 8000 -c 1 $WAV $MP3' \;