How to get mp4/mov/m4v video link for a youtube video?

13,099

Solution 1

Do you mean something like this ?

You could get the url of the video and implement it in another video controller.

http://www.ngcoders.com/php/php-youtube-video-downloader-script

You could use Curl to stream it back to your users.

Solution 2

I do this within my iOS app by using https://github.com/larcus94/LBYouTubeView

There is an LBYouTubeExtractor class that makes it easy to grab the iOS friendly file for any youtube link you pass to it.

LBYouTubeExtractor* extractor = [[LBYouTubeExtractor alloc] initWithURL:URL quality:quality];
extractor.delegate = self;
[extractor startExtracting];

Works quite well....Good luck.

Share:
13,099
Praveen S
Author by

Praveen S

Sometimes i am amazed by the power of computing, I browse rest of the time. You can follow me on Twitter

Updated on June 07, 2022

Comments

  • Praveen S
    Praveen S almost 2 years

    Can we get the file url for any video loaded on youtube? I am not happy using the youtube player in my application and would like to launch it using a instance of MPMoviePlayerController.

    PS: Will be tagging it php also as developers across domains would also have had this sort of requirement