可能重複:
Save Youtube video to iPhone in the app如何下載YouTube視頻與YouTube網址在iPhone編程
是否有任何SDK或方法來下載YouTube視頻與YouTube網址在iPhone編程。
請幫助我一樣。
在此先感謝。
問候,
可能重複:
Save Youtube video to iPhone in the app如何下載YouTube視頻與YouTube網址在iPhone編程
是否有任何SDK或方法來下載YouTube視頻與YouTube網址在iPhone編程。
請幫助我一樣。
在此先感謝。
問候,
如果你打算釋放應用AppStore的我勸你不要離開這個選項。儘管AppStore上的應用程序啓用了該功能,但Youtube規則並不允許這一點,而且蘋果公司現在正在關注它們。我的一個朋友試圖添加離線遊戲到他的Youtube播放器應用程序,並因此被拒絕。
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.
嗨阿馬爾, 你可以請指導這個東西的記錄。所以我可以向我的團隊展示。 謝謝, – gaurav
這裏是他們的拒絕信息 - http://cl.ly/image/2n01111Z1g1k –
也在此鏈接上,您可以閱讀他們的服務條款 - http://www.youtube.com/static?template=terms我認爲在5.B下你可以找到類似於「你不應該下載任何沒有下載鏈接的內容」或類似的東西 –