mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
13 lines
356 B
Swift
13 lines
356 B
Swift
import AVFoundation
|
|
import Foundation
|
|
|
|
final class SingleAssetStream: Stream {
|
|
var avAsset: AVURLAsset
|
|
|
|
init(avAsset: AVURLAsset, resolution: Resolution, kind: Kind, encoding: String = "") {
|
|
self.avAsset = avAsset
|
|
|
|
super.init(audioAsset: avAsset, videoAsset: avAsset, resolution: resolution, kind: kind, encoding: encoding)
|
|
}
|
|
}
|