Skip to content

Instantly share code, notes, and snippets.

View mclaughj's full-sized avatar

Joseph McLaughlin mclaughj

View GitHub Profile
@shaps80
shaps80 / AVPlayer+Scrubbing.swift
Last active April 16, 2025 18:08
Enables smooth frame-by-frame scrubbing (in both directions) – similar to Apple's applications.
public enum Direction {
case forward
case backward
}
internal var player: AVPlayer?
private var isSeekInProgress = false
private var chaseTime = kCMTimeZero
private var preferredFrameRate: Float = 23.98