1
0

Updated README.md to mention how to get eoan images

Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
This commit is contained in:
James Ketrenos 2019-11-21 20:38:03 -08:00
parent df40ff5f5f
commit 688c169942

View File

@ -1,17 +1,22 @@
# Intel Media FFMPEG Transcode Container # Intel Media FFMPEG Transcode Container
This project hosts a container demonstrating the use of ffmpeg This project hosts a container demonstrating the use of ffmpeg using GPU
using GPU offload for transcode operations. offload for transcode operations.
The Dockerfile itself is constructed from templates/* and Dockerfile.solution, The Dockerfile itself is constructed from templates/* and
and provides a multi-stage Docker container with the final container Dockerfile.solution, and provides a multi-stage Docker container with
being a minimal run-time installation on top of the base OS. the final container being a minimal run-time installation on top of the
base OS.
# Usage examples # Usage examples
## Getting the container ## Getting the container
You can pull the container from Harbor: You can get the intel-media-ffmpeg container by either building it
yourself from the Dockerfile, or by pulling a pre-built image from
Intel's Harbor instance.
### Pull from Harbor
```bash ```bash
export OS_DISTRO=ubuntu export OS_DISTRO=ubuntu
@ -23,11 +28,16 @@ docker tag amr-registry.caas.intel.com/vtt-osgc/solutions/intel-media-ffmpeg:${T
### Build Ubuntu container ### Build Ubuntu container
NOTE: Ubuntu 19.10 eoan packages have not been pushed to
repositories.intel.com yet. 'PACKAGE_REPOSITORY' is set to
osgc.jf.intel.com/internal below until the packages are published (by
end of November'19)
```bash ```bash
export OS_DISTRO=ubuntu export OS_DISTRO=ubuntu
export OS_RELEASE=eoan export OS_RELEASE=eoan
export PACKAGE_STREAM=eoan export PACKAGE_STREAM=eoan
export PACKAGE_REPOSITORY=https://repositories.intel.com/graphics export PACKAGE_REPOSITORY=https://osgc.jf.intel.com/internal
export TAG=test-build-${OS_DISTRO}-${PACKAGE_STREAM}-$(date +%Y%m%d) export TAG=test-build-${OS_DISTRO}-${PACKAGE_STREAM}-$(date +%Y%m%d)
scripts/build-dockerfile.sh scripts/build-dockerfile.sh
scripts/build-image.sh scripts/build-image.sh