@eclipse-che/che-e2e 7.64.0-dev-01207b1 → 7.64.0-dev-d1061f5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,11 +5,10 @@ ENV DISPLAY=':20'
5
5
  USER root
6
6
 
7
7
  RUN apt-get update && apt-get install && \
8
- apt-get install -y ftp && \
8
+ apt-get install -y ftp x11vnc ffmpeg libvpx6 && \
9
9
  curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash - && \
10
10
  apt-get install -y nodejs && \
11
11
  npm install -g typescript && \
12
- apt-get install x11vnc ffmpeg -y && \
13
12
  node -v
14
13
 
15
14
  COPY --chown=0:0 build/dockerfiles/entrypoint.sh /tmp/
@@ -98,7 +98,7 @@ else
98
98
  if [ "${SCREEN_RECORDING}" == "true" ]; then
99
99
  echo "Starting ffmpeg recording..."
100
100
  mkdir -p /tmp/ffmpeg_report
101
- 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 &
101
+ 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 &
102
102
  ffmpeg_pid=$!
103
103
  trap kill_ffmpeg 2 15
104
104
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-che/che-e2e",
3
- "version": "7.64.0-dev-01207b1",
3
+ "version": "7.64.0-dev-d1061f5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {