程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-怎麼從文件目錄中播放視頻

ios-怎麼從文件目錄中播放視頻

編輯:編程綜合問答
怎麼從文件目錄中播放視頻

應用中存儲視頻的名字是'video2.MOV',現在要播放出了問題。

因為無法從文件中獲取。

-(void)playVideo:(NSTimer *)theTimer
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"video2.MOV"];
    NSLog(@"filePath - %@",filePath);

    NSString *content = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:NULL];
    NSLog(@"contentPath - %@",content);

    MPMoviePlayerViewController *videoPlayerView = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:content]];
    [ [CCDirector sharedDirector] presentMoviePlayerViewControllerAnimated:videoPlayerView];
    [videoPlayerView.moviePlayer play];
}

在控制台中,每次獲取contentPath 都是null。

最佳回答:


NSString *content = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:NULL];
這個是從文件中讀取出字符串。。 video2.mov 是保存在沙盒中的話,filepath已經是路徑了,如果是應用中,要用 [nsbundle mainbundle] pathForResource:@"video2" ofType:@"mov]

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved