In one of my application I need to show a YouTube video. If user submits a video then I have to check if that video is alive in YouTube. If OK then I have to save the video id in my database and generate video in web page.

Is there any method for validating YouTube video ?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

If the user is flat-out submitting a video, you would have to have something like a database which contains hashes for existing videos to compare it with (ex: the SHA checksum), then check if the hash is already present. As far as I know, Google/YouTube provide no such database for the public to use, but you could start your own for the videos that users submit through your service. There are other more advanced techniques you could use, but they would require access to all of the existing video files for analysis... which is not available.

As far as getting the video URL, when you upload a video to YouTube you can link to it or embed it in a webpage.

link|improve this answer
thanks for the reply – ramesh Feb 15 at 3:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.