Show More
@@ -21,6 +21,8 b' class YouTubeVideo(object):' | |||
|
21 | 21 | vid = YouTubeVideo("abc", start=30) |
|
22 | 22 | display(vid) |
|
23 | 23 | |
|
24 | To calculate seconds from time as hours, minutes, seconds use int(timedelta(hours=1, minutes=46, seconds=40).total_seconds()) | |
|
25 | ||
|
24 | 26 | Other parameters can be provided as documented at |
|
25 | 27 | https://developers.google.com/youtube/player_parameters#parameter-subheader |
|
26 | 28 | """ |
@@ -29,7 +31,7 b' class YouTubeVideo(object):' | |||
|
29 | 31 | self.id = id |
|
30 | 32 | self.width = width |
|
31 | 33 | self.height = height |
|
32 |
self.params = |
|
|
34 | self.params = kwargs | |
|
33 | 35 | |
|
34 | 36 | def _repr_html_(self): |
|
35 | 37 | """return YouTube embed iframe for this video id""" |
@@ -45,5 +47,4 b' class YouTubeVideo(object):' | |||
|
45 | 47 | frameborder="0" |
|
46 | 48 | allowfullscreen |
|
47 | 49 | ></iframe> |
|
48 |
"""%(self.width, self.height, self.id, |
|
|
49 | ||
|
50 | """%(self.width, self.height, self.id, params) No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now