2016-07-22 20 views
6

YouTubeビデオをR Markdownに埋め込むことは可能ですか? は、これまでのところ私が持っているものYouTubeビデオin Rマークダウン

<a href="http://www.youtube.com/watch?feature=player_embedded&v=Q8rakpF7duU 
" target="_blank"><img src="http://img.youtube.com/vi/Q8rakpF7duU/0.jpg" 
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a> 

ですが、それだけで画像を追加します。この画像をクリックすると、動画が再生されるブラウザが表示されます。マークダウン文書自体でビデオを再生できる方法はありますか?

参考文献: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#videos

+2

は 'iframe'仕事をしていますか? –

答えて

6

あなたはインラインフレームを使用する必要があります。ビデオがプレビューウィンドウに表示されませんが、インターネットに接続されているブラウザで表示されますときという

--- 
title: "iframe" 
author: "Example" 
date: "22 July 2016" 
output: html_document 
--- 

```{r setup, include=FALSE} 
knitr::opts_chunk$set(echo = TRUE) 
``` 

## R Markdown 

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>. 

<iframe width="560" height="315" src="https://www.youtube.com/embed/6A5EpqqDOdk" frameborder="0" allowfullscreen></iframe> 

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: 

```{r cars} 
summary(cars) 
``` 

## Including Plots 

You can also embed plots, for example: 

```{r pressure, echo=FALSE} 
plot(pressure) 
``` 

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot. 

注:たとえば、基本的なRMDテンプレートに値下げビデオを追加します。

-2

答えは、このような単純なことがあり、私は思う:

![](https://youtu.be/zNzZ1PfUDNk) 
関連する問題