https://github.com/jareware/ffmpeg
Docker-wrapper for ffmpeg from the Ubuntu Multimedia packages
https://github.com/jareware/ffmpeg
Last synced: about 1 year ago
JSON representation
Docker-wrapper for ffmpeg from the Ubuntu Multimedia packages
- Host: GitHub
- URL: https://github.com/jareware/ffmpeg
- Owner: jareware
- License: mit
- Created: 2015-07-26T17:18:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-26T17:41:23.000Z (almost 11 years ago)
- Last Synced: 2025-03-26T21:44:05.355Z (about 1 year ago)
- Homepage: https://registry.hub.docker.com/u/jareware/ffmpeg/
- Size: 129 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jareware/ffmpeg
Docker-wrapper for `ffmpeg` from the [Ubuntu Multimedia packages](https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media), with proper tags, convenient entrypoint, and one special location within the container:
* `/data`, which is the default workdir. Use `-v` to mount any data you wish to operate on there.
## Usage
Running the container without arguments gives you the usage info:
```
$ docker run -v $(pwd):/data jareware/ffmpeg
ffmpeg version N-73895-g323ec6b Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04)
...
```
One nice feature of this build is the availability of the [`vidstabdetect`](https://www.ffmpeg.org/ffmpeg-filters.html#vidstabdetect-1) and [`vidstabtransform`](https://www.ffmpeg.org/ffmpeg-filters.html#vidstabtransform-1) filters. To stabilize that shaky GoPro footage for example:
```
$ docker run -v $(pwd):/data jareware/ffmpeg -i input.mp4 -vf vidstabdetect out.mp4
$ docker run -v $(pwd):/data jareware/ffmpeg -i input.mp4 -vf vidstabtransform -y out.mp4
```
## Versioning
The tags match the wrapped ffmpeg release.
## License
MIT