Skip to content

Commit

Permalink
Added new dependency, switched ffmpeg to use libvpx-vp8 instead (#22151)
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Dancs <tdancs@redhat.com>
  • Loading branch information
ScrewTSW committed Apr 13, 2023
1 parent 01207b1 commit d1061f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/e2e/build/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ ENV DISPLAY=':20'
USER root

RUN apt-get update && apt-get install && \
apt-get install -y ftp && \
apt-get install -y ftp x11vnc ffmpeg libvpx6 && \
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - && \
apt-get install -y nodejs && \
npm install -g typescript && \
apt-get install x11vnc ffmpeg -y && \
node -v

COPY --chown=0:0 build/dockerfiles/entrypoint.sh /tmp/
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/build/dockerfiles/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ else
if [ "${SCREEN_RECORDING}" == "true" ]; then
echo "Starting ffmpeg recording..."
mkdir -p /tmp/ffmpeg_report
nohup ffmpeg -y -video_size 1920x1080 -framerate 24 -f x11grab -i :20.0 /tmp/ffmpeg_report/output.mp4 2> /tmp/ffmpeg_report/ffmpeg_err.txt > /tmp/ffmpeg_report/ffmpeg_std.txt &
nohup ffmpeg -y -video_size 1920x1080 -framerate 30 -f x11grab -i :20.0 -c:a libvpx /tmp/ffmpeg_report/output.webm 2> /tmp/ffmpeg_report/ffmpeg_err.txt > /tmp/ffmpeg_report/ffmpeg_std.txt &
ffmpeg_pid=$!
trap kill_ffmpeg 2 15
fi
Expand Down

0 comments on commit d1061f5

Please sign in to comment.