diff --git a/README.md b/README.md index 598741c..34d8b97 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,22 @@ # Intel Media FFMPEG Transcode Container -This project hosts a container demonstrating the use of ffmpeg -using GPU offload for transcode operations. +This project hosts a container demonstrating the use of ffmpeg using GPU +offload for transcode operations. -The Dockerfile itself is constructed from templates/* and Dockerfile.solution, -and provides a multi-stage Docker container with the final container -being a minimal run-time installation on top of the base OS. +The Dockerfile itself is constructed from templates/* and +Dockerfile.solution, and provides a multi-stage Docker container with +the final container being a minimal run-time installation on top of the +base OS. # Usage examples ## 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 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 +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 export OS_DISTRO=ubuntu export OS_RELEASE=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) scripts/build-dockerfile.sh scripts/build-image.sh