Skip to content

Commit 8d87b2f

Browse files
committed
Extend clip lookback window to 15 minutes
- Increase the VOD clip lookback from 10 to 15 minutes - Preserves a longer history for clip creation
1 parent 32c3554 commit 8d87b2f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/(core)/v/[slug]/player.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const initializePlayer = (
209209

210210
// Number of seconds to pad on each side of exported CSV
211211
const EXPORT_BUFFER = 10;
212-
const CLIP_LOOKBACK_SECONDS = 10 * 60;
212+
const CLIP_LOOKBACK_SECONDS = 15 * 60;
213213

214214
export const VodPlayer = (props: { id: string; vod: VOD }) => {
215215
const [player, setPlayer] = useState<Player | null>(null);

0 commit comments

Comments
 (0)