Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

find playlists containing a video on youtube [closed]

I would like to find playlists on youtube that contain the video. e.g. find all playlists that contain video at this link.

Any youtube search technique/parameter useful for this?

Is it possible to search by author too? e.g. find a playlist containing above video by author SAS Software.?

like image 557
N D Thokare Avatar asked May 20 '15 08:05

N D Thokare


People also ask

Is there a way to see what playlists a YouTube video is in?

You can search for playlists, using the title of the video in quotes ("). Unfortunately, very generic titles does not give you the desired results. Also, keep in mind that if the title contains symbols, you have to exclude them from quotes. (don't forget to add your API key at the end of the URL.

How do I find out what video was deleted from YouTube playlist?

As it turns out, the most reliable way to see a deleted video's name is by simply performing a Google search for its URL. Since you still have access to the URL via your playlist, you can use that to see what else the internet knows about it.

How do I search inside a YouTube playlist?

Instantly search inside any YouTube™ playlist. To use, simply click the extension when on a playlist or a video inside a playlist and the extension will list ALL videos inside the playlist. You may then instantly search for and click any video in the list to go to it.

How do I find deleted videos on my YouTube playlist?

Open the playlist on YouTube which has deleted videos. Make sure the Playlist is either Public or Unlisted if it's your own playlist. You can find this by looking at the icon next to your playlist name. Please note that this method won't work for the "Liked" Playlist which has all your Liked Videos as well as for the "Watch Later" playlist.

How to find out the name of a video on YouTube?

If it can’t find any details for a video, you can search for it on a search engine or social media like Twitter to find the name of the video. Only the videos which have been deleted or made private are shown in the results. You can see the position of the video in the playlist in the top left corner.

How do I find relevant videos on YouTube?

To find a relevant video, go the video tab and search for a topic in the video search bar. For example, search "WhatsApp". INFORMATION FOR TECH COMPANIES - Please feel free to contact me for any sponsorship or product review.


2 Answers

With youtube search, use Filter - 'Playlist' and sort by relevance.

Example

like image 186
Jaydev Avatar answered Oct 11 '22 14:10

Jaydev


As far as I know, Youtube API does not support search for playlists by video. You can search for playlists, using the title of the video in quotes (").

Unfortunately, very generic titles does not give you the desired results.

Also, keep in mind that if the title contains symbols, you have to exclude them from quotes.

In your example, the title is:

Exploration & Prediction with SAS® Visual Statistics 

This must become like this to search for playlists containing this video:

"Exploration" "Prediction with SAS" "Visual Statistics" 

Example:

https://www.googleapis.com/youtube/v3/search?type=playlist&part=snippet&maxResults=50&q=%22Exploration%22+%22Prediction+with+SAS%22+%22Visual+Statistics%22&key= 

(don't forget to add your API key at the end of the URL.

like image 38
ilias_gr Avatar answered Oct 11 '22 13:10

ilias_gr