mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
10 lines
234 B
Swift
10 lines
234 B
Swift
import AVFoundation
|
|
import CoreMedia
|
|
import Foundation
|
|
|
|
extension AVAudioTime {
|
|
package func makeTime() -> CMTime {
|
|
return .init(seconds: AVAudioTime.seconds(forHostTime: hostTime), preferredTimescale: 1000000000)
|
|
}
|
|
}
|