我不想让VideoPlayer具有Video本身的高度,所以不会有黑条。这样,我无法将height
设置为恒定值,因为在具有不同宽度的其他设备上,视频具有黑条。当我这样做时:
<VideoPlayer #video
src="https://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
autoplay="true"
fill="false"
muted="true">
</VideoPlayer>
它看起来像这样:
我知道视频宽高比是16/9。
我尝试了类似这样的操作:[height]="video.clientWidth / (16/9)"
,但是它不起作用。
我该怎么办?