16 lines
291 B
Objective-C
16 lines
291 B
Objective-C
//
|
|
// DDFFmpegManager.h
|
|
// DDFFmpegKit_Private_Example
|
|
// Created by DDIsFriend on 2023/1/11.
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDFFmpegManager : NSObject
|
|
+ (BOOL)transcodeWithCommands:(nonnull NSArray *)commands;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|