diff --git a/src/renderer.jsx b/src/renderer.jsx index 29187b11..488c443e 100644 --- a/src/renderer.jsx +++ b/src/renderer.jsx @@ -1234,6 +1234,8 @@ const App = memo(() => { const otherFormatsMap = fromPairs(Object.entries(allOutFormats) .filter(([f]) => ![...commonFormats, detectedFileFormat].includes(f))); + const shouldShowKeyframes = neighbouringFrames.length >= 2 && (neighbouringFrames[neighbouringFrames.length - 1].time - neighbouringFrames[0].time) / durationSafe > (0.1 / zoom); + function getSegColors(seg) { if (!seg) return {}; const { color } = seg; @@ -1781,7 +1783,7 @@ const App = memo(() => { /> ))} - {mainVideoStream && neighbouringFrames.filter(f => f.keyframe).map((f) => ( + {mainVideoStream && shouldShowKeyframes && neighbouringFrames.filter(f => f.keyframe).map((f) => (
))}