将视频放在特定位置

将视频放在特定位置

如何将视频锚定在投影机页面中的特定位置?我使用以下代码,但不知道如何控制位置。我想将视频垂直放置在页面的右半部分和页面中间。请帮忙。

\begin{tikzpicture}[remember picture,overlay]
\node[anchor=south west, inner sep=0pt] at (current page.south west) {%
    \includemedia[
    addresource=video.mp4,
    activate=pageopen,transparent,
    flashvars={source=video.mp4},
    %flashvars={source=DRS2.mp4},
    width=\paperwidth+1in ,height=\paperheight
    ]{}{VPlayer.swf}%
};
\end{tikzpicture}

答案1

您正在使用位置规范current page.south west,但您应该使用类似的[xshift=.25\paperwidth]current page.center,其以中心位置为方向,但在页面右半部分内移动到水平居中位置。

您还需要更改节点锚点(center这是合适的)。

相关内容