Creating Persistent Links to YouTube Music Videos
The document discusses the problem of links to YouTube videos becoming invalid when videos are removed. It proposes introducing a resolver service that redirects links to alternative copies of videos when the original link returns a 404 error. This service would also retrieve and publish metadata about videos to external websites to help find available copies when the initial link is broken. The goal is to create persistent links to YouTube music videos even if the specific video is removed from YouTube.
Convert to study materialsBETA
Transform any presentation into ready-made study materialselect from outputs like summaries, definitions, and practice questions.
1 of 23
Download to read offline
More Related Content
NDIIPP/NDSA 2011 - YouTube Link Restoration
1. Creating Persistent Links to YouTube Music Videos NDIIPP Partners MeetingJuly 20, 2011Vivens Ndatinya, Mathias Prellwitz, Michael L. NelsonDepartment of Computer ScienceOld Dominion UniversityNorfolk, VAwww.cs.odu.edu/~mln
16. Retrieving and Publishing Metadata into Web InfrastructureIntroducing a level of indirection by pointing the original given URI to an outsourced service
17. Resolver Service $URI = youtube.com/watch?=v= videoid$newURI = $serviceURI . $URI$URI = $newURIif (($video == 200 OK)&&!Seen_already($video)){Twitter($video) Tumbler($video) Blogger($video) Delicious($video)Redirect to YouTube to play the video}else if (($video == 200 OK)&& Seen_already($video)){ Redirect to YouTube to play the video}else if (($video == 404 Not Found )&&Seen_already($video)){ Retrieve metadata and search for available alternative copies}else if (($video == 404 Not Found )&& !Seen_already($video)){ Request the metadata for the desired video from the user}