mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-02-01 13:17:51 +02:00
add ffmpeg
This commit is contained in:
parent
6d3d2f7843
commit
a65f9abcd3
10
README.md
10
README.md
@ -18,7 +18,6 @@ A collection of delicious docker recipes.
|
|||||||
- [ ] cloudtunes
|
- [ ] cloudtunes
|
||||||
- [ ] dsniff
|
- [ ] dsniff
|
||||||
- [ ] ettercap
|
- [ ] ettercap
|
||||||
- [ ] ffmpeg
|
|
||||||
- [ ] firehol
|
- [ ] firehol
|
||||||
- [ ] freegeoip
|
- [ ] freegeoip
|
||||||
- [ ] freelan
|
- [ ] freelan
|
||||||
@ -92,9 +91,12 @@ A collection of delicious docker recipes.
|
|||||||
- [x] vsftpd
|
- [x] vsftpd
|
||||||
- [x] webhook
|
- [x] webhook
|
||||||
- [x] webkit :beetle:
|
- [x] webkit :beetle:
|
||||||
- [x] youtube :beetle:
|
- [x] youtube-worker :beetle:
|
||||||
- [x] youtube-dl
|
|
||||||
- [x] youtube-worker
|
## Tool
|
||||||
|
|
||||||
|
- [x] ffmpeg
|
||||||
|
- [x] youtube-dl
|
||||||
|
|
||||||
## Web
|
## Web
|
||||||
|
|
||||||
|
13
ffmpeg/Dockerfile
Normal file
13
ffmpeg/Dockerfile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#
|
||||||
|
# Dockerfile for ffmpeg
|
||||||
|
#
|
||||||
|
|
||||||
|
FROM alpine
|
||||||
|
MAINTAINER kev <noreply@easypi.info>
|
||||||
|
|
||||||
|
RUN apk add --no-cache ffmpeg
|
||||||
|
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
|
ENTRYPOINT ["ffmpeg"]
|
||||||
|
CMD ["--help"]
|
14
ffmpeg/README.md
Normal file
14
ffmpeg/README.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
ffmpeg
|
||||||
|
======
|
||||||
|
|
||||||
|
![](https://badge.imagelayers.io/vimagick/ffmpeg:latest.svg)
|
||||||
|
|
||||||
|
## Tutorial
|
||||||
|
|
||||||
|
```
|
||||||
|
# create an alias
|
||||||
|
$ alias ffmpeg='docker run --rm -u $(id -u):$(id -g) -v $PWD:/data vimagick/ffmpeg'
|
||||||
|
|
||||||
|
# do video transcoding
|
||||||
|
$ ffmpeg -i video.mov video.mp4
|
||||||
|
```
|
@ -6,9 +6,9 @@ youtube-dl
|
|||||||
|
|
||||||
## Tutorial
|
## Tutorial
|
||||||
|
|
||||||
```
|
```bash
|
||||||
# create a alias
|
# create an alias
|
||||||
$ alias yt='docker run --rm -u $(id -u):$(id -g) -v `pwd`:/data vimagick/youtube-dl'
|
$ alias yt='docker run --rm -u $(id -u):$(id -g) -v $PWD:/data vimagick/youtube-dl'
|
||||||
|
|
||||||
# list all formats
|
# list all formats
|
||||||
$ yt -F nVjsGKrE6E8
|
$ yt -F nVjsGKrE6E8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user