diff --git a/src/renderer/src/components/Settings.tsx b/src/renderer/src/components/Settings.tsx
index 37b957cf..26601963 100644
--- a/src/renderer/src/components/Settings.tsx
+++ b/src/renderer/src/components/Settings.tsx
@@ -287,12 +287,12 @@ function Settings({
{keyframeCut ? (
<>
{t('Keyframe cut')}: {t('Cut at the preceding keyframe (not accurate time.) Equiv to')}:
- ffmpeg -ss -i input.mp4
+ ffmpeg -ss N -i input.mp4
>
) : (
<>
{t('Normal cut')}: {t('Accurate time but could leave an empty portion at the beginning of the video. Equiv to')}:
- ffmpeg -i -ss input.mp4
+ ffmpeg -i input -ss N
>
)}