File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ because I don't have the resources and the time to maintain other systems.
30
30
* ogg: Free, open container format
31
31
* vorbis: Lossy audio compression format
32
32
* theora: Free lossy video compression format
33
+ * opus: Lossy audio coding format
33
34
34
35
## Continuos Integration
35
36
ffmpeg-build-script is rockstable. Every commit runs against Linux and OSX with https://travis-ci.org just to make sure everything works as expected.
Original file line number Diff line number Diff line change 2
2
3
3
# https://github.com/markus-perl/ffmpeg-build-script
4
4
5
- VERSION=1.6
5
+ VERSION=1.7
6
6
CWD=$( pwd)
7
7
PACKAGES=" $CWD /packages"
8
8
WORKSPACE=" $CWD /workspace"
@@ -217,6 +217,15 @@ if build "lame"; then
217
217
build_done " lame"
218
218
fi
219
219
220
+ if build " opus" ; then
221
+ download " https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz" " opus-1.3.1.tar.gz"
222
+ cd $PACKAGES /opus-1.3.1 || exit
223
+ execute ./configure --prefix=${WORKSPACE} --disable-shared --enable-static
224
+ execute make -j $MJOBS
225
+ execute make install
226
+ build_done " opus"
227
+ fi
228
+
220
229
if build " xvidcore" ; then
221
230
download " https://downloads.xvid.com/downloads/xvidcore-1.3.5.tar.gz" " xvidcore-1.3.5.tar.gz"
222
231
cd $PACKAGES /xvidcore || exit
@@ -380,6 +389,7 @@ cd $PACKAGES/ffmpeg-6023b9f/ || exit
380
389
--enable-pthreads \
381
390
--enable-libvpx \
382
391
--enable-libmp3lame \
392
+ --enable-libopus \
383
393
--enable-libtheora \
384
394
--enable-libvorbis \
385
395
--enable-libx264 \
You can’t perform that action at this time.
0 commit comments