Zooming / scrubbing
Fine scrubbing
Thumbnails
Look into this code:
await execa('ffmpeg', [
'-skip_frame', 'nokey', // only keyframes. much faster
'-i', inputPath,
// but only 1 keyframe every `interval`
'-vf', `fps=1/${interval},${getScaleFilter(qualityParameters.video.totalPixels)}`,
'-vsync', 'vfr',
'-q:v', quality, // 1 = best quality, largest file, 31 = worst quality, smallest file. Typical good values: 2–5
'-frames:v', String(maxFrames),
outputPath,
]);
Batch list preview
Multi-timelines
As one can easily click on a segment, is there need for the next/previous buttons under timeline? Or can those buttons be moved under the seek buttons, together with start/end set and Add new segment, like this
[Add] [<-] [->] [Prev] [Next] [Discard] (from Segment panel and timeline improvements #432)
Zooming / scrubbing
Fine scrubbing
Thumbnails
Look into this code:
Batch list preview
Multi-timelines
.llcprojects visible at the same time on the timeline (for a single media file), and be able to move segments between timelines Multiple segment timelines for different cuts, or other purpose like chapters, subtitles.. #2097