Skip to content

Commit

Permalink
release 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
snowinszu committed Aug 3, 2021
1 parent a504f30 commit 61c60a4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/artplayer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<script>
var art = new Artplayer({
container: '.artplayer-app',
url: 'https://wowza.peer5.com/live/smil:bbb_abr.smil/chunklist_b591000.m3u8',
url: 'https://test-streams.mux.dev/x36xhzz/url_8/193039199_mp4_h264_aac_fhd_7.m3u8',
customType: {
m3u8: function (video, url) {
var hls = new Hls({
Expand Down
1 change: 0 additions & 1 deletion demo/jwplayer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

<!-- CDNBye Plugin -->
<script src="//cdn.jsdelivr.net/npm/cdnbye@latest"></script>
<!--<script src="../dist/hls.min.js"></script>-->
<!--<script src="//cdn.jsdelivr.net/gh/teranode/jw-provider@latest/provider.hlsjs.js"></script>-->
<!-- JW Player Builds -->
<script src="//ssl.p.jwpcdn.com/player/v/8.20.2/jwplayer.js"></script>
Expand Down
7 changes: 6 additions & 1 deletion demo/videojs.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<link href="//vjs.zencdn.net/7.8.2/video-js.min.css" rel="stylesheet">
<script src="//vjs.zencdn.net/7.8.2/video.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hls.js@0.14.13"></script>
<!-- videojs-hls-quality-selector -->
<script src="//cdn.jsdelivr.net/npm/videojs-contrib-quality-levels@2.0.9/dist/videojs-contrib-quality-levels.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/videojs-hls-quality-selector@1.1.1/dist/videojs-hls-quality-selector.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/cdnbye@latest/dist/videojs-hlsjs-plugin.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/cdnbye@latest/dist/hlsjs-p2p-engine.min.js"></script>
</head>
Expand All @@ -19,12 +22,13 @@ <h3>download info:</h3>
sources:[
{
src: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8',
}
},
],
html5: {
hlsjsConfig: {
// Put your hls.js config here
// debug: true,
maxBufferSize: 0,
maxBufferLength: 10,
liveSyncDurationCount: 10,
}
Expand All @@ -42,6 +46,7 @@ <h3>download info:</h3>
}
});
var player = videojs('video', options);
player.hlsQualitySelector();
</script>
</body>
</html>
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "cdnbye",
"version": "1.16.0",
"version": "1.17.0",
"description": "Let your viewers become your unlimitedly scalable CDN.",
"main": "./dist/hls.min.js",
"scripts": {
"git-push": "git add demo && git add package.json && git add README.md && git add Readme_zh.md && git commit -m 'release 1.16.0' && git push origin master",
"git-push": "git add demo && git add package.json && git add README.md && git add Readme_zh.md && git commit -m 'release 1.17.0' && git push origin master",
"git-pull": "git pull origin master",
"publish": "npm publish",
"test": "webpack --progress --env.test-bundle"
Expand Down

0 comments on commit 61c60a4

Please sign in to comment.