In this article we will see how we can get duration of each item of playlist in pafy. Pafy is a python library to download YouTube content and retrieve metadata. Pafy object is the object which contains all the information about the given video. A playlist in YouTube is a list, or group, of videos that plays in order, one video after the other. Duration is basically the time of the given item i.e how long the given item is. It is in hours:minutes:second format.
We can get the playlist from youtube in pafy with the help of get_playlist
method, below is the command given to do this
pafy.get_playlist(url)
The playlist url should exist on youtube as it get the information of those videos which are present on the youtube. YouTube is an American online video-sharing platform.
Steps for implementation
1. Import the pafy module
2. Get the playlist with the help of URL of playlist
3. Return play list work as dictionary so use ‘items’ as key with the return playlist
4. Store the result in variable and from the items select the single item
5. With the single item use ‘playlist_meta’ key with it to get the meta data
6. With the meta data use ‘duration’ key this will return duration for given item
Below is the implementation
import pafy
playlist = pafy.get_playlist(url)
items = playlist[ "items" ]
item = items[ 1 ]
i_pafy = item[ 'pafy' ]
metadata = item[ 'playlist_meta' ]
value = metadata[ 'duration' ]
print (value)
|
Output :
11:52
Another example
import pafy
playlist = pafy.get_playlist(url)
items = playlist[ "items" ]
item = items[ 2 ]
metadata = item[ 'playlist_meta' ]
value = metadata[ 'duration' ]
print (value)
|
Output :
2:50