mirror of
https://github.com/yattee/yattee.git
synced 2025-01-06 01:20:31 +05:30
13 lines
375 B
Swift
13 lines
375 B
Swift
import AVFoundation
|
|
import Foundation
|
|
|
|
final class MuxedStream: Stream {
|
|
var muxedAsset: AVURLAsset
|
|
|
|
init(muxedAsset: AVURLAsset, resolution: StreamResolution, type: StreamType, encoding: String) {
|
|
self.muxedAsset = muxedAsset
|
|
|
|
super.init(audioAsset: muxedAsset, videoAsset: muxedAsset, resolution: resolution, type: type, encoding: encoding)
|
|
}
|
|
}
|