-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from HeraShowFeng/master
release v1.3.0
- Loading branch information
Showing
48 changed files
with
1,293 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# PLShortVideoKit 1.2.1 to 1.3.0 API Differences | ||
|
||
## General Headers | ||
|
||
``` | ||
PLShortVideoRecorder.h | ||
``` | ||
|
||
- *Added* @property (assign, nonatomic) BOOL adaptationRecording; | ||
- *Added* @property (copy, nonatomic) void(^ _Nullable deviceOrientationBlock)(PLSPreviewOrientation deviceOrientation); | ||
|
||
|
||
- *Added* class `PLSGifComposer` | ||
|
||
|
||
``` | ||
PLSEditorPlayer.h | ||
``` | ||
|
||
- *Added* + (PLSEditPlayer *_Nullable)audioPlayer; | ||
|
||
|
||
``` | ||
PLSFilter.h | ||
``` | ||
|
||
- *Added* @property (strong, nonatomic) NSString *colorImagePath; | ||
- *Added* - (instancetype)init; | ||
|
||
|
||
``` | ||
PLSTypeDefines.h | ||
``` | ||
|
||
- *Added* typedef NS_ENUM(NSInteger, PLSPreviewOrientation) { | ||
PLSPreviewOrientationPortrait = 1, | ||
PLSPreviewOrientationPortraitUpsideDown = 2, | ||
PLSPreviewOrientationLandscapeRight = 3, | ||
PLSPreviewOrientationLandscapeLeft = 4, | ||
}; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// GifFormatViewController.h | ||
// PLShortVideoKitDemo | ||
// | ||
// Created by 冯文秀 on 2017/7/31. | ||
// Copyright © 2017年 Pili Engineering, Qiniu Inc. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
#import <Foundation/Foundation.h> | ||
#import <AVFoundation/AVFoundation.h> | ||
|
||
@interface GifFormatViewController : UIViewController | ||
|
||
@property (strong, nonatomic) AVAsset *asset; | ||
|
||
@end |
Oops, something went wrong.