forked from erikkaashoek/Comskip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into fancybits-upstrea…
…m-merge-mar2020
- Loading branch information
Showing
11 changed files
with
327 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,8 @@ configure | |
depcomp | ||
install-sh | ||
missing | ||
comskip.c.save-failed | ||
|
||
# Eclipse IDE | ||
.cproject | ||
.project |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM alpine:3.11 | ||
|
||
WORKDIR /tmp | ||
|
||
RUN apk --no-cache add python ffmpeg tzdata bash \ | ||
&& apk --no-cache add --virtual=builddeps autoconf automake libtool git ffmpeg-dev wget tar build-base \ | ||
&& wget http://prdownloads.sourceforge.net/argtable/argtable2-13.tar.gz \ | ||
&& tar xzf argtable2-13.tar.gz \ | ||
&& cd argtable2-13/ && ./configure && make && make install \ | ||
&& cd /tmp && git clone git://github.com/erikkaashoek/Comskip.git \ | ||
&& cd Comskip && ./autogen.sh && ./configure && make && make install \ | ||
&& apk del builddeps \ | ||
&& rm -rf /var/cache/apk/* /tmp/* /tmp/.[!.]* | ||
|
||
ENTRYPOINT [ "comskip"] | ||
CMD [comskip] |
This file contains 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
This file contains 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
Oops, something went wrong.