ai-tube-clap-exporter / src /core /utils /startOfSegment1IsWithinSegment2.mts
jbilcke-hf's picture
jbilcke-hf HF staff
another step for the Stories Factory (mp4 generation)
46fcec6
raw
history blame
261 Bytes
import { ClapSegment } from "../clap/types.mts";
export function startOfSegment1IsWithinSegment2(s1: ClapSegment, s2: ClapSegment) {
const startOfSegment1 = s1.startTimeInMs
return s2.startTimeInMs <= startOfSegment1 && startOfSegment1 <= s2.endTimeInMs
}