docs/recipes.md
Here you can find many common use cases that can help you effectivize your workflow. 🏎️
You can often bind actions to hotkeys to make it faster. ⌨️
Use LosslessCut in multiple passes in order to achieve separate trimming of individual tracks:
See also #2631.
my-movie-all-segments-${String(EXPORT_COUNT).padStart(3, '0')}-${String(SEG_NUM_INT).padStart(3, '0')}${EXT}my-movie-all-segments-001-001.mp4See also #2692.
If you need to e.g. always select certain tracks, then always select certain segments.
toggleStripAll to deselect all trackstrack.codec_type === 'video' || track.codec_type === 'audio'toggleStripCurrentFilter to select only audio and video tracksdeselectAllSegments to deselect all segmentsselectSegmentsByExprsegment.label === 'My label' && segment.duration < 5 (from your clipboard)exportNow for every file you want to do this, you repeat the steps. See also #2699.