iOS 上傳相冊視頻

最近在重構(gòu)自己寫的代碼逛裤,項(xiàng)目中需要將相冊中的視頻上傳到云服務(wù)器踩身。做個(gè)總結(jié)吐句。
使用UIImagePickerController獲取相冊的視頻嗦枢,研究發(fā)現(xiàn),獲取后的視頻是經(jīng)過壓縮的侣诺,經(jīng)測試如果一個(gè)3M的視頻經(jīng)過壓縮后會(huì)變成1.3M.如果你們服務(wù)器需要的正是經(jīng)過壓縮的年鸳,那么恭喜你,不用走那么多彎路了彼棍。我這邊恰好需要的是不經(jīng)過壓縮的視頻膳算,然后網(wǎng)上找了很多方法涕蜂,發(fā)現(xiàn)要獲取相冊中的視頻是必須經(jīng)過壓縮的(如果你有獲取相冊原生視頻的方法請?jiān)谙路搅粞愿嬖V我,萬分感謝J菡妗)诸尽,既然不讓獲取原生的印颤,那么只能退而求其次, ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibraryshi;(這個(gè)方法呢有個(gè)問題,就是如果視頻的分辨率小于手機(jī)的分辨率际看,視頻會(huì)變大仲闽,一般3M會(huì)變成10.3M,有多大自己體會(huì)~)設(shè)置視頻的導(dǎo)出質(zhì)量為高質(zhì)量僵朗。

 UIImagePickerController *ipc=[[UIImagePickerController alloc] init];
        ipc=[[UIImagePickerController alloc] init];
        ipc.delegate=self;
        ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        ipc.videoQuality = UIImagePickerControllerQualityTypeMedium;
        ipc.mediaTypes = [NSArray arrayWithObjects:@"public.movie", nil];

一般呢验庙,我們會(huì)在didFinishPickingMediaWithInfo代理方法中獲取視頻路徑粪薛。
這個(gè)時(shí)候我們得出的是臨時(shí)路徑,不能是指作為視頻路徑直接上傳湃交,我再模擬器下截取了這個(gè)臨時(shí)路徑,如圖:


temp.jpeg

我們需要把原視頻導(dǎo)出到自己的APP內(nèi)痛阻,而后根據(jù)這個(gè)路徑進(jìn)行上傳即可阱当。
導(dǎo)出的方法也有兩種:
一是根據(jù)路徑直接拷貝弊添,二是進(jìn)行視頻導(dǎo)出捌木,第二中方式可以對視頻進(jìn)行進(jìn)一步壓縮〕喝Γ可以根據(jù)自己的項(xiàng)目需求選擇瞬女。
代碼如下(ViewController頁面全部代碼):


#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface ViewController ()<UIImagePickerControllerDelegate,UINavigationControllerDelegate,UITextViewDelegate>
@property (weak, nonatomic) IBOutlet UIImageView *videoImageView;
@property (weak, nonatomic) IBOutlet UILabel *videoMessageLabel;
@property (nonatomic,assign)BOOL isImagePicker;
@property (nonatomic,strong)NSString *filePath;
@property (nonatomic,strong)NSString *imagePath;
@property (nonatomic,strong)NSString *pingUploadUrlString;
@property (nonatomic,assign)NSInteger timeSecond;
@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    NSLog(@"%@",NSHomeDirectory());
}
- (IBAction)getVideo:(UIButton *)sender
{
    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary])
    {
        UIImagePickerController *ipc=[[UIImagePickerController alloc] init];
        ipc=[[UIImagePickerController alloc] init];
        ipc.delegate=self;
        ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        ipc.videoQuality = UIImagePickerControllerQualityTypeMedium;
        ipc.mediaTypes = [NSArray arrayWithObjects:@"public.movie", nil];
        [self presentViewController:ipc animated:YES completion:nil];
        _isImagePicker = YES;
    }
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
    if ([mediaType isEqualToString:@"public.movie"])
    {
        NSURL *videoUrl = [info objectForKey:UIImagePickerControllerMediaURL];
        AVURLAsset *asset = [AVURLAsset assetWithURL:videoUrl];
        NSString  *videoPath =  info[UIImagePickerControllerMediaURL];
        
        NSLog(@"相冊視頻路徑是:%@",videoPath);
        
        
        //第一中方法,通過路徑直接copy
        
//        //刪除原來的 防止重復(fù)選
//                [[NSFileManager defaultManager] removeItemAtPath:_filePath error:nil];
//                [[NSFileManager defaultManager] removeItemAtPath:_imagePath error:nil];
//                NSDateFormatter *formater = [[NSDateFormatter alloc] init];
//                [formater setDateFormat:@"yy-MM-dd-HH:mm:ss"];
//
//                _filePath = [NSHomeDirectory() stringByAppendingFormat:@"/Documents/%@", [[formater stringFromDate:[NSDate date]] stringByAppendingString:@".mp4"]];
//
//
//                NSString  *videoPath =  info[UIImagePickerControllerMediaURL];
//
//                NSFileManager *fileManager = [NSFileManager defaultManager];
//
//                NSError *error;
//                [fileManager copyItemAtPath:videoPath toPath:_filePath error:&error];
//                if (error)
//                {
//
//                    NSLog(@"文件保存到緩存失敗");
//                }
//
//                [self getSomeMessageWithFilePath:_filePath];
        
        
        //第二種方法报慕,進(jìn)行視頻導(dǎo)出
                [self startExportVideoWithVideoAsset:asset completion:^(NSString *outputPath) {
        
                    [self getSomeMessageWithFilePath:_filePath];
        
                }];;
        
        
        
    }
    _isImagePicker = NO;
    [picker dismissViewControllerAnimated:YES completion:nil];
}
//獲取視頻第一幀
- (void)getSomeMessageWithFilePath:(NSString *)filePath
{
    
    
    NSURL *fileUrl = [NSURL fileURLWithPath:filePath];
    
    AVURLAsset *asset = [AVURLAsset assetWithURL:fileUrl];
    
    
    NSString *duration = [NSString stringWithFormat:@"%0.0f", ceil(CMTimeGetSeconds(asset.duration))];
    _videoImageView.image = [self getImageWithAsset:asset];
//    _image = _imageView.image;
    _timeSecond = duration.integerValue;
    _videoMessageLabel.text = [NSString stringWithFormat:@"時(shí)長是:%ld",(long)_timeSecond];
    NSLog(@"時(shí)長是:%@",duration);
}

- (UIImage *)getImageWithAsset:(AVAsset *)asset
{
    AVURLAsset *assetUrl = (AVURLAsset *)asset;
    NSParameterAssert(assetUrl);
    AVAssetImageGenerator *assetImageGenerator =[[AVAssetImageGenerator alloc] initWithAsset:assetUrl];
    assetImageGenerator.appliesPreferredTrackTransform = YES;
    assetImageGenerator.apertureMode = AVAssetImageGeneratorApertureModeEncodedPixels;
    
    CGImageRef thumbnailImageRef = NULL;
    CFTimeInterval thumbnailImageTime = 0;
    NSError *thumbnailImageGenerationError = nil;
    thumbnailImageRef = [assetImageGenerator copyCGImageAtTime:CMTimeMake(thumbnailImageTime, 60)actualTime:NULL error:&thumbnailImageGenerationError];
    
    if(!thumbnailImageRef)
        NSLog(@"thumbnailImageGenerationError %@",thumbnailImageGenerationError);
    
    UIImage *thumbnailImage = thumbnailImageRef ? [[UIImage alloc]initWithCGImage: thumbnailImageRef] : nil;
    
    return thumbnailImage;
}

- (void)startExportVideoWithVideoAsset:(AVURLAsset *)videoAsset completion:(void (^)(NSString *outputPath))completion
{
    // Find compatible presets by video asset.
    NSArray *presets = [AVAssetExportSession exportPresetsCompatibleWithAsset:videoAsset];
    
    NSString *pre = nil;
    
    if ([presets containsObject:AVAssetExportPreset3840x2160])
    {
        pre = AVAssetExportPreset3840x2160;
    }
    else if([presets containsObject:AVAssetExportPreset1920x1080])
    {
        pre = AVAssetExportPreset1920x1080;
    }
    else if([presets containsObject:AVAssetExportPreset1280x720])
    {
        pre = AVAssetExportPreset1280x720;
    }
    else if([presets containsObject:AVAssetExportPreset960x540])
    {
        pre = AVAssetExportPreset1280x720;
    }
    else
    {
        pre = AVAssetExportPreset640x480;
    }
    
    // Begin to compress video
    // Now we just compress to low resolution if it supports
    // If you need to upload to the server, but server does't support to upload by streaming,
    // You can compress the resolution to lower. Or you can support more higher resolution.
    if ([presets containsObject:AVAssetExportPreset640x480]) {
        //        AVAssetExportSession *session = [[AVAssetExportSession alloc]initWithAsset:videoAsset presetName:AVAssetExportPreset640x480];
        AVAssetExportSession *session = [[AVAssetExportSession alloc]initWithAsset:videoAsset presetName:AVAssetExportPreset640x480];
        
        NSDateFormatter *formater = [[NSDateFormatter alloc] init];
        [formater setDateFormat:@"yy-MM-dd-HH:mm:ss"];
        
        NSString *outputPath = [NSHomeDirectory() stringByAppendingFormat:@"/Documents/%@", [[formater stringFromDate:[NSDate date]] stringByAppendingString:@".mov"]];
        NSLog(@"video outputPath = %@",outputPath);
        //刪除原來的 防止重復(fù)選
        _timeSecond = 0;
        [[NSFileManager defaultManager] removeItemAtPath:_filePath error:nil];
        [[NSFileManager defaultManager] removeItemAtPath:_imagePath error:nil];
        
        _filePath = outputPath;
        session.outputURL = [NSURL fileURLWithPath:outputPath];
        
        // Optimize for network use.
        session.shouldOptimizeForNetworkUse = true;
        
        NSArray *supportedTypeArray = session.supportedFileTypes;
        if ([supportedTypeArray containsObject:AVFileTypeMPEG4]) {
            session.outputFileType = AVFileTypeMPEG4;
        } else if (supportedTypeArray.count == 0) {
            NSLog(@"No supported file types 視頻類型暫不支持導(dǎo)出");
            return;
        } else {
            session.outputFileType = [supportedTypeArray objectAtIndex:0];
        }
        
        if (![[NSFileManager defaultManager] fileExistsAtPath:[NSHomeDirectory() stringByAppendingFormat:@"/Documents"]]) {
            [[NSFileManager defaultManager] createDirectoryAtPath:[NSHomeDirectory() stringByAppendingFormat:@"/Documents"] withIntermediateDirectories:YES attributes:nil error:nil];
        }
        
        if ([[NSFileManager defaultManager] fileExistsAtPath:outputPath]) {
            [[NSFileManager defaultManager] removeItemAtPath:outputPath error:nil];
        }
        
        // Begin to export video to the output path asynchronously.
        [session exportAsynchronouslyWithCompletionHandler:^(void) {
            switch (session.status) {
                case AVAssetExportSessionStatusUnknown:
                    NSLog(@"AVAssetExportSessionStatusUnknown"); break;
                case AVAssetExportSessionStatusWaiting:
                    NSLog(@"AVAssetExportSessionStatusWaiting"); break;
                case AVAssetExportSessionStatusExporting:
                    NSLog(@"AVAssetExportSessionStatusExporting"); break;
                case AVAssetExportSessionStatusCompleted: {
                    NSLog(@"AVAssetExportSessionStatusCompleted");
                    dispatch_async(dispatch_get_main_queue(), ^{
                        if (completion) {
                            completion(outputPath);
                        }
                        //                        _videoArray = [VRVideoTool getAllFileNameFormDoucuments];
                        //                        [_tableView reloadData];
                        
                    });
                }  break;
                case AVAssetExportSessionStatusFailed:
                    NSLog(@"AVAssetExportSessionStatusFailed"); break;
                default: break;
            }
        }];
    }
}


@end

獲取視頻第一幀圖片的原理是通過視頻路徑獲取視頻的AVURLAsset,通過對AVURLAsset進(jìn)行處理可以獲得視頻的一些信息,例如時(shí)長宫患,第一幀圖片等这弧。上面代碼里面有虚汛,不再贅述卷哩。
如果你有更好的獲取相冊視頻的方法属拾,請?jiān)谙路搅粞愿嬷獈~。
DEMO地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市纯衍,隨后出現(xiàn)的幾起案子襟诸,更是在濱河造成了極大的恐慌歌亲,老刑警劉巖应结,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)蜗搔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瞎饲,“玉大人嗅战,你說我怎么就攤上這事驮捍∏Υ牵” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長囤踩。 經(jīng)常有香客問我堵漱,道長,這世上最難降的妖魔是什么示惊? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任米罚,我火速辦了婚禮丈探,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘隘竭。我一直安慰自己讼渊,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布赋兵。 她就那樣靜靜地躺著搔预,像睡著了一般叶组。 火紅的嫁衣襯著肌膚如雪甩十。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天鸭轮,我揣著相機(jī)與錄音窃爷,去河邊找鬼姓蜂。 笑死,一個(gè)胖子當(dāng)著我的面吹牛钱慢,可吹牛的內(nèi)容都是我干的逮京。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼束莫,長吁一口氣:“原來是場噩夢啊……” “哼懒棉!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起览绿,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤策严,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后挟裂,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體享钞,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年栗竖,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片渠啤。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡狐肢,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出沥曹,到底是詐尸還是另有隱情份名,我是刑警寧澤碟联,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站僵腺,受9級特大地震影響鲤孵,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜辰如,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一普监、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧琉兜,春花似錦凯正、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至梧疲,卻和暖如春允睹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背往声。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工擂找, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人浩销。 一個(gè)月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓贯涎,卻偏偏與公主長得像,于是被迫代替她去往敵國和親慢洋。 傳聞我的和親對象是個(gè)殘疾皇子塘雳,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容