Files
YTLitePlus/Tweaks/YouTubeHeader/YTSingleVideoController.h
2023-06-27 09:54:41 +02:00

14 lines
436 B
Objective-C

#import "MLFormat.h"
#import "YTSingleVideoControllerDelegate.h"
#import "YTSingleVideo.h"
@interface YTSingleVideoController : NSObject
@property (nonatomic, weak, readwrite) NSObject <YTSingleVideoControllerDelegate> *delegate;
- (YTSingleVideo *)singleVideo;
- (YTSingleVideo *)videoData;
- (NSArray <MLFormat *> *)selectableVideoFormats;
- (BOOL)isMuted;
- (void)playerRateDidChange:(float)rate;
- (void)setMuted:(BOOL)muted;
@end