圖片和視頻的上傳

#pragma mark - 獲取當(dāng)前時(shí)間

- (NSString *)getCurrentTime{

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

NSString *dateTime = [formatter stringFromDate:[NSDate date]];

//? ? NSString *str = [NSString stringWithFormat:@"%@mdxx",dateTime];

//? ? NSString *tokenStr = [str stringToMD5:str];

return dateTime;

}

#pragma mark - 視頻壓縮

/**

*? 視頻壓縮

*

*? @param url 視頻文件的url

*

*? @return 壓縮后的url

*/

- (NSURL *)condenseVideoNewUrl: (NSURL *)url{

// 沙盒目錄

NSString *docuPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];

NSString *destFilePath = [docuPath stringByAppendingPathComponent:[NSString stringWithFormat:@"lyh%@.MOV",[self getCurrentTime]]];

NSURL *destUrl = [NSURL fileURLWithPath:destFilePath];

//將視頻文件copy到沙盒目錄中

NSFileManager *manager = [NSFileManager defaultManager];

NSError *error = nil;

[manager copyItemAtURL:url toURL:destUrl error:&error];

NSLog(@"壓縮前--%.2fk",[self getFileSize:destFilePath]);

// 播放視頻

/*

NSURL *videoURL = [NSURL fileURLWithPath:destFilePath];

AVPlayer *player = [AVPlayer playerWithURL:videoURL];

AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];

playerLayer.frame = self.view.bounds;

[self.view.layer addSublayer:playerLayer];

[player play];

*/

// 進(jìn)行壓縮

AVAsset *asset = [AVAsset assetWithURL:destUrl];

//創(chuàng)建視頻資源導(dǎo)出會(huì)話

/**

NSString *const AVAssetExportPresetLowQuality; // 低質(zhì)量

NSString *const AVAssetExportPresetMediumQuality;

NSString *const AVAssetExportPresetHighestQuality; //高質(zhì)量

*/

AVAssetExportSession *session = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetLowQuality];

// 創(chuàng)建導(dǎo)出的url

NSString *resultPath = [docuPath stringByAppendingPathComponent:[NSString stringWithFormat:@"lyhg%@.MOV",[self getCurrentTime]]];

session.outputURL = [NSURL fileURLWithPath:resultPath];

// 必須配置輸出屬性

session.outputFileType = @"com.apple.quicktime-movie";

// 導(dǎo)出視頻

[session exportAsynchronouslyWithCompletionHandler:^{

NSLog(@"壓縮后---%.2fk",[self getFileSize:resultPath]);

NSLog(@"視頻導(dǎo)出完成");

}];

return session.outputURL;

}

// 獲取視頻的大小

- (CGFloat) getFileSize:(NSString *)path

{

NSFileManager *fileManager = [[NSFileManager alloc] init] ;

float filesize = -1.0;

if ([fileManager fileExistsAtPath:path]) {

NSDictionary *fileDic = [fileManager attributesOfItemAtPath:path error:nil];//獲取文件的屬性

unsigned long long size = [[fileDic objectForKey:NSFileSize] longLongValue];

filesize = 1.0*size/1024;

}

return filesize;

}

#pragma mark - Picker delgate- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary*)info {

NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];

if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {

NSLog(@"選取的是照片");

//? ? ? ? self.imageView.image = info[UIImagePickerControllerEditedImage];

// 壓縮圖片

NSData *fileData = UIImageJPEGRepresentation(info[UIImagePickerControllerEditedImage], 0.5);

//保存到Documents

NSString *imageStr = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];

NSString *imageFile = [imageStr stringByAppendingPathComponent:@"image.jpg"];

NSLog(@"%@",imageFile);

[fileData writeToFile:imageFile atomically:YES];

//保存至相冊(cè)

UIImageWriteToSavedPhotosAlbum(info[UIImagePickerControllerEditedImage], self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

// 上傳圖片

NSDictionary *dict = @{@"mem_id":@"600209"};

[AFNetworkTool upLoadToUrlString:@"http://www.baidu.com" parameters:dict fileData:fileData name:@"photo" fileName:@"abc.jpg" mimeType:@"image/jpeg" response:JSON progress:^(NSProgress *uploadProgress) {

} success:^(NSURLSessionDataTask *task, id responseObject) {

NSLog(@"success:%@ %@",responseObject, [responseObject objectForKey:@"msg"]);

} failure:^(NSURLSessionDataTask *task, NSError *error) {

NSLog(@"%@",error);

}];

}else{

// 如果是視頻

NSURL *url = info[UIImagePickerControllerMediaURL];

// 獲取視頻總時(shí)長(zhǎng)

CGFloat lengthTime = [self getVideoLength:url];

NSLog(@"%f",lengthTime);

// 保存視頻至相冊(cè) (異步線程)

NSString *urlStr = [url path];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(urlStr)) {

UISaveVideoAtPathToSavedPhotosAlbum(urlStr, self, @selector(video:didFinishSavingWithError:contextInfo:), nil);

}

});

//壓縮視頻

NSData *videoData = [NSData dataWithContentsOfURL:[self condenseVideoNewUrl:url]];

//視頻上傳

if (lengthTime >10.0f) {

NSLog(@"文件過大只允許上傳10s視頻");

}else {

NSDictionary *dict = @{@"username":@"syl"};

[AFNetworkTool upLoadToUrlString:@"http://www.baidu.com" parameters:dict fileData:videoData name:@"file" fileName:@"video.mov" mimeType:@"video/quicktime" response:JSON progress:^(NSProgress *uploadProgress) {

} success:^(NSURLSessionDataTask *task, id responseObject) {

NSLog(@"上傳成功%@",responseObject);

} failure:^(NSURLSessionDataTask *task, NSError *error) {

NSLog(@"%@",error);

}];

}

}

[self dismissViewControllerAnimated:YES completion:nil];

}

// 獲取視頻時(shí)間

- (CGFloat) getVideoLength:(NSURL *)URL

{

AVURLAsset *avUrl = [AVURLAsset assetWithURL:URL];

CMTime time = [avUrl duration];

int second = ceil(time.value/time.timescale);

return second;

}

#pragma mark 圖片保存完畢的回調(diào)

- (void) image: (UIImage *) image didFinishSavingWithError:(NSError *) error contextInfo: (void *)contextIn {

NSLog(@"照片保存成功");

}

#pragma mark 視頻保存完畢的回調(diào)

- (void)video:(NSString *)videoPath didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextIn {

if (error) {

NSLog(@"保存視頻過程中發(fā)生錯(cuò)誤,錯(cuò)誤信息:%@",error.localizedDescription);

}else{

NSLog(@"視頻保存成功.");

}

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末阐虚,一起剝皮案震驚了整個(gè)濱河市序臂,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌实束,老刑警劉巖奥秆,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異咸灿,居然都是意外死亡构订,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門避矢,熙熙樓的掌柜王于貴愁眉苦臉地迎上來悼瘾,“玉大人,你說我怎么就攤上這事审胸『ニ蓿” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵砂沛,是天一觀的道長(zhǎng)烫扼。 經(jīng)常有香客問我,道長(zhǎng)碍庵,這世上最難降的妖魔是什么映企? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮怎抛,結(jié)果婚禮上卑吭,老公的妹妹穿的比我還像新娘芽淡。我一直安慰自己马绝,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布挣菲。 她就那樣靜靜地躺著富稻,像睡著了一般。 火紅的嫁衣襯著肌膚如雪白胀。 梳的紋絲不亂的頭發(fā)上椭赋,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音或杠,去河邊找鬼哪怔。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的认境。 我是一名探鬼主播胚委,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼叉信!你這毒婦竟也來了亩冬?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤硼身,失蹤者是張志新(化名)和其女友劉穎硅急,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體佳遂,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡营袜,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了丑罪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片连茧。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖巍糯,靈堂內(nèi)的尸體忽然破棺而出啸驯,到底是詐尸還是另有隱情,我是刑警寧澤祟峦,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布罚斗,位于F島的核電站,受9級(jí)特大地震影響宅楞,放射性物質(zhì)發(fā)生泄漏针姿。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一厌衙、第九天 我趴在偏房一處隱蔽的房頂上張望距淫。 院中可真熱鬧,春花似錦婶希、人聲如沸榕暇。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)彤枢。三九已至,卻和暖如春筒饰,著一層夾襖步出監(jiān)牢的瞬間缴啡,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工瓷们, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留业栅,地道東北人秒咐。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像碘裕,于是被迫代替她去往敵國(guó)和親反镇。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

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