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