23 lines
585 B
Bash
Executable File
23 lines
585 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Bring in the variables from SOLUTION file
|
|
#
|
|
export $(grep -v '^#' SOLUTION | xargs -d '\n')
|
|
export $(grep -v '^#' MANIFEST | xargs -d '\n')
|
|
|
|
export http_proxy=http://proxy-chain.intel.com:911
|
|
export https_proxy=http://proxy-chain.intel.com:912
|
|
export no_proxy=*.intel.com
|
|
|
|
mkdir $(pwd)/media
|
|
wget -O $(pwd)/media/AUD_MW_E.264 \
|
|
https://fate-suite.libav.org/h264-conformance/AUD_MW_E.264
|
|
docker run \
|
|
--rm \
|
|
-a STDOUT \
|
|
--device=/dev/dri \
|
|
-e QSV_DEVICE=${QSV_DEVICE:-/dev/dri/renderD128} \
|
|
--volume $(pwd)/media:/media \
|
|
-it \
|
|
intel-media-ffmpeg \
|
|
test |