Skip to content

Commit 60123a2

Browse files
committed
chore: update demo screenshots for Android 16 (Baklava)
Signed-off-by: iusmac <iusico.maxim@libero.it>
1 parent 2cb1f55 commit 60123a2

6 files changed

Lines changed: 27 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ If you're a normal user willing to give it a try, see [Installation](#installati
2727

2828
##### Screenshots
2929
<p>
30-
<img src="images/home-a13-dark.jpg" width="200" alt="Home A13 Dark Screenshot" />
31-
<img src="images/scheduler-a14-light.gif" width="200" alt="Scheduler A14 Light Screencast" />
30+
<img src="images/home-a16-light.png" width="200" alt="Home A16 Light Screenshot" />
31+
<img src="images/scheduler-a16-dark.gif" width="200" alt="Scheduler A16 Dark Screencast" />
3232
<img src="images/home-a10-light.jpg" width="200" alt="Home A10 Light Screenshot" />
3333
<img src="images/scheduler-a10-dark.gif" width="200" alt="Scheduler A10 Dark Screencast" />
3434
</p>

images/gen_gif.sh

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env bash
2+
3+
# Generate GIFs of a screen recording preserving visual quality.
4+
#
5+
# Get gifski at https://github.com/ImageOptim/gifski
6+
7+
input="${1:-screen.mp4}"
8+
output="${2:-anim.gif}"
9+
# Desired GIF FPS
10+
declare -i fps="${3:-50}"
11+
# Include at most N frames
12+
declare -i max_frames="${4:-620}"
13+
14+
ffmpeg \
15+
-i "$input" \
16+
-vf fps=$fps,select="lte(n\, $max_frames)" \
17+
-f yuv4mpegpipe - | \
18+
gifski \
19+
-o "$output" \
20+
--fps $fps \
21+
--lossy-quality 70 \
22+
--motion-quality 80 \
23+
--quality 80 \
24+
--width 720 \
25+
--height 1280 -

images/home-a13-dark.jpg

-44 KB
Binary file not shown.

images/home-a16-light.png

28.2 KB
Loading

images/scheduler-a14-light.gif

-2.44 MB
Binary file not shown.

images/scheduler-a16-dark.gif

3.19 MB
Loading

0 commit comments

Comments
 (0)