1

重複の可能性:
アプリでYoutubeビデオをiPhoneに保存

プログラムでiphoneにyoutubeurlを含むyoutubeビデオをダウンロードするSDKまたは方法はありますか?

同じことを手伝ってください。

前もって感謝します。

よろしく、

4

2 に答える 2

1

そのアプリをAppStoreにリリースすることを計画している場合は、そのオプションを残すことはお勧めしません。Youtubeのルールはそれを許可しておらず、Appleは最近、その機能を有効にしているアプリがAppStoreにありますが、それらを非常にフォローしています。私の友人の1人が彼のYoutubeプレーヤーアプリにオフラインプレイを追加しようとしましたが、それが原因で拒否されました。

于 2012-12-28T12:03:02.783 に答える
0
   1) Get the NSURL Object First using url string.   
   2) Allocate and start an NSURLConnection to fetch the file from the URL. Do not use sendSynchronousRequest:returningResponse:error      
   3) In the connection:didReceiveResponse: delegate method, create NSData object
   4) In the connection:didReceiveData: delegate method, get the data and append it to NSData object
   5) play the video using MPMoviePlayerController after getting data.
于 2012-12-28T11:14:27.047 に答える