如何在LaTeX Beamer中设置嵌入式YouTube视频的视频质量



我正在尝试在我的LaTeX投影幻灯片中包含YouTube视频,并希望控制视频质量。默认设置是 360p,我想要 720p。

这是我使用的代码。

includemedia[
width=.8linewidth,
totalheight=1.5linewidth,
activate=pageopen,
flashvars={
modestbranding=1 % no YT logo in control bar
&autohide=1 % controlbar autohide
&showinfo=1 % title and other info before start
&rel=0 % no related videos after end
}
]{}{https://www.youtube.com/v/PEqfyIGSKiE}

我找到了出路。

将地址从

{https://www.youtube.com/v/PEqfyIGSKiE}

{https://www.youtube.com/v/PEqfyIGSKiE?vq=hd720}

会做这个伎俩。

最新更新