如何在R Markdown中嵌入本地视频?

时间:2017-05-08 06:00:26

标签: r markdown knitr r-markdown rnotebook

我已经知道how to embed the youtube video in the R Markdown document了。 但假设我有离线视频,我不想以mp4或avi格式发布。有没有办法将其嵌入文档? 类似下面的内容(从图像嵌入中获取灵感):

![Caption](vid/video1.mp4)

3 个答案:

答案 0 :(得分:5)

这对我有用:

Slide With Code
========================================================
<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
</video>

如果删除宽度和高度,请启用

autosize: true

R负责视频的大小。

答案 1 :(得分:0)

参见代码

Another option is to use a generic

      static List<Vehicle> getMovingVehicles<T>(List<T> vehicles) where T:Vehicle {
            List<Vehicle> movingVehicles=new List<Vehicle>();
            foreach( Vehicle v in vehicles){
            if(v.Speed>0)
                 movingVehicles.Add(v);

            }

        return movingVehicles;
    }

参见代码

答案 2 :(得分:0)

它也适用于使用图像标签

<img src="movie.mp4" type="video/mp4"/>