2π
β
Yes, it is possible. But you have to build your own HTML. Just copy HTML from Vimeo page with your chosen options and replace video URL with {{ my_video.url }}
. So it can look like that:
{% video item.video as my_video %}
<iframe
src="{{ my_video.url }}?byline=0&portrait=0&color=ff0179&autoplay=1"
width="500" height="281" frameborder="0"
webkitAllowFullScreen mozallowfullscreen allowFullScreen>
</iframe>
{% endvideo %}
π€yetty
Source:stackexchange.com