1

iOS アプリのイメージ ギャラリーと同じように、サウンド ファイル ギャラリーにアクセスすることはできますか? ネットで検索してみましたが、適切なコンテンツが見つかりませんでした。

4

2 に答える 2

1

AppleのAddMusicサンプル アプリケーションを参照して、その方法を確認できます...

于 2012-06-21T11:45:36.290 に答える
0

はい、サーバーにアップロードできます。以下のコードを使用します。

ピッカーから曲を選ぶとき

- (void)mediaPicker: (MPMediaPickerController *)mediaPicker didPickMediaItems:(MPMediaItemCollection *)mediaItemCollection 
{
    MPMediaItem *song = nil ;
    [self dismissModalViewControllerAnimated:YES];

    if ([mediaItemCollection count] < 1) 
    {
        return;
    }
    [song release];
    song = [[[mediaItemCollection items] objectAtIndex:0] retain];

    //song.accessibilityHin

    [self uploadMusicFile:song];
}

- (void) uploadMusicFile:(MPMediaItem *)song
{
    // Init audio with playback capability
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];

    NSURL *assetURL = [song valueForProperty:MPMediaItemPropertyAssetURL];
    AVURLAsset *songAsset = [AVURLAsset URLAssetWithURL:assetURL options:nil];
 // to get uniqe time interval
    [[NSDate date] timeIntervalSince1970];
    // convert this ti string
    NSTimeInterval seconds = [[NSDate date] timeIntervalSince1970];
    NSString *intervalSeconds = [NSString stringWithFormat:@"%0.0f",seconds];

    AVAssetExportSession *exporter = [[AVAssetExportSession alloc] initWithAsset: songAsset                                                                       presetName: AVAssetExportPresetPassthrough];

    exporter.outputFileType = @"public.mpeg-4";

    NSString *exportFile = [[NSString alloc] initWithString:[DOCUMENTS_FOLDER stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.mp4",intervalSeconds]]];


    NSURL *exportURL = [[NSURL fileURLWithPath:exportFile] retain];
    exporter.outputURL = exportURL; 

    [exporter exportAsynchronouslyWithCompletionHandler:
     ^{
         NSData *data = [NSData dataWithContentsOfURL:exportURL];

         // Here your upload code 
     }];
}
于 2012-06-21T12:23:47.947 に答える