Skip to content

Commit 5448eb3

Browse files
committed
Re-encoded demo video for 420p constraint-baseline
1 parent 35ed197 commit 5448eb3

File tree

7 files changed

+32
-3
lines changed

7 files changed

+32
-3
lines changed

pkg/provider/resources/README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,41 @@
33
Source: https://pixabay.com/videos/butterfly-wing-clap-loop-color-6887/
44
License: [Pixabay license](https://pixabay.com/service/license/)
55

6-
Encoding parameters
6+
Encoding command
77

88
```shell
9-
ffmpeg -i butterfly_original.mp4 \
9+
ffmpeg -i butterfly.mp4 \
10+
-c:v libx264 -bsf:v h264_mp4toannexb \
11+
-b:v 3M -vf "scale=1920:1080, fps=30" \
12+
-profile baseline -pix_fmt yuv420p \
13+
-x264-params keyint=120 -max_delay 0 -bf 0 \
14+
butterfly_1080_3000.h264
15+
16+
ffmpeg -i butterfly.mp4 \
1017
-c:v libx264 -bsf:v h264_mp4toannexb \
1118
-b:v 2M -vf "scale=1280:720, fps=30" \
19+
-profile baseline -pix_fmt yuv420p \
1220
-x264-params keyint=120 -max_delay 0 -bf 0 \
1321
butterfly_720_2000.h264
22+
23+
ffmpeg -i butterfly.mp4 \
24+
-c:v libx264 -bsf:v h264_mp4toannexb \
25+
-b:v 800K -vf "scale=960:540, fps=25" \
26+
-profile baseline -pix_fmt yuv420p \
27+
-x264-params keyint=120 -max_delay 0 -bf 0 \
28+
butterfly_540_800.h264
29+
30+
ffmpeg -i butterfly.mp4 \
31+
-c:v libx264 -bsf:v h264_mp4toannexb \
32+
-b:v 400K -vf "scale=640:360, fps=20" \
33+
-profile baseline -pix_fmt yuv420p \
34+
-x264-params keyint=120 -max_delay 0 -bf 0 \
35+
butterfly_360_400.h264
36+
37+
ffmpeg -i butterfly.mp4 \
38+
-c:v libx264 -bsf:v h264_mp4toannexb \
39+
-b:v 150K -vf "scale=320:180, fps=15" \
40+
-profile baseline -pix_fmt yuv420p \
41+
-x264-params keyint=120 -max_delay 0 -bf 0 \
42+
butterfly_180_150.h264
1443
```
54.4 KB
Binary file not shown.
-98 Bytes
Binary file not shown.
2.37 KB
Binary file not shown.
9.05 KB
Binary file not shown.
19.3 KB
Binary file not shown.

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package livekit_cli
22

33
const (
4-
Version = "0.7.0"
4+
Version = "0.7.1"
55
)

0 commit comments

Comments
 (0)