Youtube网络摄像头小工具 - 抓取VideoID

时间:2013-07-09 02:12:46

标签: ruby-on-rails youtube youtube-api webcam redactor

对于我的Rails应用程序,我有一些项目,用户可以通过Redactor Rails发布更新。我为每个项目制作了BLOGPOSTS的控制器和模型。现在,他们可以使用这个富文本编辑器嵌入视频。但是,我正在探索添加选项的选项,以允许用户在我的网站上使用youtube直接进行网络摄像头录制,并将其上传到youtube并作为项目的BLOGPOST发布。 Blogposts目前作为t.text "content"保存在blogupdates表中。

我在这里引用了文档:https://developers.google.com/youtube/youtube_upload_widget

* *问题:当我添加youtube上传小部件时,它会显示网络摄像头。然后我录制,之后,它只生成上传的视频进行播放。但有没有办法可以获取视频ID并将其保存为“BLOGPOST”content并在录制视频后自动设置嵌入html?

所以我在每个项目页面添加了以下内容:

查看/项目/ show.html.erb

<script>
  // 2. Asynchronously load the Upload Widget and Player API code.
  var tag = document.createElement('script');
  tag.src = "https://www.youtube.com/iframe_api";
  var firstScriptTag = document.getElementsByTagName('script')[0];
  firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

  // 3. Define global variables for the widget and the player.
  //    The function loads the widget after the JavaScript code
  //    has downloaded and defines event handlers for callback
  //    notifications related to the widget.
  var widget;
  var player;
  function onYouTubeIframeAPIReady() {
    widget = new YT.UploadWidget('widget', {
      width: 500,
      events: {
        'onUploadSuccess': onUploadSuccess,
        'onProcessingComplete': onProcessingComplete
      }
    });
  }

  // 4. This function is called when a video has been successfully uploaded.
  function onUploadSuccess(event) {
    alert('Video ID ' + event.data.videoId + ' was uploaded and is currently being processed.');
  }

  // 5. This function is called when a video has been successfully
  //    processed.
  function onProcessingComplete(event) {
    player = new YT.Player('player', {
      height: 390,
      width: 640,
      videoId: event.data.videoId,
      events: {}
    });

  }
</script>
<div class = "container">
  <div id="widget"></div>
  <div id="player"></div>
</div>

此外,每个页面都显示Redactor Rails表单:

<%= form_for([@project, @project.blogposts.build]) do |f| %>
  <div class="field">
    <%= f.text_area :content, label: "Blog Posts", :class => "redactor", %>
  </div>

  <%= f.hidden_field :user_id, :value => current_user.id %>

  <div class="actions">
    <%= f.submit "Add Blog Post", :class => "btn btn-header" %>
  </div>
<% end %>

blogposts_controller.rb

def create
  @project = Project.find(params[:project_id])

  params[:blogpost][:content] = sanitize_redactor(params[:blogpost][:content])

  @blogpost = @project.blogposts.create!(params[:blogpost])

  if @blogpost.save
    redirect_to blogs_project_path(@project), notice: "Blog entry created."
  end   
end

schema.rb

create_table "blogposts", :force => true do |t|
  t.integer  "user_id"
  t.integer  "project_id"
  t.text     "content"
  t.datetime "created_at", :null => false
  t.datetime "updated_at", :null => false
end

1 个答案:

答案 0 :(得分:0)

我对这个博客平台并不熟悉,所以我的答案并不是特定的。

通常,有两种方法可以使用YouTube iframe播放器嵌入视频。一种是以编程方式添加嵌入,使用YT.Player构造函数替换页面DOM中的现有元素。这就是你在所提供的代码中所做的事情。

另一种方法是在页面的DOM中明确包含具有适当属性的<iframe>。有可能这将遵循标准模板,另一件需要改变的是视频ID。要在<iframe>的嵌入式播放器中加载的示例VIDEO_ID标记是

<iframe type="text/html" width="640" height="390"
src="http://www.youtube.com/embed/VIDEO_ID" frameborder="0"></iframe>

因此,如果您想要保存包含YouTube嵌入的一些HTML(到数据存储区或任何地方),最好的方法是在HTML中包含<iframe>标记,并使用正确的{{ 1}}与新上传的视频对应的值。