Skip to content

Commit

Permalink
perf(script): 添加更多的倍速选项
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Feb 26, 2024
1 parent 35b8f07 commit adf7e3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/scripts/src/utils/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ import { createRangeTooltip } from '.';
export const playbackRate: Config = {
label: '视频倍速',
tag: 'select',
options: [1, 1.25, 1.5, 1.75, 2, 3, 4, 8, 12, 16].map((rate) => [rate.toString(), rate + ' x']),
options: [1, 1.25, 1.5, 1.75, 2.25, 2.5, 2.75, 3, 3.5, 4, 4.5, 5, 6, 7, 8, 12, 16].map((rate) => [
rate.toString(),
rate + ' x'
]),
defaultValue: 1
};

Expand Down

0 comments on commit adf7e3d

Please sign in to comment.