mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 06:10:32 +05:30
13 lines
351 B
Swift
13 lines
351 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)
|
||
|
}
|
||
|
}
|