heaphub / bicodec

Dockerized opus-tools and ffmpeg with libopus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

简体中文   English

bicodec

bicodec is a basic docker image containing wkhtmltopdf, python-pdfkit, ffmpeg with libopus and the opus-tools.

Info

This image is currently only available for the amd64 architecture.

This script for installing ffmpeg with libopus and opus-tools.

The current ffmpeg version is 4.4 and opus-tools version is 0.2.

Example Usage

pdfkit.from_url('http://google.com', 'out.pdf') # external link

pdfkit.from_file('test.html', 'out.pdf') # local file

pdfkit.from_string('Hello!', 'out.pdf') # string

docker run -it --name ffmpeg-opus -v ~/media/:/media fanshilin/docker-ffmpeg-opus

docker exec -it ffmpeg-opus ffmpeg -i "/media/xxx.dts" -ac 6 -c:a libopus -b:a 768k "/media/xxx.opus"

docker exec -it ffmpeg-opus opusenc --bitrate 768 "/media/xxx.wav" "/media/xxx.opus"

License

This Dockerfile is licensed under the terms of the MIT license. For other dependencies such as opus and opus-tools, please see their relevant licenses.

About

Dockerized opus-tools and ffmpeg with libopus


Languages

Language:Shell 66.1%Language:Dockerfile 33.9%