Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoirint/ffmpeg-docker
最新のFFmpegを使うためのDockerイメージ
https://github.com/aoirint/ffmpeg-docker
Last synced: about 1 month ago
JSON representation
最新のFFmpegを使うためのDockerイメージ
- Host: GitHub
- URL: https://github.com/aoirint/ffmpeg-docker
- Owner: aoirint
- License: unlicense
- Created: 2020-09-18T17:51:37.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T23:14:11.000Z (5 months ago)
- Last Synced: 2024-07-28T00:23:58.827Z (5 months ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/aoirint/ffmpeg
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ffmpeg-docker
最新のffmpegを使うためのDockerイメージ-
|tag|description|
|:--|:--|
|`ffmpeg`|(same as `ffmpeg:ubuntu`)|
|`ffmpeg:ubuntu-*`|通常版|
|`ffmpeg:nvidia-*`|NVIDIA GPU ハードウェアコーデック対応版|
|`ffmpeg:ubuntu-aoirint-*`|aoirint Fork版|- Docker Hub:
## 用例
### 通常版
```shell
docker pull aoirint/ffmpeg:ubuntu-latestdocker run --rm aoirint/ffmpeg:ubuntu-latest -help
docker run --rm aoirint/ffmpeg:ubuntu-latest -formats
docker run --rm aoirint/ffmpeg:ubuntu-latest -encoders
docker run --rm aoirint/ffmpeg:ubuntu-latest -decoders
```### NVIDIA GPU ハードウェアコーデック対応版
```shell
docker pull aoirint/ffmpeg:nvidia-latestdocker run --rm --gpus all,capabilities=video aoirint/ffmpeg:nvidia-latest -help
docker run --rm --gpus all,capabilities=video aoirint/ffmpeg:nvidia-latest -formats
docker run --rm --gpus all,capabilities=video aoirint/ffmpeg:nvidia-latest -encoders
docker run --rm --gpus all,capabilities=video aoirint/ffmpeg:nvidia-latest -decoders
```### aoirint Fork版
[aoirint/FFmpeg](https://github.com/aoirint/FFmpeg)でメンテナンスしているFork版。
```shell
docker pull aoirint/ffmpeg:ubuntu-aoirint-latestdocker run --rm aoirint/ffmpeg:ubuntu-aoirint-latest -help
docker run --rm aoirint/ffmpeg:ubuntu-aoirint-latest -formats
docker run --rm aoirint/ffmpeg:ubuntu-aoirint-latest -encoders
docker run --rm aoirint/ffmpeg:ubuntu-aoirint-latest -decoders
```