2013-01-09 57 views
0

如果我走到這一點,那麼我的問題是,我想做一個網頁視圖,它會加載視頻,當流開始時,然後我想下載/存儲視頻數據在應用程序的資源文件夾。如何我那樣做?如何將流媒體視頻存儲在iOS資源文件夾中?

請有人幫助我的任何形式的幫助。

BR

衛門

回答

2

在運行時無法保存的視頻資源文件夾,但你可以到 NSDocuments保存文件,並使用NSFileManagers.Go retrive他們通過此鏈接 http://www.techotopia.com/index.php/Working_with_Files_on_the_iPhone

本規則試圖保存文件

NSArray *paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES); 
NSString *documentsDirectory = [paths objectAtIndex:0];      
NSString *filePath = [NSString stringWithFormat:@"%@/filename.MP4",documentsDirectory]; 
NSData* videoData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"your Url"]]; 
[[NSFileManager defaultManager] createDirectoryAtPath:filePath withIntermediateDirectories:YES attributes:nil error:nil]; 
[filemanager createFileAtPath:filePath contents:videoData attributes:nil]; 

要retri ve:

NSArray *paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES); 
NSString *documentsDirectory = [paths objectAtIndex:0];      
NSString *filePath = [NSString stringWithFormat:@"%@/filename.MP4",documentsDirectory]; 
    BOOL exists = [fm fileExistsAtPath:newDirectory isDirectory:&isDir]; 
    if (exists) { 
    //Play Video with contents of file path. 

     } 
+0

你能舉個例子嗎,因爲我是這些事的新手。 – Emon