最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Unmute embedded Vine by default - Stack Overflow

programmeradmin3浏览0评论

I want to embed Vine videos on my site. By default the audio is disabled (with good reason),

I wish to be evil and unmute the video when the page loads,

The video seems to make use of videojs, is there a way to do this through their api?

Otherwise is there a way to simulate a click on the unmute 'button' once the page has loaded?

Inspecting the element gives:

<a href="#" class="mute-button off"></a>

I was thinking along the lines of js .click() method?

I want to embed Vine videos on my site. By default the audio is disabled (with good reason),

I wish to be evil and unmute the video when the page loads,

The video seems to make use of videojs, is there a way to do this through their api?

Otherwise is there a way to simulate a click on the unmute 'button' once the page has loaded?

Inspecting the element gives:

<a href="#" class="mute-button off"></a>

I was thinking along the lines of js .click() method?

Share Improve this question edited Mar 9, 2013 at 14:29 j0k 22.8k28 gold badges81 silver badges90 bronze badges asked Feb 12, 2013 at 21:06 AwaliasAwalias 2,1377 gold badges31 silver badges51 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

You can add the parameter mute as follows: https://vine.co/v/h2t1zY5gOTB?mute=0

So far, there is no way I've found. The button is within the iframe and therefore cannot be accessed to trigger the click event. You'll also notice that clicking on the embed links you to the video viewer on Vine's website.

I changed the mute button's class to "mute-button on" in developer tools and there isn't even a audio on state in the CSS for the embed. THis leads me to believe that at this time, there is no infrastructure in Vine embed for unmuting the video.

If you drill down in the inspector you can get the url to the video source and link to it in your own custom video player. That's the approach i am taking. Hopefully in the future Vine will provide more options for embedded videos.

In the current version of Vine you can simply choose the option to have it autoplay the audio, but to do it yourself try including ?audio=1 at the end of the src for the video.

Example: Embed Vine Batdad video

发布评论

评论列表(0)

  1. 暂无评论