php - get and save youtube thumbnail to web server -
so know can retrieve youtube thumbnail going here:
http://img.youtube.com/vi/bovbdxftef8/0.jpg
obviously id changes based on video. want write script can save photo url folder called 'video_thumbnails'. there simple way of doing in php?
quite simple:
file_put_contents ("video_thumbnails/thumb.jpg",file_get_contents("http://img.youtube.com/vi/bovbdxftef8/0.jpg"));
Comments
Post a Comment