如何在ipython笔记本上更改嵌入式视频大小和对齐方式

时间:2014-04-07 18:34:14

标签: ipython-notebook

我在我的一个笔记本中嵌入了一个youtube视频,我对嵌入式视频的大小和对齐感到不满意。

我正在使用

from IPython.display importYouTubeVideo
YouTubeVideo("U3iNcBtycaQ")

要嵌入视频,但我想将视频窗口与中心对齐,并将其大小更改为更大的内容。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

from IPython.display import YouTubeVideo
YouTubeVideo('U3iNcBtycaQ', width=1024, height=576)

答案 1 :(得分:0)

我找到了一种方法,但它基于HTML而不是基于Ipython:

<div style="text-align: center">
    <iframe width="420" height="315" src=http://www.youtube.com/embed/U3iNcBtycaQ frameborder="4"></iframe>
</div>

将使用Ipython API欣赏答案。