web-dev-qa-db-ja.com

AVPlayerとローカルファイル

Webでホストされているオーディオファイルを再生するiOS用のMP3プレーヤーを構築しています。ファイルをオフラインで再生する機能を提供したいので、ASIHTTPを使用してファイルをダウンロードしていますが、アプリのドキュメントディレクトリにmp3でAVPlayerを初期化することに関する情報が見つからないようです。誰かがこれを以前にしたことがありますか?可能ですか?

*ローカルファイルとhttpファイルの両方でiOS AvPlayerを使用する方法を示す回答を以下に投稿しました。お役に立てれば!

20
stitz

Apple提供されるAVPlayerがローカルファイルとストリーム(http経由)ファイルの両方に使用する方法についてのドキュメントがほとんどないように思えたので、私は自分の質問に回答することにしました。解決策を理解するために、私は Objective-CのGitHubのサンプルプロジェクトSwift をまとめました。以下のコードはObjective-Cですが、私のSwift例を見てみましょう。よく似ています。

私が見つけたのは、Asset> PlayerItem> AVPlayer chainのNSURLをインスタンス化する方法を除いて、ファイルをセットアップする2つの方法はほとんど同じです。

コアメソッドの概要は次のとおりです

.hファイル(部分コード)

-(IBAction) BtnGoClick:(id)sender;
-(IBAction) BtnGoLocalClick:(id)sender;
-(IBAction) BtnPlay:(id)sender;
-(IBAction) BtnPause:(id)sender;
-(void) setupAVPlayerForURL: (NSURL*) url;

.mファイル(部分コード)

-(IBAction) BtnGoClick:(id)sender {

    NSURL *url = [[NSURL alloc] initWithString:@""];

    [self setupAVPlayerForURL:url];
}

-(IBAction) BtnGoLocalClick:(id)sender {

    // - - - Pull media from documents folder

    //NSString* saveFileName = @"MyAudio.mp3";
    //NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    //NSString *documentsDirectory = [paths objectAtIndex:0];
    //NSString *path = [documentsDirectory stringByAppendingPathComponent:saveFileName];

    // - - -

    // - - - Pull media from resources folder

    NSString *path = [[NSBundle mainBundle] pathForResource:@"MyAudio" ofType:@"mp3"];

    // - - -

    NSURL *url = [[NSURL alloc] initFileURLWithPath: path];

    [self setupAVPlayerForURL:url];
}

-(void) setupAVPlayerForURL: (NSURL*) url {
    AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
    AVPlayerItem *anItem = [AVPlayerItem playerItemWithAsset:asset];

    player = [AVPlayer playerWithPlayerItem:anItem];
    [player addObserver:self forKeyPath:@"status" options:0 context:nil];
}


- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {

    if (object == player && [keyPath isEqualToString:@"status"]) {
        if (player.status == AVPlayerStatusFailed) {
            NSLog(@"AVPlayer Failed");
        } else if (player.status == AVPlayerStatusReadyToPlay) {
            NSLog(@"AVPlayer Ready to Play");
        } else if (player.status == AVPlayerItemStatusUnknown) {
            NSLog(@"AVPlayer Unknown");
        }
    }
}

-(IBAction) BtnPlay:(id)sender {
    [player play];
}

-(IBAction) BtnPause:(id)sender {
    [player pause];
}

Objective-Cソースコード をチェックして、この動作例を確認してください。お役に立てれば!

-2015年12月7日更新 Swift 可能なソースコードの例 ここを表示 を用意しました。

34
stitz

ローカルURLの前にfile://を追加することで、AVPlayerがローカルURLで機能するようになりました

NSURL * localURL = [NSURL URLWithString:[@"file://" stringByAppendingString:YOUR_LOCAL_URL]];
AVPlayer * player = [[AVPlayer alloc] initWithURL:localURL];
13
Sudo

これを試して

NSString*thePath=[[NSBundle mainBundle] pathForResource:@"yourVideo" ofType:@"MOV"];
NSURL*theurl=[NSURL fileURLWithPath:thePath];
3
ZaEeM ZaFaR

はい、.mp3(または任意の種類のファイル)をNSDocumentディレクトリにダウンロードして保存すると、そこから取得してAVAudioPlayerを使用して再生できます。

NSString *downloadURL=**your url to download .mp3 file**

NSURL *url = [NSURLURLWithString:downloadURL];

NSURLConnectionalloc *downloadFileConnection = [[[NSURLConnectionalloc] initWithRequest:      [NSURLRequestrequestWithURL:url] delegate:self] autorelease];//initialize NSURLConnection

NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,  YES) objectAtIndex:0];

NSString *fileDocPath = [NSStringstringWithFormat:@"%@/",docDir];//document directory path

[fileDocPathretain];

NSFileManager *filemanager=[ NSFileManager defaultManager ];

NSError *error;

if([filemanager fileExistsAtPath:fileDocPath])
{

//just check existence of files in document directory
}

NSURLConnection is used to download the content.NSURLConnection Delegate methods are used to  support downloading.

(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{

}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSFileManager *filemanager=[NSFileManagerdefaultManager];
if(![filemanager fileExistsAtPath:filePath])
{
[[NSFileManagerdefaultManager] createFileAtPath:fileDocPath contents:nil attributes:nil];

}
NSFileHandle *handle = [NSFileHandlefileHandleForWritingAtPath:filePath];

[handle seekToEndOfFile];

[handle writeData:data];

[handle closeFile];
 }

-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
 {
 UIAlertView *alertView=[[UIAlertViewalloc]initWithTitle:@”"message:
 [NSStringstringWithFormat:@"Connection failed!\n Error - %@ ", [error localizedDescription]]   delegate:nilcancelButtonTitle:@”Ok”otherButtonTitles:nil];
  [alertView show];
  [alertView release];
  [downloadFileConnectioncancel];//cancel downloding
  }

ダウンロードしたオーディオと再生を取得します。

   NSString *docDir1 = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,   NSUserDomainMask, YES) objectAtIndex:0];

   NSString *myfilepath = [docDir1 stringByAppendingPathComponent:YourAudioNameinNSDOCDir];

   NSLog(@”url:%@”,myfilepath);

   NSURL *AudioURL = [[[NSURLalloc]initFileURLWithPath:myfilepath]autorelease];

AudioURLを使用してオーディオを再生するコードを記述するだけです

私はあなたがこの点に関して何か明確化を持っているかどうか知りたいです。

ありがとうございました

3
iphonecool

mPMoviePlayerControllerプレーヤーを使用しない理由は、Avplayerを使用して曲を再生することが非常に難しいことです。私はドキュメントディレクトリから曲を再生しています。コードを投稿しています。plsはこれを参照しています。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *publicDocumentsDir = [paths objectAtIndex:0];   
NSString *dataPath = [publicDocumentsDir stringByAppendingPathComponent:@"Ringtone"];
NSString *fullPath = [dataPath stringByAppendingPathComponent:[obj.DownloadArray objectAtIndex:obj.tagvalue]];
[[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];


NSURL *url = [NSURL fileURLWithPath:fullPath];

videoPlayer =[[MPMoviePlayerController alloc] initWithContentURL: url];
[[videoPlayer view] setFrame: [self.view bounds]]; 
[vvideo addSubview: [videoPlayer view]];


videoPlayer.view.frame=CGRectMake(0, 0,260, 100);
videoPlayer.view.backgroundColor=[UIColor clearColor];
videoPlayer.controlStyle =   MPMovieControlStyleFullscreen;
videoPlayer.shouldAutoplay = YES;  
[videoPlayer play];
videoPlayer.repeatMode=YES;


NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self selector:@selector(moviePlayerEvent:) name:MPMoviePlayerLoadStateDidChangeNotification object:videoPlayer];


/*  NSNotificationCenter *notificationCenter1 = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self selector:@selector(moviePlayerEvent1:) name:MPMoviePlaybackStateStopped object:videoPlayer];
*/
[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(playbackStateChange:)
                                             name:MPMoviePlayerLoadStateDidChangeNotification
                                           object:videoPlayer];
}

-(void)playbackStateChange:(NSNotification*)notification{

if([[UIApplication sharedApplication]respondsToSelector:@selector(setStatusBarHidden: withAnimation:)])
  { 
      [[UIApplication sharedApplication] setStatusBarHidden:NO 
                                            withAnimation:UIStatusBarAnimationNone];
   }
  else 
   {

       [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];
   }
}

 -(void)moviePlayerEvent:(NSNotification*)aNotification{


   [[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];


}

  -(void)moviePlayerEvent1:(NSNotification*)aNotification{

[[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:NO];

 }
1
parag

バンドルに「shelter.mp3」というファイルがあると仮定して、Swiftローカル再生バージョン:

@IBAction func button(_ sender: Any?) {
    guard let url = Bundle.main.url(forResource: "shelter", withExtension: "mp3") else {
        return
    }

    let player = AVPlayer(url: url)

    player.play()
    playerView?.player = player;
}

PlayerViewまたはリモートURLの再生の詳細については こちら を参照してください。

0
owenfi