-1

所以我有一个应用程序可以让用户上传 youtube 链接,并在显示操作中动态嵌入 Youtube 视频。但是,我想为播放器添加自定义皮肤以匹配我的应用程序。这可能吗?如果是这样,我该怎么做?

shot.html.erb 代码段

<p id="notice"><%= notice %>


    <p>
    <%= @song.title %> | ( <%= @song.url %> )

    <br />
    <span class="subtext"><span class="votes_<%= @song.id %>"><%= pluralize(@song.votes.count, 'like') %>,</span>
    posted <%= time_ago_in_words(@song.created_at) + " ago" %>
    <small><span class="comments"></small> | <%= pluralize(@song.comments.size, 'comment') %></span></small><br /></span></span>
    </p>

    <p>
    <%#= audio_tag (@song.track.url), controls: "controls", alt: "Please use chrome, ie, or safari", preload: :auto %>



    <iframe width="400" height="200" src="http://www.youtube.com/embed/<%= @video_tag %>" frameborder="0"></iframe></p>
4

1 回答 1

0

您可以随时构建自己的 HTML5 YouTube 播放器,或者使用此配置页面进行一些基本自定义。还有专门的服务,如SublimeVideo,用于创建与 YouTube 一起使用的自定义 HTML5 播放器。

于 2013-08-02T23:33:56.670 回答