Skip to content

Instantly share code, notes, and snippets.

View mclaughj's full-sized avatar
🎧
Jammin' out

Joe McLaughlin mclaughj

🎧
Jammin' out
View GitHub Profile
@shaps80
shaps80 / AVPlayer+Scrubbing.swift
Last active November 4, 2025 14:39
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