react-video-renderer
react-video-renderer copied to clipboard
video dimensions
How can you specify the video height and width?
I believe you will do that by:
<Video src="https://mysite.com/video.mp4">
{(video, state, actions) => (
<div style={{width: 100, height: 100}}>
{video}
</div>
)
</Video>