mirror of
https://github.com/samsonjs/SJSAssetExportSession.git
synced 2026-04-03 09:55:49 +00:00
14 lines
282 B
Swift
14 lines
282 B
Swift
//
|
|
// CMTime+seconds.swift
|
|
// SJSAssetExportSession
|
|
//
|
|
// Created by Sami Samhuri on 2024-07-07.
|
|
//
|
|
|
|
public import CoreMedia
|
|
|
|
public extension CMTime {
|
|
static func seconds(_ seconds: TimeInterval) -> CMTime {
|
|
CMTime(seconds: seconds, preferredTimescale: 600)
|
|
}
|
|
}
|