This example is part of this article.
This is an example for an HLS delivery with basic security. Nginx compiled with nginx-rtmp-module & secure-link is used as media server. Features:
- Domain filtering
- Referrer filtering
- Embed buster
This example is part of this article.
This is an example for an HLS delivery with basic security. Nginx compiled with nginx-rtmp-module & secure-link is used as media server. Features:
| function postsCarousel() { | |
| var checkWidth = $(window).width(); | |
| var owlPost = $("#latest-posts .posts-wrapper"); | |
| if (checkWidth > 767) { | |
| if (typeof owlPost.data('owl.carousel') != 'undefined') { | |
| owlPost.data('owl.carousel').destroy(); | |
| } | |
| owlPost.removeClass('owl-carousel'); | |
| } else if (checkWidth < 768) { | |
| owlPost.addClass('owl-carousel'); |