我想通过videojs播放Dailymotion视频。我正在为此https://github.com/benjipott/video.js-dailymotion
使用视频js插件这是我的代码
Uncaught TypeError: Cannot read property 'play' of undefined
at N (video.js:68)
at d.s.play (video.js:68)
at d.t.rb.u (video.js:109)
at HTMLDivElement.e (video.js:14)
at HTMLDivElement.e.ba.e.ba (video.js:7)
但是我遇到了这个问题
// This will gather numbers 1 to 13 and combine them in groups of
// three while preserving the order even if its a parallel stream.
final List<List<String>> triads = IntStream.range(1, 14)
.parallel()
.boxed()
.map(Object::toString)
.collect(ArrayList::new, accumulator, combiner);
System.out.println(triads.toString())
我已经搜索过,但没有一个解决方案正在发挥作用。谢谢。