是否可以播放没有IFRAME和播放器的youtube视频?
我希望能够在视频纹理上播放视频。
你可以看到我在这里做了:
http://dev3.garyconstable.co.uk/
这是将播放我自己的mp4的代码
<a-scene>
<a-assets>
<video id="video" autobuffer height="240" width="360" autoplay loop="true" crossorigin="anonymous" webkit-playsinline>
<source src="media/videos_s_7.mp4">
</video>
</a-assets>
<a-videosphere id="vid-sphere" autopla="true"></a-videosphere>
</a-scene>
我希望能够播放来自youtube的视频。
JW播放器似乎可以播放youtube视频的
https://support.jwplayer.com/customer/portal/articles/1406725-youtube-video-embed
是可能的,我的选择是什么?youtube是否提供任何额外功能的付费服务?
这个任务最好忘记任何球员。
注意:
JW Player uses the official iFrame player API from YouTube to play a video inside of JW Player.
原因:
- youtube.com将不接受跨域服务器。
你需要为你的web应用程序添加服务器部分。我使用nodejs。
程序如下:
----> Use classic google , youtube APi login/search
----> Make search and collect search result data (Most important is `videoId` )
----> Save to your own server
----> Call from web app your new route.
现在你可以做任何你想做的事了。
直接演示链接:https://maximumroulette.com: 3000
完整解:https://github.com/zlatnaspirala/vue-typescript-starter