c3d2-web/scripts/encode_mp3.sh

16 lines
162 B
Bash
Raw Normal View History

2013-10-08 01:06:02 +02:00
#!/bin/sh -e
if=$1
of=$2
# No. CPU cores:
threads=8
# Audio bitrate:
2014-10-07 01:39:08 +02:00
ab=128k
2013-10-08 01:06:02 +02:00
ffmpeg -i "$if" \
-f mp3 \
-ab $ab \
-threads $threads \
-y "$of"