mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-16 11:37:34 +02:00
23 lines
474 B
Markdown
23 lines
474 B
Markdown
ffmpeg
|
|
======
|
|
|
|
![](https://badge.imagelayers.io/vimagick/ffmpeg:latest.svg)
|
|
|
|
[FFmpeg][1] is a complete, cross-platform solution to record, convert and stream audio and video.
|
|
|
|
## Tutorial
|
|
|
|
```bash
|
|
# 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
|
|
```
|
|
|
|
## Todo List
|
|
|
|
- [ ] Re-compile with fontconfig/freetype enabled to support text overlay.
|
|
|
|
[1]: http://ffmpeg.org/
|