If I am embedding a youtube video clip into an iPython notebook:
from IPython.display import YouTubeVideo
YouTubeVideo("Pi9NpxAvYSs")
Is there a way I can embed this such that it would play from a specific time? So 1:47:03 – 1 hour, 47 minutes and 3 seconds?
Update
Now you can use any parameter you like from the youtube player:
Old answer
The current implementation doesn’t allow it, but it’s pretty easy to extend:
And voilà:
Now we could send a pull request 🙂