将YouTube视频添加到Google文档中 - 是否可能?通过Apps脚本?

时间:2017-02-14 01:04:27

标签: google-apps-script google-docs

是否可以将YouTube视频插入google document

  1. 手动(必须是视频,而不是文字中的链接)
  2. 按应用脚本
  3. 我没有找到任何在文档中插入视频的方法,比如插入Images或insert / appendParagraph等,所以没有什么可以添加的。没有代码。

4 个答案:

答案 0 :(得分:1)

您绝对可以将其发布到Google文档的侧边栏中。我知道这是一个简单的简单回答,但它是可能的。我现在正在听它。

checking R code for possible problems ... NOTE
Found the following assignments to the global environment:
File 'flipRegression/R/regressiondiagnostics.R':
   assign(".estimation.data", model$estimation.data, envir = .GlobalEnv)
   assign(".formula", model$formula, envir = .GlobalEnv)
   assign(".estimation.data", .estimation.data, envir = .GlobalEnv)
   assign(".formula", model$formula, envir = .GlobalEnv)
   assign(".design", model$design, envir = .GlobalEnv)
   assign(".estimation.data", x$estimation.data, envir = .GlobalEnv)
   assign(".formula", formula(model), envir = .GlobalEnv)
 R CMD check results
 0 errors | 0 warnings | 1 note 
 Warning message:
 `cleanup` is deprecated 
 R CMD check succeeded

此代码是使用Google文档脚本编辑器编写的。

答案 1 :(得分:0)

我认为除了侧边栏或对话框之外,将视频插入到Google文档中是不可能的。我建议您考虑查看新的Google网站。它们非常易于使用,添加视频是其内置功能之一。无需编码,您可以为用户提供访问任何网站页面的URL。我在我的网站上使用它们是因为它们易于使用,并且它们可以很好地格式化页面,以便它们适合任何设备。这是link

答案 2 :(得分:0)

是的,可以通过appscript实现。 请参考以下代码以实现相同的目的。在这里,我已设置了带有youtube链接的图像,并将图像宽度设置为“ 0”,因此在这种情况下,视频不可见,但是您确实获得了可以在同一窗口中播放的youtube视频的缩略图。

<i></i>
<div style="font-size: 12px;" align="left">
  <a href="https://www.youtube.com/watch?v=z7Kcs9OD5wk" target="_blank" rel="noopener"> <img style="outline: none; text-decoration: none; clear: both; border: 0px; height: auto; line-height: 100%; margin-top: 0px; margin-left: 3px; margin-bottom: 0px; float: left; max-width: 0px; width: 100% !important;" title="Image" src="https://i.postimg.cc/qRrvx6pX/Fostercraftvideo.jpg"
      alt="Image" width="0" align="left" border="0" /> </a>
</div>

答案 3 :(得分:-1)

使用Google文档我不认为这是可能的。我建议您使用Google协作平台。

使用Apps脚本可以轻松实现。您需要使用Web App创建一个显示html文件的HtmlService API,然后您可以正常编辑您的html文件并嵌入您的视频。