嵌入笔记
支持将VidGo管理的视频嵌入笔记软件,例如typora,obsidian。
B站视频的嵌入方式:
<iframe src="http://player.bilibili.com/player.html?aid=202727323&bvid=BV16a411c7UK&cid=251646232&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="height:100%;width:100%; aspect-ratio: 16 / 9;"> </iframe>
VidGo中视频可以类似的方式嵌入:
<iframe src="http://172.28.241.92:8000/media/video/58128978b69b8ef7889644ae93cd8122.mp4" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="height:100%;width:100%; aspect-ratio: 16 / 9;"> </iframe>
支持以时间戳的形式嵌入具体时间:
<iframe src="http://172.28.241.92:8000/media/video/58128978b69b8ef7889644ae93cd8122.mp4#t=30" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true" style="height:100%;width:100%; aspect-ratio: 16 / 9;"> </iframe>
其中t=30为时间戳,支持多种形式:30
,30s
,1min30s
,1h30min
,#t=30
,?t=30
.