This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0eNrtvUuPncmRJPpXCK5mgDqNeD+0HGBwN726m1k0Gg2WlJKIoVgFkqUZ3Ub/95usRyZZdeKEuZlHJilp00Jn8YR/8Q53Nzf7z5ffvvnh7vt3r99++I9vv/vuf7/83X8+/uX9y9/92yf/78f/9vr337396c/vX//p7as3H//24W/f37383cu/vn734Yf7v3zz8u2rv3z8w0//4hJf/tc3L1+//cPd/335u/hf35C/TKZffvzmT36c/+vfv3l59/bD6w+v7376+h//n7/9x9sf/vLt3bv773po4O7/fv/u7v37y4d3r96+//67dx8u3969+XBv4Pvv3t///Lu3H63fNxn+pX7z8m8vf3dJ/1L/6+O3/arF9JsW33//5vWHD/f/7bdt/dRSuN5SNn/b5eHj4n2T37z8w+t3d7//6b+nKwYK3/l4/ZPrb1r84X4i3v3p3Xf3/7v76J+++ecJfv32+x8+vLxioikmwqcmvvvhw8JGNw9M/MzAJ+PerjQ/6OYXwz7piYzI98ZAjLlxyCO/E/P1QYmWnRh/bOnHLX1/Yrz+cPeX+589HoDfvHzz6v4j7v8WX1xexBfffvfhzy/ev/7D3fsX3/3xxcfPe/Htqzev3v7+7g/3//avd+/e/7TpRix9pj7GaDOmx3MpfPze5ztf8xd8vl52Z4xlWi/R+4SNm68r9N6+QGdHdT+zG9/iYlg7P+kBubeGfQW4HZyXT0967Ky03B0+J2Ncne5FPScf7o39LEXh/bJ4W8XCz9eqyUqPboLuTn57XWl/dzd9+O5Fhi6g+LwXUHmGC+iPr95/0M/3ZGtvd/hm4+cF+PqB2ovwe/7H5uiLtqHtRPBi2TQTbh2og5vCiDwO7zdggTZget4NWL/kF2A0u9iq06642sn9IZhQ53rXYtq02Pzfv11ocrtf4YgK/NxjT6Irz7wbh+PD6xZ4L0RDw+lmb2PSXrf7l6PgP2FP06I/TZvPo+8STB/e6L0KeYGxu3sZg/7i1fKbfn7LtTFIwe4GJmT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install cuetools flac ffmpeg shntool | |
shnsplit -o flac -f file.cue file.flac | |
# https://github.com/gumayunov/split-cue/blob/master/cuetag | |
cuetag file.cue split-track*.flac | |
for i in *.flac; do ffmpeg -i "$i" -acodec alac "`basename "$i" .flac`.m4a"; done; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install autoconf automake libogg | |
git clone git://github.com/yasm/yasm.git yasm | |
git clone http://git.chromium.org/webm/libvpx.git libvpx | |
git clone git://git.videolan.org/ffmpeg.git ffmpeg | |
git clone git://git.videolan.org/x264.git libx264 | |
wget http://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.gz | |
wget http://sourceforge.net/projects/faac/files/faac-src/faac-1.28/faac-1.28.tar.gz | |
wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.4.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i video.mkv -map 0:1 -acodec libfaac -ar 44100 -ac 2 -ab 128k -threads 0 audio.aac |