91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS 音樂的截取

發布時間:2020-03-06 18:47:55 來源:網絡 閱讀:552 作者:大頭狼小鬼 欄目:移動開發

最近接觸一個音頻的項目,之前接觸過,不過都是用系統自帶的去實現,沒有仔細研究

在網上找到了一個demo,挺好用,反正效果是實現,非常不錯。具體鏈接忘記了。

#pragma mark - 音視頻剪輯,如果是視頻把下面的類型換為AVFileTypeAppleM4V

// assetURL 本地路徑地址

//startTime 開始時間

//endTime 結束時間

//outputPath 裁剪完成后的地址

+ (void)cutAudioVideoResourcePath:(NSURL *)assetURL startTime:(CGFloat)startTime endTime:(CGFloat)endTime complition:(void (^)(NSURL *outputPath,BOOL isSucceed)) completionHandle{

    //    素材

    AVAsset *asset = [AVAsset assetWithURL:assetURL];


    //    導出素材

    AVAssetExportSession *exporter = [[AVAssetExportSession alloc]initWithAsset:asset presetName:AVAssetExportPresetAppleM4A];

    

    //剪輯(設置導出的時間段)

    CMTime start = CMTimeMakeWithSeconds(startTime, asset.duration.timescale);

    CMTime duration = CMTimeMakeWithSeconds(endTime - startTime,asset.duration.timescale);

    exporter.timeRange = CMTimeRangeMake(start, duration);

    

//    輸出路徑

    NSURL *outputPath = [self exporterPath];

    exporter.outputURL = [self exporterPath];

    

//    輸出格式

    exporter.outputFileType = AVFileTypeAppleM4A;

    

    exporter.shouldOptimizeForNetworkUse= YES;

    

//    合成后的回調

    [exporter exportAsynchronouslyWithCompletionHandler:^{

        switch ([exporter status]) {

            case AVAssetExportSessionStatusFailed: {

                NSLog(@"合成失敗:%@",[[exporter error] description]);

                completionHandle(outputPath,NO);

            } break;

            case AVAssetExportSessionStatusCancelled: {

                completionHandle(outputPath,NO);

            } break;

            case AVAssetExportSessionStatusCompleted: {

                completionHandle(outputPath,YES);

            } break;

            default: {

                completionHandle(outputPath,NO);

            } break;

        }

    }];

}

#pragma mark - 輸出路徑

+ (NSURL *)exporterPath {

    

    NSInteger nowInter = (long)[[NSDate date] timeIntervalSince1970];

    NSString *fileName = [NSString stringWithFormat:@"output%ld.mp4",(long)nowInter];

    

    NSString *documentsDirectory = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject;

   

    NSString *outputFilePath =[documentsDirectory stringByAppendingPathComponent:fileName];

    

    if([[NSFileManager defaultManager]fileExistsAtPath:outputFilePath]){

        

        [[NSFileManager defaultManager]removeItemAtPath:outputFilePath error:nil];

    }

    

    return [NSURL fileURLWithPath:outputFilePath];

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

铁力市| 宣恩县| 台南县| 和静县| 巴林左旗| 丰原市| 黔东| 汶川县| 高安市| 清徐县| 堆龙德庆县| 东安县| 正镶白旗| 宁陕县| 牡丹江市| 双流县| 平凉市| 涿鹿县| 嘉荫县| 夏津县| 潮安县| 习水县| 达尔| 玉田县| 迁安市| 台中县| 奇台县| 左贡县| 邻水| 德清县| 江山市| 喀喇沁旗| 石家庄市| 都江堰市| 齐河县| 辽宁省| 达日县| 闸北区| 镇原县| 页游| 永嘉县|