Skip to content

Instantly share code, notes, and snippets.

@wodCZ
Created February 21, 2018 15:34
Show Gist options
  • Save wodCZ/9e0a750de2b599dfb713829184fb91e0 to your computer and use it in GitHub Desktop.
Save wodCZ/9e0a750de2b599dfb713829184fb91e0 to your computer and use it in GitHub Desktop.
react native least PITA video
return (<WebView
style={{
width: '100%',
aspectRatio: this.state.videoConfig.aspectRatio,
}}
onError={() => this.setState({offline: true})}
source={{
html: `
<head>
<link href="http://vjs.zencdn.net/6.6.3/video-js.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/5.12.2/videojs-contrib-hls.min.js"></script>
</head>
<body style="padding: 0;margin: 0">
<video id="my-video" class="video-js" controls preload="auto" width="100%"
poster="${this.state.videoConfig.thumb}" data-setup="{}">
<source src="${this.state.videoConfig.files.hls}" type="application/x-mpegURL">
<source src="${this.state.videoConfig.files.progressive.default}" type='video/mp4'>
</video>
<script src="http://vjs.zencdn.net/6.6.3/video.js"></script>
</body>`
}}
/>);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment