').addClass(settings.dotsClass).appendTo(this.$element)).addClass('disabled');
-
- this._controls.$absolute.on('click', 'button', $.proxy(function(e) {
- var index = $(e.target).parent().is(this._controls.$absolute)
- ? $(e.target).index() : $(e.target).parent().index();
-
- e.preventDefault();
-
- this.to(index, settings.dotsSpeed);
- }, this));
-
- /*$el.on('focusin', function() {
- $(document).off(".carousel");
-
- $(document).on('keydown.carousel', function(e) {
- if(e.keyCode == 37) {
- $el.trigger('prev.owl')
- }
- if(e.keyCode == 39) {
- $el.trigger('next.owl')
- }
- });
- });*/
-
- // override public methods of the carousel
- for (override in this._overrides) {
- this._core[override] = $.proxy(this[override], this);
- }
- };
-
- /**
- * Destroys the plugin.
- * @protected
- */
- Navigation.prototype.destroy = function() {
- var handler, control, property, override, settings;
- settings = this._core.settings;
-
- for (handler in this._handlers) {
- this.$element.off(handler, this._handlers[handler]);
- }
- for (control in this._controls) {
- if (control === '$relative' && settings.navContainer) {
- this._controls[control].html('');
- } else {
- this._controls[control].remove();
- }
- }
- for (override in this.overides) {
- this._core[override] = this._overrides[override];
- }
- for (property in Object.getOwnPropertyNames(this)) {
- typeof this[property] != 'function' && (this[property] = null);
- }
- };
-
- /**
- * Updates the internal state.
- * @protected
- */
- Navigation.prototype.update = function() {
- var i, j, k,
- lower = this._core.clones().length / 2,
- upper = lower + this._core.items().length,
- maximum = this._core.maximum(true),
- settings = this._core.settings,
- size = settings.center || settings.autoWidth || settings.dotsData
- ? 1 : settings.dotsEach || settings.items;
-
- if (settings.slideBy !== 'page') {
- settings.slideBy = Math.min(settings.slideBy, settings.items);
- }
-
- if (settings.dots || settings.slideBy == 'page') {
- this._pages = [];
-
- for (i = lower, j = 0, k = 0; i < upper; i++) {
- if (j >= size || j === 0) {
- this._pages.push({
- start: Math.min(maximum, i - lower),
- end: i - lower + size - 1
- });
- if (Math.min(maximum, i - lower) === maximum) {
- break;
- }
- j = 0, ++k;
- }
- j += this._core.mergers(this._core.relative(i));
- }
- }
- };
-
- /**
- * Draws the user interface.
- * @todo The option `dotsData` wont work.
- * @protected
- */
- Navigation.prototype.draw = function() {
- var difference,
- settings = this._core.settings,
- disabled = this._core.items().length <= settings.items,
- index = this._core.relative(this._core.current()),
- loop = settings.loop || settings.rewind;
-
- this._controls.$relative.toggleClass('disabled', !settings.nav || disabled);
-
- if (settings.nav) {
- this._controls.$previous.toggleClass('disabled', !loop && index <= this._core.minimum(true));
- this._controls.$next.toggleClass('disabled', !loop && index >= this._core.maximum(true));
- }
-
- this._controls.$absolute.toggleClass('disabled', !settings.dots || disabled);
-
- if (settings.dots) {
- difference = this._pages.length - this._controls.$absolute.children().length;
-
- if (settings.dotsData && difference !== 0) {
- this._controls.$absolute.html(this._templates.join(''));
- } else if (difference > 0) {
- this._controls.$absolute.append(new Array(difference + 1).join(this._templates[0]));
- } else if (difference < 0) {
- this._controls.$absolute.children().slice(difference).remove();
- }
-
- this._controls.$absolute.find('.active').removeClass('active');
- this._controls.$absolute.children().eq($.inArray(this.current(), this._pages)).addClass('active');
- }
- };
-
- /**
- * Extends event data.
- * @protected
- * @param {Event} event - The event object which gets thrown.
- */
- Navigation.prototype.onTrigger = function(event) {
- var settings = this._core.settings;
-
- event.page = {
- index: $.inArray(this.current(), this._pages),
- count: this._pages.length,
- size: settings && (settings.center || settings.autoWidth || settings.dotsData
- ? 1 : settings.dotsEach || settings.items)
- };
- };
-
- /**
- * Gets the current page position of the carousel.
- * @protected
- * @returns {Number}
- */
- Navigation.prototype.current = function() {
- var current = this._core.relative(this._core.current());
- return $.grep(this._pages, $.proxy(function(page, index) {
- return page.start <= current && page.end >= current;
- }, this)).pop();
- };
-
- /**
- * Gets the current succesor/predecessor position.
- * @protected
- * @returns {Number}
- */
- Navigation.prototype.getPosition = function(successor) {
- var position, length,
- settings = this._core.settings;
-
- if (settings.slideBy == 'page') {
- position = $.inArray(this.current(), this._pages);
- length = this._pages.length;
- successor ? ++position : --position;
- position = this._pages[((position % length) + length) % length].start;
- } else {
- position = this._core.relative(this._core.current());
- length = this._core.items().length;
- successor ? position += settings.slideBy : position -= settings.slideBy;
- }
-
- return position;
- };
-
- /**
- * Slides to the next item or page.
- * @public
- * @param {Number} [speed=false] - The time in milliseconds for the transition.
- */
- Navigation.prototype.next = function(speed) {
- $.proxy(this._overrides.to, this._core)(this.getPosition(true), speed);
- };
-
- /**
- * Slides to the previous item or page.
- * @public
- * @param {Number} [speed=false] - The time in milliseconds for the transition.
- */
- Navigation.prototype.prev = function(speed) {
- $.proxy(this._overrides.to, this._core)(this.getPosition(false), speed);
- };
-
- /**
- * Slides to the specified item or page.
- * @public
- * @param {Number} position - The position of the item or page.
- * @param {Number} [speed] - The time in milliseconds for the transition.
- * @param {Boolean} [standard=false] - Whether to use the standard behaviour or not.
- */
- Navigation.prototype.to = function(position, speed, standard) {
- var length;
-
- if (!standard && this._pages.length) {
- length = this._pages.length;
- $.proxy(this._overrides.to, this._core)(this._pages[((position % length) + length) % length].start, speed);
- } else {
- $.proxy(this._overrides.to, this._core)(position, speed);
- }
- };
-
- $.fn.owlCarousel.Constructor.Plugins.Navigation = Navigation;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Hash Plugin
- * @version 2.3.4
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
- 'use strict';
-
- /**
- * Creates the hash plugin.
- * @class The Hash Plugin
- * @param {Owl} carousel - The Owl Carousel
- */
- var Hash = function(carousel) {
- /**
- * Reference to the core.
- * @protected
- * @type {Owl}
- */
- this._core = carousel;
-
- /**
- * Hash index for the items.
- * @protected
- * @type {Object}
- */
- this._hashes = {};
-
- /**
- * The carousel element.
- * @type {jQuery}
- */
- this.$element = this._core.$element;
-
- /**
- * All event handlers.
- * @protected
- * @type {Object}
- */
- this._handlers = {
- 'initialized.owl.carousel': $.proxy(function(e) {
- if (e.namespace && this._core.settings.startPosition === 'URLHash') {
- $(window).trigger('hashchange.owl.navigation');
- }
- }, this),
- 'prepared.owl.carousel': $.proxy(function(e) {
- if (e.namespace) {
- var hash = $(e.content).find('[data-hash]').addBack('[data-hash]').attr('data-hash');
-
- if (!hash) {
- return;
- }
-
- this._hashes[hash] = e.content;
- }
- }, this),
- 'changed.owl.carousel': $.proxy(function(e) {
- if (e.namespace && e.property.name === 'position') {
- var current = this._core.items(this._core.relative(this._core.current())),
- hash = $.map(this._hashes, function(item, hash) {
- return item === current ? hash : null;
- }).join();
-
- if (!hash || window.location.hash.slice(1) === hash) {
- return;
- }
-
- window.location.hash = hash;
- }
- }, this)
- };
-
- // set default options
- this._core.options = $.extend({}, Hash.Defaults, this._core.options);
-
- // register the event handlers
- this.$element.on(this._handlers);
-
- // register event listener for hash navigation
- $(window).on('hashchange.owl.navigation', $.proxy(function(e) {
- var hash = window.location.hash.substring(1),
- items = this._core.$stage.children(),
- position = this._hashes[hash] && items.index(this._hashes[hash]);
-
- if (position === undefined || position === this._core.current()) {
- return;
- }
-
- this._core.to(this._core.relative(position), false, true);
- }, this));
- };
-
- /**
- * Default options.
- * @public
- */
- Hash.Defaults = {
- URLhashListener: false
- };
-
- /**
- * Destroys the plugin.
- * @public
- */
- Hash.prototype.destroy = function() {
- var handler, property;
-
- $(window).off('hashchange.owl.navigation');
-
- for (handler in this._handlers) {
- this._core.$element.off(handler, this._handlers[handler]);
- }
- for (property in Object.getOwnPropertyNames(this)) {
- typeof this[property] != 'function' && (this[property] = null);
- }
- };
-
- $.fn.owlCarousel.Constructor.Plugins.Hash = Hash;
-
-})(window.Zepto || window.jQuery, window, document);
-
-/**
- * Support Plugin
- *
- * @version 2.3.4
- * @author Vivid Planet Software GmbH
- * @author Artus Kolanowski
- * @author David Deutsch
- * @license The MIT License (MIT)
- */
-;(function($, window, document, undefined) {
-
- var style = $('
').get(0).style,
- prefixes = 'Webkit Moz O ms'.split(' '),
- events = {
- transition: {
- end: {
- WebkitTransition: 'webkitTransitionEnd',
- MozTransition: 'transitionend',
- OTransition: 'oTransitionEnd',
- transition: 'transitionend'
- }
- },
- animation: {
- end: {
- WebkitAnimation: 'webkitAnimationEnd',
- MozAnimation: 'animationend',
- OAnimation: 'oAnimationEnd',
- animation: 'animationend'
- }
- }
- },
- tests = {
- csstransforms: function() {
- return !!test('transform');
- },
- csstransforms3d: function() {
- return !!test('perspective');
- },
- csstransitions: function() {
- return !!test('transition');
- },
- cssanimations: function() {
- return !!test('animation');
- }
- };
-
- function test(property, prefixed) {
- var result = false,
- upper = property.charAt(0).toUpperCase() + property.slice(1);
-
- $.each((property + ' ' + prefixes.join(upper + ' ') + upper).split(' '), function(i, property) {
- if (style[property] !== undefined) {
- result = prefixed ? property : true;
- return false;
- }
- });
-
- return result;
- }
-
- function prefixed(property) {
- return test(property, true);
- }
-
- if (tests.csstransitions()) {
- /* jshint -W053 */
- $.support.transition = new String(prefixed('transition'))
- $.support.transition.end = events.transition.end[ $.support.transition ];
- }
-
- if (tests.cssanimations()) {
- /* jshint -W053 */
- $.support.animation = new String(prefixed('animation'))
- $.support.animation.end = events.animation.end[ $.support.animation ];
- }
-
- if (tests.csstransforms()) {
- /* jshint -W053 */
- $.support.transform = new String(prefixed('transform'));
- $.support.transform3d = tests.csstransforms3d();
- }
-
-})(window.Zepto || window.jQuery, window, document);
diff --git a/docs/assets/vendor/owl.carousel/owl.carousel.min.js b/docs/assets/vendor/owl.carousel/owl.carousel.min.js
deleted file mode 100644
index fbbffc5..0000000
--- a/docs/assets/vendor/owl.carousel/owl.carousel.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * Owl Carousel v2.3.4
- * Copyright 2013-2018 David Deutsch
- * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
- */
-!function(a,b,c,d){function e(b,c){this.settings=null,this.options=a.extend({},e.Defaults,c),this.$element=a(b),this._handlers={},this._plugins={},this._supress={},this._current=null,this._speed=null,this._coordinates=[],this._breakpoint=null,this._width=null,this._items=[],this._clones=[],this._mergers=[],this._widths=[],this._invalidated={},this._pipe=[],this._drag={time:null,target:null,pointer:null,stage:{start:null,current:null},direction:null},this._states={current:{},tags:{initializing:["busy"],animating:["busy"],dragging:["interacting"]}},a.each(["onResize","onThrottledResize"],a.proxy(function(b,c){this._handlers[c]=a.proxy(this[c],this)},this)),a.each(e.Plugins,a.proxy(function(a,b){this._plugins[a.charAt(0).toLowerCase()+a.slice(1)]=new b(this)},this)),a.each(e.Workers,a.proxy(function(b,c){this._pipe.push({filter:c.filter,run:a.proxy(c.run,this)})},this)),this.setup(),this.initialize()}e.Defaults={items:3,loop:!1,center:!1,rewind:!1,checkVisibility:!0,mouseDrag:!0,touchDrag:!0,pullDrag:!0,freeDrag:!1,margin:0,stagePadding:0,merge:!1,mergeFit:!0,autoWidth:!1,startPosition:0,rtl:!1,smartSpeed:250,fluidSpeed:!1,dragEndSpeed:!1,responsive:{},responsiveRefreshRate:200,responsiveBaseElement:b,fallbackEasing:"swing",slideTransition:"",info:!1,nestedItemSelector:!1,itemElement:"div",stageElement:"div",refreshClass:"owl-refresh",loadedClass:"owl-loaded",loadingClass:"owl-loading",rtlClass:"owl-rtl",responsiveClass:"owl-responsive",dragClass:"owl-drag",itemClass:"owl-item",stageClass:"owl-stage",stageOuterClass:"owl-stage-outer",grabClass:"owl-grab"},e.Width={Default:"default",Inner:"inner",Outer:"outer"},e.Type={Event:"event",State:"state"},e.Plugins={},e.Workers=[{filter:["width","settings"],run:function(){this._width=this.$element.width()}},{filter:["width","items","settings"],run:function(a){a.current=this._items&&this._items[this.relative(this._current)]}},{filter:["items","settings"],run:function(){this.$stage.children(".cloned").remove()}},{filter:["width","items","settings"],run:function(a){var b=this.settings.margin||"",c=!this.settings.autoWidth,d=this.settings.rtl,e={width:"auto","margin-left":d?b:"","margin-right":d?"":b};!c&&this.$stage.children().css(e),a.css=e}},{filter:["width","items","settings"],run:function(a){var b=(this.width()/this.settings.items).toFixed(3)-this.settings.margin,c=null,d=this._items.length,e=!this.settings.autoWidth,f=[];for(a.items={merge:!1,width:b};d--;)c=this._mergers[d],c=this.settings.mergeFit&&Math.min(c,this.settings.items)||c,a.items.merge=c>1||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g>0;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i,g-=1;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],e.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(a("
",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},e.prototype.initializeItems=function(){var b=this.$element.find(".owl-item");if(b.length)return this._items=b.get().map(function(b){return a(b)}),this._mergers=this._items.map(function(){return 1}),void this.refresh();this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass)},e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var a,b,c;a=this.$element.find("img"),b=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,c=this.$element.children(b).width(),a.length&&c<=0&&this.preloadAutoWidthImages(a)}this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.prototype.refresh=function(){this.enter("refreshing"),this.trigger("refresh"),this.setup(),this.optionsLogic(),this.$element.addClass(this.options.refreshClass),this.update(),this.$element.removeClass(this.options.refreshClass),this.leave("refreshing"),this.trigger("refreshed")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.isVisible()&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),!1!==this.settings.responsive&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var e=-1,f=30,g=this.width(),h=this.coordinates();return this.settings.freeDrag||a.each(h,a.proxy(function(a,i){return"left"===c&&b>i-f&&bi-g-f&&b",h[a+1]!==d?h[a+1]:i-g)&&(e="left"===c?a+1:a),-1===e},this)),this.settings.loop||(this.op(b,">",h[this.minimum()])?e=b=this.minimum():this.op(b,"<",h[this.maximum()])&&(e=b=this.maximum())),e},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"+(this.settings.slideTransition?" "+this.settings.slideTransition:"")}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){(a=this.normalize(a))!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){if(b=this._items.length)for(c=this._items[--b].width(),d=this.$element.width();b--&&!((c+=this._items[b].width()+this.settings.margin)>d););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2==0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,(d=((a-h)%g+g)%g+h)!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.isVisible()&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){(a=this.normalize(a,!0))!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),!1!==this.settings.responsive&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].destroy();this.$stage.children(".cloned").remove(),this.$stage.unwrap(),this.$stage.children().contents().unwrap(),this.$stage.children().unwrap(),this.$stage.remove(),this.$element.removeClass(this.options.refreshClass).removeClass(this.options.loadingClass).removeClass(this.options.loadedClass).removeClass(this.options.rtlClass).removeClass(this.options.dragClass).removeClass(this.options.grabClass).attr("class",this.$element.attr("class").replace(new RegExp(this.options.responsiveClass+"-\\S+\\s","g"),"")).removeData("owl.carousel")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.isVisible(),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.isVisible()!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type)){var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);for(c.lazyLoadEager>0&&(e+=c.lazyLoadEager,c.loop&&(g-=c.lazyLoadEager,e++));f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src")||f.attr("data-srcset");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):f.is("source")?f.one("load.owl.lazy",a.proxy(function(){this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("srcset",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(c){this._core=c,this._previousHeight=null,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"===a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._intervalId=null;var d=this;a(b).on("load",function(){d._core.settings.autoHeight&&d.update()}),a(b).resize(function(){d._core.settings.autoHeight&&(null!=d._intervalId&&clearTimeout(d._intervalId),d._intervalId=setTimeout(function(){d.update()},250))})};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.settings.lazyLoad,e=this._core.$stage.children().toArray().slice(b,c),f=[],g=0;a.each(e,function(b,c){f.push(a(c).height())}),g=Math.max.apply(null,f),g<=1&&d&&this._previousHeight&&(g=this._previousHeight),this._previousHeight=g,this._core.$stage.parent().height(g).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.match(/(http:|https:|)\/\/(player.|www.|app.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com|be\-nocookie\.com)|vzaar\.com)\/(video\/|videos\/|embed\/|channels\/.+\/|groups\/.+\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?"width:"+c.width+"px;height:"+c.height+"px;":"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(c){e='
',d=k.lazyLoad?a("
",{class:"owl-video-tn "+j,srcType:c}):a("
",{class:"owl-video-tn",style:"opacity:1;background-image:url("+c+")"}),b.after(d),b.after(e)};if(b.wrap(a("
",{class:"owl-video-wrapper",style:g})),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.prototype.stop=function(){this._core.trigger("stop",null,"video"),this._playing.find(".owl-video-frame").remove(),this._playing.removeClass("owl-video-playing"),this._playing=null,this._core.leave("playing"),this._core.trigger("stopped",null,"video")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),c=a(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,
-animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push(''+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['‹ ','› '],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a('
').addClass(c.dotClass).append(a("")).prop("outerHTML")]),this._controls.$absolute=(c.dotsContainer?a(c.dotsContainer):a("").addClass(c.dotsClass).appendTo(this.$element)).addClass("disabled"),this._controls.$absolute.on("click","button",a.proxy(function(b){var d=a(b.target).parent().is(this._controls.$absolute)?a(b.target).index():a(b.target).parent().index();b.preventDefault(),this.to(d,c.dotsSpeed)},this));for(b in this._overrides)this._core[b]=a.proxy(this[b],this)},e.prototype.destroy=function(){var a,b,c,d,e;e=this._core.settings;for(a in this._handlers)this.$element.off(a,this._handlers[a]);for(b in this._controls)"$relative"===b&&e.navContainer?this._controls[b].html(""):this._controls[b].remove();for(d in this.overides)this._core[d]=this._overrides[d];for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},e.prototype.update=function(){var a,b,c,d=this._core.clones().length/2,e=d+this._core.items().length,f=this._core.maximum(!0),g=this._core.settings,h=g.center||g.autoWidth||g.dotsData?1:g.dotsEach||g.items;if("page"!==g.slideBy&&(g.slideBy=Math.min(g.slideBy,g.items)),g.dots||"page"==g.slideBy)for(this._pages=[],a=d,b=0,c=0;a
=h||0===b){if(this._pages.push({start:Math.min(f,a-d),end:a-d+h-1}),Math.min(f,a-d)===f)break;b=0,++c}b+=this._core.mergers(this._core.relative(a))}},e.prototype.draw=function(){var b,c=this._core.settings,d=this._core.items().length<=c.items,e=this._core.relative(this._core.current()),f=c.loop||c.rewind;this._controls.$relative.toggleClass("disabled",!c.nav||d),c.nav&&(this._controls.$previous.toggleClass("disabled",!f&&e<=this._core.minimum(!0)),this._controls.$next.toggleClass("disabled",!f&&e>=this._core.maximum(!0))),this._controls.$absolute.toggleClass("disabled",!c.dots||d),c.dots&&(b=this._pages.length-this._controls.$absolute.children().length,c.dotsData&&0!==b?this._controls.$absolute.html(this._templates.join("")):b>0?this._controls.$absolute.append(new Array(b+1).join(this._templates[0])):b<0&&this._controls.$absolute.children().slice(b).remove(),this._controls.$absolute.find(".active").removeClass("active"),this._controls.$absolute.children().eq(a.inArray(this.current(),this._pages)).addClass("active"))},e.prototype.onTrigger=function(b){var c=this._core.settings;b.page={index:a.inArray(this.current(),this._pages),count:this._pages.length,size:c&&(c.center||c.autoWidth||c.dotsData?1:c.dotsEach||c.items)}},e.prototype.current=function(){var b=this._core.relative(this._core.current());return a.grep(this._pages,a.proxy(function(a,c){return a.start<=b&&a.end>=b},this)).pop()},e.prototype.getPosition=function(b){var c,d,e=this._core.settings;return"page"==e.slideBy?(c=a.inArray(this.current(),this._pages),d=this._pages.length,b?++c:--c,c=this._pages[(c%d+d)%d].start):(c=this._core.relative(this._core.current()),d=this._core.items().length,b?c+=e.slideBy:c-=e.slideBy),c},e.prototype.next=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!0),b)},e.prototype.prev=function(b){a.proxy(this._overrides.to,this._core)(this.getPosition(!1),b)},e.prototype.to=function(b,c,d){var e;!d&&this._pages.length?(e=this._pages.length,a.proxy(this._overrides.to,this._core)(this._pages[(b%e+e)%e].start,c)):a.proxy(this._overrides.to,this._core)(b,c)},a.fn.owlCarousel.Constructor.Plugins.Navigation=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(c){this._core=c,this._hashes={},this.$element=this._core.$element,this._handlers={"initialized.owl.carousel":a.proxy(function(c){c.namespace&&"URLHash"===this._core.settings.startPosition&&a(b).trigger("hashchange.owl.navigation")},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find("[data-hash]").addBack("[data-hash]").attr("data-hash");if(!c)return;this._hashes[c]=b.content}},this),"changed.owl.carousel":a.proxy(function(c){if(c.namespace&&"position"===c.property.name){var d=this._core.items(this._core.relative(this._core.current())),e=a.map(this._hashes,function(a,b){return a===d?b:null}).join();if(!e||b.location.hash.slice(1)===e)return;b.location.hash=e}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers),a(b).on("hashchange.owl.navigation",a.proxy(function(a){var c=b.location.hash.substring(1),e=this._core.$stage.children(),f=this._hashes[c]&&e.index(this._hashes[c]);f!==d&&f!==this._core.current()&&this._core.to(this._core.relative(f),!1,!0)},this))};e.Defaults={URLhashListener:!1},e.prototype.destroy=function(){var c,d;a(b).off("hashchange.owl.navigation");for(c in this._handlers)this._core.$element.off(c,this._handlers[c]);for(d in Object.getOwnPropertyNames(this))"function"!=typeof this[d]&&(this[d]=null)},a.fn.owlCarousel.Constructor.Plugins.Hash=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){function e(b,c){var e=!1,f=b.charAt(0).toUpperCase()+b.slice(1);return a.each((b+" "+h.join(f+" ")+f).split(" "),function(a,b){if(g[b]!==d)return e=!c||b,!1}),e}function f(a){return e(a,!0)}var g=a("").get(0).style,h="Webkit Moz O ms".split(" "),i={transition:{end:{WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",transition:"transitionend"}},animation:{end:{WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd",animation:"animationend"}}},j={csstransforms:function(){return!!e("transform")},csstransforms3d:function(){return!!e("perspective")},csstransitions:function(){return!!e("transition")},cssanimations:function(){return!!e("animation")}};j.csstransitions()&&(a.support.transition=new String(f("transition")),a.support.transition.end=i.transition.end[a.support.transition]),j.cssanimations()&&(a.support.animation=new String(f("animation")),a.support.animation.end=i.animation.end[a.support.animation]),j.csstransforms()&&(a.support.transform=new String(f("transform")),a.support.transform3d=j.csstransforms3d())}(window.Zepto||window.jQuery,window,document);
\ No newline at end of file
diff --git a/docs/assets/vendor/venobox/venobox.css b/docs/assets/vendor/venobox/venobox.css
deleted file mode 100644
index 03d085f..0000000
--- a/docs/assets/vendor/venobox/venobox.css
+++ /dev/null
@@ -1,225 +0,0 @@
-/* ------ venobox.css --------*/
-.vbox-overlay *, .vbox-overlay *:before, .vbox-overlay *:after{
- -webkit-backface-visibility: hidden;
- -webkit-box-sizing:border-box;
- -moz-box-sizing:border-box;
- box-sizing:border-box;
-}
-.vbox-overlay * {
- -webkit-backface-visibility: visible;
- backface-visibility: visible;
-}
-.vbox-overlay{
- display: -webkit-flex;
- display: flex;
- -webkit-flex-direction: column;
- flex-direction: column;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-align-items: center;
- align-items: center;
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- z-index: 1040;
- -webkit-transform:translateZ(1000px);
- transform: translateZ(1000px);
- transform-style: preserve-3d;
-}
-
-/* ----- navigation ----- */
-.vbox-title{
- width: 100%;
- height: 40px;
- float: left;
- text-align: center;
- line-height: 28px;
- font-size: 12px;
- padding: 6px 40px;
- overflow: hidden;
- position: fixed;
- display: none;
- left: 0;
- z-index: 1050;
-}
-.vbox-close{
- cursor: pointer;
- position: fixed;
- top: -1px;
- right: 0;
- width: 50px;
- height: 40px;
- padding: 6px;
- display: block;
- background-position:10px center;
- overflow: hidden;
- font-size: 24px;
- line-height: 1;
- text-align: center;
- z-index: 1050;
-}
-.vbox-num{
- cursor: pointer;
- position: fixed;
- left: 0;
- height: 40px;
- display: block;
- overflow: hidden;
- line-height: 28px;
- font-size: 12px;
- padding: 6px 10px;
- display: none;
- z-index: 1050;
-}
-/* ----- navigation ARROWS ----- */
-.vbox-next, .vbox-prev{
- position: fixed;
- top: 50%;
- margin-top: -15px;
- overflow: hidden;
- cursor: pointer;
- display: block;
- width: 45px;
- height: 45px;
- z-index: 1050;
-}
-.vbox-next span, .vbox-prev span{
- position: relative;
- width: 20px;
- height: 20px;
- border: 2px solid transparent;
- border-top-color: #B6B6B6;
- border-right-color: #B6B6B6;
- text-indent: -100px;
- position: absolute;
- top: 8px;
- display: block;
-}
-.vbox-prev{
- left: 15px;
-}
-.vbox-next{
- right: 15px;
-}
-.vbox-prev span{
- left: 10px;
- -ms-transform: rotate(-135deg);
- -webkit-transform: rotate(-135deg);
- transform: rotate(-135deg);
-}
-.vbox-next span{
- -ms-transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- right: 10px;
-}
-/* ------- inline window ------ */
-.vbox-inline{
- width: 420px;
- height: 315px;
- height: 70vh;
- padding: 10px;
- background: #fff;
- margin: 0 auto;
- overflow: auto;
- text-align: left;
-}
-/* ------- Video & iFrames window ------ */
-.venoframe{
- max-width: 100%;
- width: 100%;
- border: none;
- width: 100%;
- height: 260px;
- height: 70vh;
-}
-.venoframe.vbvid{
- height: 260px;
-}
-@media (min-width: 768px) {
- .venoframe, .vbox-inline{
- width: 90%;
- height: 360px;
- height: 70vh;
- }
- .venoframe.vbvid{
- width: 640px;
- height: 360px;
- }
-}
-@media (min-width: 992px) {
- .venoframe, .vbox-inline{
- max-width: 1200px;
- width: 80%;
- height: 540px;
- height: 70vh;
- }
- .venoframe.vbvid{
- width: 960px;
- height: 540px;
- }
-}
-/*
-Please do NOT edit this part!
-or at least read this note: http://i.imgur.com/7C0ws9e.gif
-*/
-.vbox-open{
- overflow: hidden;
-}
-.vbox-container{
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- overflow-x: hidden;
- overflow-y: scroll;
- overflow-scrolling: touch;
- -webkit-overflow-scrolling: touch;
- z-index: 20;
- max-height: 100%;
-
-}
-
-.vbox-content{
- text-align: center;
- float: left;
- width: 100%;
- position: relative;
- overflow: hidden;
- padding: 20px 10px;
-}
-.vbox-container img{
- max-width: 100%;
- height: auto;
-}
-.vbox-figlio{
- box-shadow: 0 0 12px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
- max-width: 100%;
- text-align: initial;
-}
-img.vbox-figlio{
- -webkit-user-select: none;
--khtml-user-select: none;
--moz-user-select: none;
--o-user-select: none;
-user-select: none;
-}
-.vbox-content.swipe-left{
- margin-left: -200px !important;
-}
-.vbox-content.swipe-right{
- margin-left: 200px !important;
-}
-.vbox-animated{
- webkit-transition: margin 300ms ease-out;
- transition: margin 300ms ease-out;
-}
-
-/* ---------- preloader ----------
- * SPINKIT
- * http://tobiasahlin.com/spinkit/
--------------------------------- */
-.sk-double-bounce,.sk-rotating-plane{width:40px;height:40px;margin:40px auto}.sk-rotating-plane{background-color:#333;-webkit-animation:sk-rotatePlane 1.2s infinite ease-in-out;animation:sk-rotatePlane 1.2s infinite ease-in-out}@-webkit-keyframes sk-rotatePlane{0%{-webkit-transform:perspective(120px) rotateX(0) rotateY(0);transform:perspective(120px) rotateX(0) rotateY(0)}50%{-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0);transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes sk-rotatePlane{0%{-webkit-transform:perspective(120px) rotateX(0) rotateY(0);transform:perspective(120px) rotateX(0) rotateY(0)}50%{-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0);transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.sk-double-bounce{position:relative}.sk-double-bounce .sk-child{width:100%;height:100%;border-radius:50%;background-color:#333;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-doubleBounce 2s infinite ease-in-out;animation:sk-doubleBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-child,.sk-spinner-pulse,.sk-three-bounce .sk-child{background-color:#333;border-radius:100%}.sk-double-bounce .sk-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.sk-wave{margin:40px auto;width:50px;height:40px;text-align:center;font-size:10px}.sk-wave .sk-rect{background-color:#333;height:100%;width:6px;display:inline-block;-webkit-animation:sk-waveStretchDelay 1.2s infinite ease-in-out;animation:sk-waveStretchDelay 1.2s infinite ease-in-out}.sk-wave .sk-rect1{-webkit-animation-delay:-1.2s;animation-delay:-1.2s}.sk-wave .sk-rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-wave .sk-rect3{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-wave .sk-rect4{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-wave .sk-rect5{-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes sk-waveStretchDelay{0%,100%,40%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes sk-waveStretchDelay{0%,100%,40%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}.sk-wandering-cubes{margin:40px auto;width:40px;height:40px;position:relative}.sk-wandering-cubes .sk-cube{background-color:#333;width:10px;height:10px;position:absolute;top:0;left:0;-webkit-animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;animation:sk-wanderingCube 1.8s ease-in-out -1.8s infinite both}.sk-chasing-dots,.sk-spinner-pulse{width:40px;height:40px;margin:40px auto}.sk-wandering-cubes .sk-cube2{-webkit-animation-delay:-.9s;animation-delay:-.9s}@-webkit-keyframes sk-wanderingCube{0%{-webkit-transform:rotate(0);transform:rotate(0)}25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5);transform:translateX(30px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg);transform:translateX(30px) translateY(30px) rotate(-179deg)}50.1%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg);transform:translateX(30px) translateY(30px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes sk-wanderingCube{0%{-webkit-transform:rotate(0);transform:rotate(0)}25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5);transform:translateX(30px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg);transform:translateX(30px) translateY(30px) rotate(-179deg)}50.1%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg);transform:translateX(30px) translateY(30px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.sk-spinner-pulse{-webkit-animation:sk-pulseScaleOut 1s infinite ease-in-out;animation:sk-pulseScaleOut 1s infinite ease-in-out}@-webkit-keyframes sk-pulseScaleOut{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes sk-pulseScaleOut{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.sk-chasing-dots{position:relative;text-align:center;-webkit-animation:sk-chasingDotsRotate 2s infinite linear;animation:sk-chasingDotsRotate 2s infinite linear}.sk-chasing-dots .sk-child{width:60%;height:60%;display:inline-block;position:absolute;top:0;-webkit-animation:sk-chasingDotsBounce 2s infinite ease-in-out;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-chasing-dots .sk-dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes sk-chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes sk-chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes sk-chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.sk-three-bounce{margin:40px auto;width:80px;text-align:center}.sk-three-bounce .sk-child{width:20px;height:20px;display:inline-block;-webkit-animation:sk-three-bounce 1.4s ease-in-out 0s infinite both;animation:sk-three-bounce 1.4s ease-in-out 0s infinite both}.sk-circle .sk-child:before,.sk-fading-circle .sk-circle:before{display:block;border-radius:100%;content:'';background-color:#333}.sk-three-bounce .sk-bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.sk-three-bounce .sk-bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes sk-three-bounce{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-three-bounce{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.sk-circle{margin:40px auto;width:40px;height:40px;position:relative}.sk-circle .sk-child{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle .sk-child:before{margin:0 auto;width:15%;height:15%;-webkit-animation:sk-circleBounceDelay 1.2s infinite ease-in-out both;animation:sk-circleBounceDelay 1.2s infinite ease-in-out both}.sk-circle .sk-circle2{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.sk-circle .sk-circle3{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}.sk-circle .sk-circle4{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sk-circle .sk-circle5{-webkit-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg)}.sk-circle .sk-circle6{-webkit-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg)}.sk-circle .sk-circle7{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sk-circle .sk-circle8{-webkit-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg)}.sk-circle .sk-circle9{-webkit-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg)}.sk-circle .sk-circle10{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.sk-circle .sk-circle11{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg)}.sk-circle .sk-circle12{-webkit-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg)}.sk-circle .sk-circle2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-circle .sk-circle3:before{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-circle .sk-circle4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-circle .sk-circle5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}.sk-circle .sk-circle6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}.sk-circle .sk-circle7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}.sk-circle .sk-circle8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}.sk-circle .sk-circle9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}.sk-circle .sk-circle10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.sk-circle .sk-circle11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}.sk-circle .sk-circle12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes sk-circleBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-circleBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.sk-cube-grid{width:40px;height:40px;margin:40px auto}.sk-cube-grid .sk-cube{width:33.33%;height:33.33%;background-color:#333;float:left;-webkit-animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{-webkit-animation-delay:.2s;animation-delay:.2s}.sk-cube-grid .sk-cube2{-webkit-animation-delay:.3s;animation-delay:.3s}.sk-cube-grid .sk-cube3{-webkit-animation-delay:.4s;animation-delay:.4s}.sk-cube-grid .sk-cube4{-webkit-animation-delay:.1s;animation-delay:.1s}.sk-cube-grid .sk-cube5{-webkit-animation-delay:.2s;animation-delay:.2s}.sk-cube-grid .sk-cube6{-webkit-animation-delay:.3s;animation-delay:.3s}.sk-cube-grid .sk-cube7{-webkit-animation-delay:0ms;animation-delay:0ms}.sk-cube-grid .sk-cube8{-webkit-animation-delay:.1s;animation-delay:.1s}.sk-cube-grid .sk-cube9{-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes sk-cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}@keyframes sk-cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}.sk-fading-circle{margin:40px auto;width:40px;height:40px;position:relative}.sk-fading-circle .sk-circle{width:100%;height:100%;position:absolute;left:0;top:0}.sk-fading-circle .sk-circle:before{margin:0 auto;width:15%;height:15%;-webkit-animation:sk-circleFadeDelay 1.2s infinite ease-in-out both;animation:sk-circleFadeDelay 1.2s infinite ease-in-out both}.sk-fading-circle .sk-circle2{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.sk-fading-circle .sk-circle3{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}.sk-fading-circle .sk-circle4{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sk-fading-circle .sk-circle5{-webkit-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg)}.sk-fading-circle .sk-circle6{-webkit-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg)}.sk-fading-circle .sk-circle7{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sk-fading-circle .sk-circle8{-webkit-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg)}.sk-fading-circle .sk-circle9{-webkit-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg)}.sk-fading-circle .sk-circle10{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.sk-fading-circle .sk-circle11{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg)}.sk-fading-circle .sk-circle12{-webkit-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg)}.sk-fading-circle .sk-circle2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-fading-circle .sk-circle3:before{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-fading-circle .sk-circle4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-fading-circle .sk-circle5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}.sk-fading-circle .sk-circle6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}.sk-fading-circle .sk-circle7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}.sk-fading-circle .sk-circle8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}.sk-fading-circle .sk-circle9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}.sk-fading-circle .sk-circle10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.sk-fading-circle .sk-circle11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}.sk-fading-circle .sk-circle12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes sk-circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}@keyframes sk-circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}.sk-folding-cube{margin:40px auto;width:40px;height:40px;position:relative;-webkit-transform:rotateZ(45deg);transform:rotateZ(45deg)}.sk-folding-cube .sk-cube{float:left;width:50%;height:50%;position:relative;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.sk-folding-cube .sk-cube:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#333;-webkit-animation:sk-foldCubeAngle 2.4s infinite linear both;animation:sk-foldCubeAngle 2.4s infinite linear both;-webkit-transform-origin:100% 100%;-ms-transform-origin:100% 100%;transform-origin:100% 100%}.sk-folding-cube .sk-cube2{-webkit-transform:scale(1.1) rotateZ(90deg);transform:scale(1.1) rotateZ(90deg)}.sk-folding-cube .sk-cube3{-webkit-transform:scale(1.1) rotateZ(180deg);transform:scale(1.1) rotateZ(180deg)}.sk-folding-cube .sk-cube4{-webkit-transform:scale(1.1) rotateZ(270deg);transform:scale(1.1) rotateZ(270deg)}.sk-folding-cube .sk-cube2:before{-webkit-animation-delay:.3s;animation-delay:.3s}.sk-folding-cube .sk-cube3:before{-webkit-animation-delay:.6s;animation-delay:.6s}.sk-folding-cube .sk-cube4:before{-webkit-animation-delay:.9s;animation-delay:.9s}@-webkit-keyframes sk-foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}@keyframes sk-foldCubeAngle{0%,10%{-webkit-transform:perspective(140px) rotateX(-180deg);transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{-webkit-transform:perspective(140px) rotateX(0);transform:perspective(140px) rotateX(0);opacity:1}100%,90%{-webkit-transform:perspective(140px) rotateY(180deg);transform:perspective(140px) rotateY(180deg);opacity:0}}
diff --git a/docs/assets/vendor/venobox/venobox.js b/docs/assets/vendor/venobox/venobox.js
deleted file mode 100644
index 8b21ed1..0000000
--- a/docs/assets/vendor/venobox/venobox.js
+++ /dev/null
@@ -1,763 +0,0 @@
-/*
- * VenoBox - jQuery Plugin
- * version: 1.8.6
- * @requires jQuery >= 1.7.0
- *
- * Examples at http://veno.es/venobox/
- * License: MIT License
- * License URI: https://github.com/nicolafranchini/VenoBox/blob/master/LICENSE
- * Copyright 2013-2019 Nicola Franchini - @nicolafranchini
- *
- */
-
-/* global jQuery */
-
-(function($){
- "use strict";
- var autoplay, bgcolor, blocknum, blocktitle, border, core, container, content, dest, extraCss,
- framewidth, frameheight, gallItems, infinigall, items, keyNavigationDisabled, margine, numeratio,
- overlayColor, overlay, title, thisgall, thenext, theprev, nextok, prevok, preloader, $preloader, navigation,
- obj, gallIndex, startouch, vbheader, images, startY, startX, endY, endX, diff, diffX, diffY, threshold;
-
- $.fn.extend({
- //plugin name - venobox
- venobox: function(options) {
- var plugin = this;
- // default options
- var defaults = {
- arrowsColor : '#B6B6B6',
- autoplay : false, // same as data-autoplay - thanks @codibit
- bgcolor: '#fff',
- border: '0',
- closeBackground : '#161617',
- closeColor : "#d2d2d2",
- framewidth: '',
- frameheight: '',
- gallItems: false,
- infinigall: false,
- htmlClose : '×',
- htmlNext : 'Next ',
- htmlPrev : 'Prev ',
- numeratio: false,
- numerationBackground : '#161617',
- numerationColor : '#d2d2d2',
- numerationPosition : 'top', // 'top' || 'bottom'
- overlayClose: true, // disable overlay click-close - thanx @martybalandis
- overlayColor : 'rgba(23,23,23,0.85)',
- spinner : 'double-bounce', // available: 'rotating-plane' | 'double-bounce' | 'wave' | 'wandering-cubes' | 'spinner-pulse' | 'chasing-dots' | 'three-bounce' | 'circle' | 'cube-grid' | 'fading-circle' | 'folding-cube'
- spinColor : '#d2d2d2',
- titleattr: 'title', // specific attribute to get a title (e.g. [data-title]) - thanx @mendezcode
- titleBackground: '#161617',
- titleColor: '#d2d2d2',
- titlePosition : 'top', // 'top' || 'bottom'
- cb_pre_open: function(){ return true; }, // Callbacks - thanx @garyee
- cb_post_open: function(){},
- cb_pre_close: function(){ return true; },
- cb_post_close: function(){},
- cb_post_resize: function(){},
- cb_after_nav: function(){},
- cb_content_loaded: function(){},
- cb_init: function(){}
- };
-
- var option = $.extend(defaults, options);
-
- // callback plugin initialization
- option.cb_init(plugin);
-
- return this.each(function() {
-
- obj = $(this);
-
- // Prevent double initialization - thanx @matthistuff
- if (obj.data('venobox')) {
- return true;
- }
-
- // method to be used outside the plugin
- plugin.VBclose = function() {
- closeVbox();
- };
- obj.addClass('vbox-item');
- obj.data('framewidth', option.framewidth);
- obj.data('frameheight', option.frameheight);
- obj.data('border', option.border);
- obj.data('bgcolor', option.bgcolor);
- obj.data('numeratio', option.numeratio);
- obj.data('gallItems', option.gallItems);
- obj.data('infinigall', option.infinigall);
- obj.data('overlaycolor', option.overlayColor);
- obj.data('titleattr', option.titleattr);
-
- obj.data('venobox', true);
-
- obj.on('click', function(e){
-
- e.preventDefault();
- obj = $(this);
-
- // callback plugin initialization
- var cb_pre_open = option.cb_pre_open(obj);
-
- if (cb_pre_open === false) {
- return false;
- }
-
- // methods to be used outside the plugin
- plugin.VBnext = function() {
- navigateGall(thenext);
- };
- plugin.VBprev = function() {
- navigateGall(theprev);
- };
-
- overlayColor = obj.data('overlay') || obj.data('overlaycolor');
-
- framewidth = obj.data('framewidth');
- frameheight = obj.data('frameheight');
- // set data-autoplay="true" for vimeo and youtube videos - thanx @zehfernandes
- autoplay = obj.data('autoplay') || option.autoplay;
- border = obj.data('border');
- bgcolor = obj.data('bgcolor');
- nextok = false;
- prevok = false;
- keyNavigationDisabled = false;
-
- // set a different url to be loaded using data-href="" - thanx @pixeline
- dest = obj.data('href') || obj.attr('href');
- extraCss = obj.data( 'css' ) || '';
- title = obj.attr(obj.data('titleattr')) || '';
-
- preloader = '';
-
- switch (option.spinner) {
-
- case 'rotating-plane':
- preloader += '
';
- break;
- case 'double-bounce':
- preloader += '
';
- break;
- case 'wave':
- preloader += '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
';
- break;
- case 'wandering-cubes':
- preloader += '
';
- break;
- case 'spinner-pulse':
- preloader += '
';
- break;
- case 'chasing-dots':
- preloader += '
';
- break;
- case 'three-bounce':
- preloader += '
';
- break;
- case 'circle':
- preloader += '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
';
- break;
- case 'cube-grid':
- preloader += '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
';
- break;
- case 'fading-circle':
- preloader += '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
';
- break;
- case 'folding-cube':
- preloader += '
'+
- '
'+
- '
'+
- '
'+
- '
'+
- '
';
- break;
- }
- preloader += '
';
-
- navigation = '' + option.htmlNext + ' ' + option.htmlPrev + ' ';
- vbheader = '
0/0
' + option.htmlClose + '
';
-
- core = '';
-
- $('body').append(core).addClass('vbox-open');
-
- $('.vbox-preloader div:not(.sk-circle) .sk-child, .vbox-preloader .sk-rotating-plane, .vbox-preloader .sk-rect, .vbox-preloader div:not(.sk-folding-cube) .sk-cube, .vbox-preloader .sk-spinner-pulse').css('background-color', option.spinColor);
-
- overlay = $('.vbox-overlay');
- container = $('.vbox-container');
- content = $('.vbox-content');
- blocknum = $('.vbox-num');
- blocktitle = $('.vbox-title');
- $preloader = $('.vbox-preloader');
-
- $preloader.show();
-
- blocktitle.css(option.titlePosition, '-1px');
- blocktitle.css({
- 'color' : option.titleColor,
- 'background-color' : option.titleBackground
- });
-
- $('.vbox-close').css({
- 'color' : option.closeColor,
- 'background-color' : option.closeBackground
- });
-
- $('.vbox-num').css(option.numerationPosition, '-1px');
- $('.vbox-num').css({
- 'color' : option.numerationColor,
- 'background-color' : option.numerationBackground
- });
-
- $('.vbox-next span, .vbox-prev span').css({
- 'border-top-color' : option.arrowsColor,
- 'border-right-color' : option.arrowsColor
- });
-
- content.html('');
- content.css('opacity', '0');
- overlay.css('opacity', '0');
-
- checknav();
-
- // fade in overlay
- overlay.animate({opacity:1}, 250, function(){
-
- if (obj.data('vbtype') == 'iframe') {
- loadIframe();
- } else if (obj.data('vbtype') == 'inline') {
- loadInline();
- } else if (obj.data('vbtype') == 'ajax') {
- loadAjax();
- } else if (obj.data('vbtype') == 'video') {
- loadVid(autoplay);
- } else {
- content.html(' ');
- preloadFirst();
- }
- option.cb_post_open(obj, gallIndex, thenext, theprev);
- });
-
- /* -------- KEYBOARD ACTIONS -------- */
- $('body').keydown(keyboardHandler);
-
- /* -------- PREVGALL -------- */
- $('.vbox-prev').on('click', function(){
- navigateGall(theprev);
- });
- /* -------- NEXTGALL -------- */
- $('.vbox-next').on('click', function(){
- navigateGall(thenext);
- });
-
- return false;
-
- }); // click
-
- /* -------- CHECK NEXT / PREV -------- */
- function checknav(){
-
- thisgall = obj.data('gall');
- numeratio = obj.data('numeratio');
- gallItems = obj.data('gallItems');
- infinigall = obj.data('infinigall');
-
- if (gallItems) {
- items = gallItems;
- } else {
- items = $('.vbox-item[data-gall="' + thisgall + '"]');
- }
-
- thenext = items.eq( items.index(obj) + 1 );
- theprev = items.eq( items.index(obj) - 1 );
-
- if (!thenext.length && infinigall === true) {
- thenext = items.eq(0);
- }
-
- // update gall numeration
- if (items.length >= 1) {
- gallIndex = items.index(obj)+1;
- blocknum.html(gallIndex + ' / ' + items.length);
- } else {
- gallIndex = 1;
- }
- if (numeratio === true) {
- blocknum.show();
- } else {
- blocknum.hide();
- }
-
- // update title
- if (title !== '') {
- blocktitle.show();
- } else {
- blocktitle.hide();
- }
-
- // update navigation arrows
- if (!thenext.length && infinigall !== true) {
- $('.vbox-next').css('display', 'none');
- nextok = false;
- } else {
- $('.vbox-next').css('display', 'block');
- nextok = true;
- }
-
- if (items.index(obj) > 0 || infinigall === true) {
- $('.vbox-prev').css('display', 'block');
- prevok = true;
- } else {
- $('.vbox-prev').css('display', 'none');
- prevok = false;
- }
- // activate swipe
- if (prevok === true || nextok === true) {
- content.on(TouchMouseEvent.DOWN, onDownEvent);
- content.on(TouchMouseEvent.MOVE, onMoveEvent);
- content.on(TouchMouseEvent.UP, onUpEvent);
- }
- }
-
- /* -------- gallery navigation -------- */
- function navigateGall(destination) {
-
- if (destination.length < 1) {
- return false;
- }
- if (keyNavigationDisabled) {
- return false;
- }
- keyNavigationDisabled = true;
-
- overlayColor = destination.data('overlay') || destination.data('overlaycolor');
-
- framewidth = destination.data('framewidth');
- frameheight = destination.data('frameheight');
- border = destination.data('border');
- bgcolor = destination.data('bgcolor');
- dest = destination.data('href') || destination.attr('href');
-
- autoplay = destination.data('autoplay');
-
- title = (destination.data('titleattr') && destination.attr(destination.data('titleattr'))) || '';
-
- // swipe out item
- if (destination === theprev) {
- content.addClass('vbox-animated').addClass('swipe-right');
- }
- if (destination === thenext) {
- content.addClass('vbox-animated').addClass('swipe-left');
- }
-
- $preloader.show();
-
- content.animate({
- opacity : 0,
- }, 500, function(){
-
- overlay.css('background',overlayColor);
-
- content
- .removeClass('vbox-animated')
- .removeClass('swipe-left')
- .removeClass('swipe-right')
- .css({'margin-left': 0,'margin-right': 0});
-
- if (destination.data('vbtype') == 'iframe') {
- loadIframe();
- } else if (destination.data('vbtype') == 'inline') {
- loadInline();
- } else if (destination.data('vbtype') == 'ajax') {
- loadAjax();
- } else if (destination.data('vbtype') == 'video') {
- loadVid(autoplay);
- } else {
- content.html(' ');
- preloadFirst();
- }
- obj = destination;
- checknav();
- keyNavigationDisabled = false;
- option.cb_after_nav(obj, gallIndex, thenext, theprev);
- });
- }
-
- /* -------- KEYBOARD HANDLER -------- */
- function keyboardHandler(e) {
- if (e.keyCode === 27) { // esc
- closeVbox();
- }
-
- if (e.keyCode == 37 && prevok === true) { // left
- navigateGall(theprev);
- }
-
- if (e.keyCode == 39 && nextok === true) { // right
- navigateGall(thenext);
- }
- }
-
- /* -------- CLOSE VBOX -------- */
- function closeVbox(){
-
- var cb_pre_close = option.cb_pre_close(obj, gallIndex, thenext, theprev);
-
- if (cb_pre_close === false) {
- return false;
- }
-
- $('body').off('keydown', keyboardHandler).removeClass('vbox-open');
-
- obj.focus();
-
- overlay.animate({opacity:0}, 500, function(){
- overlay.remove();
- keyNavigationDisabled = false;
- option.cb_post_close();
- });
- }
-
- /* -------- CLOSE CLICK -------- */
- var closeclickclass = '.vbox-overlay';
- if(!option.overlayClose){
- closeclickclass = '.vbox-close'; // close only on X
- }
-
- $('body').on('click touchstart', closeclickclass, function(e){
- if ($(e.target).is('.vbox-overlay') ||
- $(e.target).is('.vbox-content') ||
- $(e.target).is('.vbox-close') ||
- $(e.target).is('.vbox-preloader') ||
- $(e.target).is('.vbox-container')
- ) {
- closeVbox();
- }
- });
-
- startX = 0;
- endX = 0;
-
- diff = 0;
- threshold = 50;
- startouch = false;
-
- function onDownEvent(e){
- content.addClass('vbox-animated');
- startY = endY = e.pageY;
- startX = endX = e.pageX;
- startouch = true;
- }
-
- function onMoveEvent(e){
- if (startouch === true) {
- endX = e.pageX;
- endY = e.pageY;
-
- diffX = endX - startX;
- diffY = endY - startY;
-
- var absdiffX = Math.abs(diffX);
- var absdiffY = Math.abs(diffY);
-
- if ((absdiffX > absdiffY) && (absdiffX <= 100)) {
- e.preventDefault();
- content.css('margin-left', diffX);
- }
- }
- }
-
- function onUpEvent(e){
- if (startouch === true) {
- startouch = false;
- var subject = obj;
- var change = false;
- diff = endX - startX;
-
- if (diff < 0 && nextok === true) {
- subject = thenext;
- change = true;
- }
- if (diff > 0 && prevok === true) {
- subject = theprev;
- change = true;
- }
-
- if (Math.abs(diff) >= threshold && change === true) {
- navigateGall(subject);
- } else {
- content.css({'margin-left': 0,'margin-right': 0});
- }
- }
- }
-
- /* == GLOBAL DECLERATIONS == */
- var TouchMouseEvent = {
- DOWN: "touchmousedown",
- UP: "touchmouseup",
- MOVE: "touchmousemove"
- };
-
- /* == EVENT LISTENERS == */
- var onMouseEvent = function(event) {
- var type;
- switch (event.type) {
- case "mousedown": type = TouchMouseEvent.DOWN; break;
- case "mouseup": type = TouchMouseEvent.UP; break;
- case "mouseout": type = TouchMouseEvent.UP; break;
- case "mousemove": type = TouchMouseEvent.MOVE; break;
- default:
- return;
- }
- var touchMouseEvent = normalizeEvent(type, event, event.pageX, event.pageY);
- $(event.target).trigger(touchMouseEvent);
- };
-
- var onTouchEvent = function(event) {
- var type;
- switch (event.type) {
- case "touchstart": type = TouchMouseEvent.DOWN; break;
- case "touchend": type = TouchMouseEvent.UP; break;
- case "touchmove": type = TouchMouseEvent.MOVE; break;
- default:
- return;
- }
-
- var touch = event.originalEvent.touches[0];
- var touchMouseEvent;
-
- if (type == TouchMouseEvent.UP) {
- touchMouseEvent = normalizeEvent(type, event, null, null);
- } else {
- touchMouseEvent = normalizeEvent(type, event, touch.pageX, touch.pageY);
- }
- $(event.target).trigger(touchMouseEvent);
- };
-
- /* == NORMALIZE == */
- var normalizeEvent = function(type, original, x, y) {
- return $.Event(type, {
- pageX: x,
- pageY: y,
- originalEvent: original
- });
- };
-
- /* == LISTEN TO ORIGINAL EVENT == */
- if ("ontouchstart" in window) {
- $(document).on("touchstart", onTouchEvent);
- $(document).on("touchmove", onTouchEvent);
- $(document).on("touchend", onTouchEvent);
- } else {
- $(document).on("mousedown", onMouseEvent);
- $(document).on("mouseup", onMouseEvent);
- $(document).on("mouseout", onMouseEvent);
- $(document).on("mousemove", onMouseEvent);
- }
-
- /* -------- LOAD AJAX -------- */
- function loadAjax(){
- $.ajax({
- url: dest,
- cache: false
- }).done(function( msg ) {
- content.html(''+ msg +'
');
- preloadFirst();
-
- }).fail(function() {
- content.html('Error retrieving contents, please retry
');
- updateoverlay();
- });
- }
-
- /* -------- LOAD IFRAME -------- */
- function loadIframe(){
- content.html('');
- // $('.venoframe').load(function(){ // valid only for iFrames in same domain
- updateoverlay();
- // });
- }
-
- /* -------- LOAD VIDEOs -------- */
- function loadVid(autoplay){
-
- var player;
- var videoObj = parseVideo(dest);
-
- // set rel=0 to hide related videos at the end of YT + optional autoplay
- var stringAutoplay = autoplay ? "?rel=0&autoplay=1" : "?rel=0";
- var queryvars = stringAutoplay + getUrlParameter(dest);
-
- if (videoObj.type == 'vimeo') {
- player = 'https://player.vimeo.com/video/';
- } else if (videoObj.type == 'youtube') {
- player = 'https://www.youtube.com/embed/';
- }
- content.html('');
- updateoverlay();
- }
-
- /**
- * Parse Youtube or Vimeo videos and get host & ID
- */
- function parseVideo (url) {
- url.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/);
- var type;
- if (RegExp.$3.indexOf('youtu') > -1) {
- type = 'youtube';
- } else if (RegExp.$3.indexOf('vimeo') > -1) {
- type = 'vimeo';
- }
- return {
- type: type,
- id: RegExp.$6
- };
- }
-
- /**
- * get additional video url parameters
- */
- function getUrlParameter(name) {
- var result = '';
- var sPageURL = decodeURIComponent(name);
- var firstsplit = sPageURL.split('?');
-
- if (firstsplit[1] !== undefined) {
- var sURLVariables = firstsplit[1].split('&');
- var sParameterName;
- var i;
- for (i = 0; i < sURLVariables.length; i++) {
- sParameterName = sURLVariables[i].split('=');
- result = result + '&'+ sParameterName[0]+'='+ sParameterName[1];
- }
- }
- return encodeURI(result);
- }
-
- /* -------- LOAD INLINE -------- */
- function loadInline(){
- content.html(''+$(dest).html()+'
');
- updateoverlay();
- }
-
- /* -------- PRELOAD IMAGE -------- */
- function preloadFirst(){
- images = content.find('img');
-
- if (images.length) {
- images.each(function(){
- $(this).one('load', function() {
- updateoverlay();
- });
- });
- } else {
- updateoverlay();
- }
- }
-
- /* -------- FADE-IN THE NEW CONTENT -------- */
- function updateoverlay(){
-
- blocktitle.html(title);
-
- content.find(">:first-child").addClass('vbox-figlio').css({
- 'width': framewidth,
- 'height': frameheight,
- 'padding': border,
- 'background': bgcolor
- });
-
- $('img.vbox-figlio').on('dragstart', function(event) {
- event.preventDefault();
- });
-
- updateOL();
-
- content.animate({
- 'opacity': '1'
- },'slow', function(){
- $preloader.hide();
- });
- option.cb_content_loaded(obj, gallIndex, thenext, theprev);
- }
-
- /* -------- CENTER FRAME -------- */
- function updateOL(){
-
- var sonH = content.outerHeight();
- var finH = $(window).height();
-
- if (sonH + 60 < finH) {
- margine = (finH - sonH)/2;
- } else {
- margine = '30px';
- }
- content.css('margin-top', margine);
- content.css('margin-bottom', margine);
- option.cb_post_resize();
- }
-
- $(window).resize(function(){
- if($('.vbox-content').length){
- setTimeout(updateOL(), 800);
- }
- });
- }); // each
- } // venobox
- }); // extend
-})(jQuery);
diff --git a/docs/assets/vendor/venobox/venobox.min.js b/docs/assets/vendor/venobox/venobox.min.js
deleted file mode 100644
index 36c8321..0000000
--- a/docs/assets/vendor/venobox/venobox.min.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- * VenoBox - jQuery Plugin
- * version: 1.8.6
- * @requires jQuery >= 1.7.0
- *
- * Examples at http://veno.es/venobox/
- * License: MIT License
- * License URI: https://github.com/nicolafranchini/VenoBox/blob/master/LICENSE
- * Copyright 2013-2019 Nicola Franchini - @nicolafranchini
- *
- */
-!function(e){"use strict";var s,i,a,c,o,t,d,l,r,n,v,u,b,k,p,m,h,f,g,x,y,w,C,_,B,P,E,O,D,M,N,U,V,I,z,R,X,Y,j,W,q;e.fn.extend({venobox:function($){var A=this,H=e.extend({arrowsColor:"#B6B6B6",autoplay:!1,bgcolor:"#fff",border:"0",closeBackground:"#161617",closeColor:"#d2d2d2",framewidth:"",frameheight:"",gallItems:!1,infinigall:!1,htmlClose:"×",htmlNext:"Next ",htmlPrev:"Prev ",numeratio:!1,numerationBackground:"#161617",numerationColor:"#d2d2d2",numerationPosition:"top",overlayClose:!0,overlayColor:"rgba(23,23,23,0.85)",spinner:"double-bounce",spinColor:"#d2d2d2",titleattr:"title",titleBackground:"#161617",titleColor:"#d2d2d2",titlePosition:"top",cb_pre_open:function(){return!0},cb_post_open:function(){},cb_pre_close:function(){return!0},cb_post_close:function(){},cb_post_resize:function(){},cb_after_nav:function(){},cb_content_loaded:function(){},cb_init:function(){}},$);return H.cb_init(A),this.each(function(){if((D=e(this)).data("venobox"))return!0;function $(){y=D.data("gall"),h=D.data("numeratio"),u=D.data("gallItems"),b=D.data("infinigall"),k=u||e('.vbox-item[data-gall="'+y+'"]'),w=k.eq(k.index(D)+1),C=k.eq(k.index(D)-1),w.length||!0!==b||(w=k.eq(0)),k.length>=1?(M=k.index(D)+1,a.html(M+" / "+k.length)):M=1,!0===h?a.show():a.hide(),""!==x?c.show():c.hide(),w.length||!0===b?(e(".vbox-next").css("display","block"),_=!0):(e(".vbox-next").css("display","none"),_=!1),k.index(D)>0||!0===b?(e(".vbox-prev").css("display","block"),B=!0):(e(".vbox-prev").css("display","none"),B=!1),!0!==B&&!0!==_||(d.on(K.DOWN,F),d.on(K.MOVE,G),d.on(K.UP,J))}function Q(e){return!(e.length<1)&&(!p&&(p=!0,f=e.data("overlay")||e.data("overlaycolor"),n=e.data("framewidth"),v=e.data("frameheight"),o=e.data("border"),i=e.data("bgcolor"),l=e.data("href")||e.attr("href"),s=e.data("autoplay"),x=e.data("titleattr")&&e.attr(e.data("titleattr"))||"",e===C&&d.addClass("vbox-animated").addClass("swipe-right"),e===w&&d.addClass("vbox-animated").addClass("swipe-left"),E.show(),void d.animate({opacity:0},500,function(){g.css("background",f),d.removeClass("vbox-animated").removeClass("swipe-left").removeClass("swipe-right").css({"margin-left":0,"margin-right":0}),"iframe"==e.data("vbtype")?ae():"inline"==e.data("vbtype")?oe():"ajax"==e.data("vbtype")?ie():"video"==e.data("vbtype")?ce(s):(d.html(' '),te()),D=e,$(),p=!1,H.cb_after_nav(D,M,w,C)})))}function S(e){27===e.keyCode&&T(),37==e.keyCode&&!0===B&&Q(C),39==e.keyCode&&!0===_&&Q(w)}function T(){if(!1===H.cb_pre_close(D,M,w,C))return!1;e("body").off("keydown",S).removeClass("vbox-open"),D.focus(),g.animate({opacity:0},500,function(){g.remove(),p=!1,H.cb_post_close()})}A.VBclose=function(){T()},D.addClass("vbox-item"),D.data("framewidth",H.framewidth),D.data("frameheight",H.frameheight),D.data("border",H.border),D.data("bgcolor",H.bgcolor),D.data("numeratio",H.numeratio),D.data("gallItems",H.gallItems),D.data("infinigall",H.infinigall),D.data("overlaycolor",H.overlayColor),D.data("titleattr",H.titleattr),D.data("venobox",!0),D.on("click",function(u){if(u.preventDefault(),D=e(this),!1===H.cb_pre_open(D))return!1;switch(A.VBnext=function(){Q(w)},A.VBprev=function(){Q(C)},f=D.data("overlay")||D.data("overlaycolor"),n=D.data("framewidth"),v=D.data("frameheight"),s=D.data("autoplay")||H.autoplay,o=D.data("border"),i=D.data("bgcolor"),_=!1,B=!1,p=!1,l=D.data("href")||D.attr("href"),r=D.data("css")||"",x=D.attr(D.data("titleattr"))||"",P='',H.spinner){case"rotating-plane":P+='
';break;case"double-bounce":P+='
';break;case"wave":P+='
';break;case"wandering-cubes":P+='
';break;case"spinner-pulse":P+='
';break;case"chasing-dots":P+='
';break;case"three-bounce":P+='
';break;case"circle":P+='
';break;case"cube-grid":P+='
';break;case"fading-circle":P+='
';break;case"folding-cube":P+='
'}return P+="
",O=''+H.htmlNext+' '+H.htmlPrev+" ",U='
0/0
'+H.htmlClose+"
",t='",e("body").append(t).addClass("vbox-open"),e(".vbox-preloader div:not(.sk-circle) .sk-child, .vbox-preloader .sk-rotating-plane, .vbox-preloader .sk-rect, .vbox-preloader div:not(.sk-folding-cube) .sk-cube, .vbox-preloader .sk-spinner-pulse").css("background-color",H.spinColor),g=e(".vbox-overlay"),e(".vbox-container"),d=e(".vbox-content"),a=e(".vbox-num"),c=e(".vbox-title"),(E=e(".vbox-preloader")).show(),c.css(H.titlePosition,"-1px"),c.css({color:H.titleColor,"background-color":H.titleBackground}),e(".vbox-close").css({color:H.closeColor,"background-color":H.closeBackground}),e(".vbox-num").css(H.numerationPosition,"-1px"),e(".vbox-num").css({color:H.numerationColor,"background-color":H.numerationBackground}),e(".vbox-next span, .vbox-prev span").css({"border-top-color":H.arrowsColor,"border-right-color":H.arrowsColor}),d.html(""),d.css("opacity","0"),g.css("opacity","0"),$(),g.animate({opacity:1},250,function(){"iframe"==D.data("vbtype")?ae():"inline"==D.data("vbtype")?oe():"ajax"==D.data("vbtype")?ie():"video"==D.data("vbtype")?ce(s):(d.html(' '),te()),H.cb_post_open(D,M,w,C)}),e("body").keydown(S),e(".vbox-prev").on("click",function(){Q(C)}),e(".vbox-next").on("click",function(){Q(w)}),!1});var Z=".vbox-overlay";function F(e){d.addClass("vbox-animated"),I=R=e.pageY,z=X=e.pageX,N=!0}function G(e){if(!0===N){X=e.pageX,R=e.pageY,j=X-z,W=R-I;var s=Math.abs(j);s>Math.abs(W)&&s<=100&&(e.preventDefault(),d.css("margin-left",j))}}function J(e){if(!0===N){N=!1;var s=D,i=!1;(Y=X-z)<0&&!0===_&&(s=w,i=!0),Y>0&&!0===B&&(s=C,i=!0),Math.abs(Y)>=q&&!0===i?Q(s):d.css({"margin-left":0,"margin-right":0})}}H.overlayClose||(Z=".vbox-close"),e("body").on("click touchstart",Z,function(s){(e(s.target).is(".vbox-overlay")||e(s.target).is(".vbox-content")||e(s.target).is(".vbox-close")||e(s.target).is(".vbox-preloader")||e(s.target).is(".vbox-container"))&&T()}),z=0,X=0,Y=0,q=50,N=!1;var K={DOWN:"touchmousedown",UP:"touchmouseup",MOVE:"touchmousemove"},L=function(s){var i;switch(s.type){case"mousedown":i=K.DOWN;break;case"mouseup":case"mouseout":i=K.UP;break;case"mousemove":i=K.MOVE;break;default:return}var a=se(i,s,s.pageX,s.pageY);e(s.target).trigger(a)},ee=function(s){var i;switch(s.type){case"touchstart":i=K.DOWN;break;case"touchend":i=K.UP;break;case"touchmove":i=K.MOVE;break;default:return}var a,c=s.originalEvent.touches[0];a=i==K.UP?se(i,s,null,null):se(i,s,c.pageX,c.pageY),e(s.target).trigger(a)},se=function(s,i,a,c){return e.Event(s,{pageX:a,pageY:c,originalEvent:i})};function ie(){e.ajax({url:l,cache:!1}).done(function(e){d.html(''+e+"
"),te()}).fail(function(){d.html('Error retrieving contents, please retry
'),de()})}function ae(){d.html(''),de()}function ce(e){var s,i=function(e){var s;e.match(/(http:|https:|)\/\/(player.|www.)?(vimeo\.com|youtu(be\.com|\.be|be\.googleapis\.com))\/(video\/|embed\/|watch\?v=|v\/)?([A-Za-z0-9._%-]*)(\&\S+)?/),RegExp.$3.indexOf("youtu")>-1?s="youtube":RegExp.$3.indexOf("vimeo")>-1&&(s="vimeo");return{type:s,id:RegExp.$6}}(l),a=(e?"?rel=0&autoplay=1":"?rel=0")+function(e){var s="",i=decodeURIComponent(e).split("?");if(void 0!==i[1]){var a,c,o=i[1].split("&");for(c=0;c'),de()}function oe(){d.html(''+e(l).html()+"
"),de()}function te(){(V=d.find("img")).length?V.each(function(){e(this).one("load",function(){de()})}):de()}function de(){c.html(x),d.find(">:first-child").addClass("vbox-figlio").css({width:n,height:v,padding:o,background:i}),e("img.vbox-figlio").on("dragstart",function(e){e.preventDefault()}),le(),d.animate({opacity:"1"},"slow",function(){E.hide()}),H.cb_content_loaded(D,M,w,C)}function le(){var s=d.outerHeight(),i=e(window).height();m=s+60
-
-
-
-
- ZY PLAYER
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/doc/assets/css/0.styles.7cdd3ee2.css b/docs/doc/assets/css/0.styles.7cdd3ee2.css
deleted file mode 100644
index 9498af2..0000000
--- a/docs/doc/assets/css/0.styles.7cdd3ee2.css
+++ /dev/null
@@ -1 +0,0 @@
-code[class*=language-],pre[class*=language-]{color:#ccc;background:none;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#2d2d2d}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.block-comment,.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#999}.token.punctuation{color:#ccc}.token.attr-name,.token.deleted,.token.namespace,.token.tag{color:#e2777a}.token.function-name{color:#6196cc}.token.boolean,.token.function,.token.number{color:#f08d49}.token.class-name,.token.constant,.token.property,.token.symbol{color:#f8c555}.token.atrule,.token.builtin,.token.important,.token.keyword,.token.selector{color:#cc99cd}.token.attr-value,.token.char,.token.regex,.token.string,.token.variable{color:#7ec699}.token.entity,.token.operator,.token.url{color:#67cdcc}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.inserted{color:green}.theme-default-content code{color:#476582;padding:.25rem .5rem;margin:0;font-size:.85em;background-color:rgba(27,31,35,.05);border-radius:3px}.theme-default-content code .token.deleted{color:#ec5975}.theme-default-content code .token.inserted{color:#3eaf7c}.theme-default-content pre,.theme-default-content pre[class*=language-]{line-height:1.4;padding:1.25rem 1.5rem;margin:.85rem 0;background-color:#282c34;border-radius:6px;overflow:auto}.theme-default-content pre[class*=language-] code,.theme-default-content pre code{color:#fff;padding:0;background-color:transparent;border-radius:0}div[class*=language-]{position:relative;background-color:#282c34;border-radius:6px}div[class*=language-] .highlight-lines{-webkit-user-select:none;-ms-user-select:none;user-select:none;padding-top:1.3rem;position:absolute;top:0;left:0;width:100%;line-height:1.4}div[class*=language-] .highlight-lines .highlighted{background-color:rgba(0,0,0,.66)}div[class*=language-] pre,div[class*=language-] pre[class*=language-]{background:transparent;position:relative;z-index:1}div[class*=language-]:before{position:absolute;z-index:3;top:.8em;right:1em;font-size:.75rem;color:hsla(0,0%,100%,.4)}div[class*=language-]:not(.line-numbers-mode) .line-numbers-wrapper{display:none}div[class*=language-].line-numbers-mode .highlight-lines .highlighted{position:relative}div[class*=language-].line-numbers-mode .highlight-lines .highlighted:before{content:" ";position:absolute;z-index:3;left:0;top:0;display:block;width:3.5rem;height:100%;background-color:rgba(0,0,0,.66)}div[class*=language-].line-numbers-mode pre{padding-left:4.5rem;vertical-align:middle}div[class*=language-].line-numbers-mode .line-numbers-wrapper{position:absolute;top:0;width:3.5rem;text-align:center;color:hsla(0,0%,100%,.3);padding:1.25rem 0;line-height:1.4}div[class*=language-].line-numbers-mode .line-numbers-wrapper br{-webkit-user-select:none;-ms-user-select:none;user-select:none}div[class*=language-].line-numbers-mode .line-numbers-wrapper .line-number{position:relative;z-index:4;-webkit-user-select:none;-ms-user-select:none;user-select:none;font-size:.85em}div[class*=language-].line-numbers-mode:after{content:"";position:absolute;z-index:2;top:0;left:0;width:3.5rem;height:100%;border-radius:6px 0 0 6px;border-right:1px solid rgba(0,0,0,.66);background-color:#282c34}div[class~=language-js]:before{content:"js"}div[class~=language-ts]:before{content:"ts"}div[class~=language-html]:before{content:"html"}div[class~=language-md]:before{content:"md"}div[class~=language-vue]:before{content:"vue"}div[class~=language-css]:before{content:"css"}div[class~=language-sass]:before{content:"sass"}div[class~=language-scss]:before{content:"scss"}div[class~=language-less]:before{content:"less"}div[class~=language-stylus]:before{content:"stylus"}div[class~=language-go]:before{content:"go"}div[class~=language-java]:before{content:"java"}div[class~=language-c]:before{content:"c"}div[class~=language-sh]:before{content:"sh"}div[class~=language-yaml]:before{content:"yaml"}div[class~=language-py]:before{content:"py"}div[class~=language-docker]:before{content:"docker"}div[class~=language-dockerfile]:before{content:"dockerfile"}div[class~=language-makefile]:before{content:"makefile"}div[class~=language-javascript]:before{content:"js"}div[class~=language-typescript]:before{content:"ts"}div[class~=language-markup]:before{content:"html"}div[class~=language-markdown]:before{content:"md"}div[class~=language-json]:before{content:"json"}div[class~=language-ruby]:before{content:"rb"}div[class~=language-python]:before{content:"py"}div[class~=language-bash]:before{content:"sh"}div[class~=language-php]:before{content:"php"}.custom-block .custom-block-title{font-weight:600;margin-bottom:-.4rem}.custom-block.danger,.custom-block.tip,.custom-block.warning{padding:.1rem 1.5rem;border-left-width:.5rem;border-left-style:solid;margin:1rem 0}.custom-block.tip{background-color:#f3f5f7;border-color:#42b983}.custom-block.warning{background-color:rgba(255,229,100,.3);border-color:#e7c000;color:#6b5900}.custom-block.warning .custom-block-title{color:#b29400}.custom-block.warning a{color:#2c3e50}.custom-block.danger{background-color:#ffe6e6;border-color:#c00;color:#4d0000}.custom-block.danger .custom-block-title{color:#900}.custom-block.danger a{color:#2c3e50}.custom-block.details{display:block;position:relative;border-radius:2px;margin:1.6em 0;padding:1.6em;background-color:#eee}.custom-block.details h4{margin-top:0}.custom-block.details figure:last-child,.custom-block.details p:last-child{margin-bottom:0;padding-bottom:0}.custom-block.details summary{outline:none;cursor:pointer}.arrow{display:inline-block;width:0;height:0}.arrow.up{border-bottom:6px solid #ccc}.arrow.down,.arrow.up{border-left:4px solid transparent;border-right:4px solid transparent}.arrow.down{border-top:6px solid #ccc}.arrow.right{border-left:6px solid #ccc}.arrow.left,.arrow.right{border-top:4px solid transparent;border-bottom:4px solid transparent}.arrow.left{border-right:6px solid #ccc}.theme-default-content:not(.custom){max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.theme-default-content:not(.custom){padding:2rem}}@media (max-width:419px){.theme-default-content:not(.custom){padding:1.5rem}}.table-of-contents .badge{vertical-align:middle}body,html{padding:0;margin:0;background-color:#fff}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;color:#2c3e50}.page{padding-left:20rem}.navbar{z-index:20;right:0;height:3.6rem;background-color:#fff;box-sizing:border-box;border-bottom:1px solid #eaecef}.navbar,.sidebar-mask{position:fixed;top:0;left:0}.sidebar-mask{z-index:9;width:100vw;height:100vh;display:none}.sidebar{font-size:16px;background-color:#fff;width:20rem;position:fixed;z-index:10;margin:0;top:3.6rem;left:0;bottom:0;box-sizing:border-box;border-right:1px solid #eaecef;overflow-y:auto}.theme-default-content:not(.custom)>:first-child{margin-top:3.6rem}.theme-default-content:not(.custom) a:hover{text-decoration:underline}.theme-default-content:not(.custom) p.demo{padding:1rem 1.5rem;border:1px solid #ddd;border-radius:4px}.theme-default-content:not(.custom) img{max-width:100%}.theme-default-content.custom{padding:0;margin:0}.theme-default-content.custom img{max-width:100%}a{font-weight:500;text-decoration:none}a,p a code{color:#3eaf7c}p a code{font-weight:400}kbd{background:#eee;border:.15rem solid #ddd;border-bottom:.25rem solid #ddd;border-radius:.15rem;padding:0 .15em}blockquote{font-size:1rem;color:#999;border-left:.2rem solid #dfe2e5;margin:1rem 0;padding:.25rem 0 .25rem 1rem}blockquote>p{margin:0}ol,ul{padding-left:1.2em}strong{font-weight:600}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.25}.theme-default-content:not(.custom)>h1,.theme-default-content:not(.custom)>h2,.theme-default-content:not(.custom)>h3,.theme-default-content:not(.custom)>h4,.theme-default-content:not(.custom)>h5,.theme-default-content:not(.custom)>h6{margin-top:-3.1rem;padding-top:4.6rem;margin-bottom:0}.theme-default-content:not(.custom)>h1:first-child,.theme-default-content:not(.custom)>h2:first-child,.theme-default-content:not(.custom)>h3:first-child,.theme-default-content:not(.custom)>h4:first-child,.theme-default-content:not(.custom)>h5:first-child,.theme-default-content:not(.custom)>h6:first-child{margin-top:-1.5rem;margin-bottom:1rem}.theme-default-content:not(.custom)>h1:first-child+.custom-block,.theme-default-content:not(.custom)>h1:first-child+p,.theme-default-content:not(.custom)>h1:first-child+pre,.theme-default-content:not(.custom)>h2:first-child+.custom-block,.theme-default-content:not(.custom)>h2:first-child+p,.theme-default-content:not(.custom)>h2:first-child+pre,.theme-default-content:not(.custom)>h3:first-child+.custom-block,.theme-default-content:not(.custom)>h3:first-child+p,.theme-default-content:not(.custom)>h3:first-child+pre,.theme-default-content:not(.custom)>h4:first-child+.custom-block,.theme-default-content:not(.custom)>h4:first-child+p,.theme-default-content:not(.custom)>h4:first-child+pre,.theme-default-content:not(.custom)>h5:first-child+.custom-block,.theme-default-content:not(.custom)>h5:first-child+p,.theme-default-content:not(.custom)>h5:first-child+pre,.theme-default-content:not(.custom)>h6:first-child+.custom-block,.theme-default-content:not(.custom)>h6:first-child+p,.theme-default-content:not(.custom)>h6:first-child+pre{margin-top:2rem}h1:hover .header-anchor,h2:hover .header-anchor,h3:hover .header-anchor,h4:hover .header-anchor,h5:hover .header-anchor,h6:hover .header-anchor{opacity:1}h1{font-size:2.2rem}h2{font-size:1.65rem;padding-bottom:.3rem;border-bottom:1px solid #eaecef}h3{font-size:1.35rem}a.header-anchor{font-size:.85em;float:left;margin-left:-.87em;padding-right:.23em;margin-top:.125em;opacity:0}a.header-anchor:hover{text-decoration:none}.line-number,code,kbd{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}ol,p,ul{line-height:1.7}hr{border:0;border-top:1px solid #eaecef}table{border-collapse:collapse;margin:1rem 0;display:block;overflow-x:auto}tr{border-top:1px solid #dfe2e5}tr:nth-child(2n){background-color:#f6f8fa}td,th{border:1px solid #dfe2e5;padding:.6em 1em}.theme-container.sidebar-open .sidebar-mask{display:block}.theme-container.no-navbar .theme-default-content:not(.custom)>h1,.theme-container.no-navbar h2,.theme-container.no-navbar h3,.theme-container.no-navbar h4,.theme-container.no-navbar h5,.theme-container.no-navbar h6{margin-top:1.5rem;padding-top:0}.theme-container.no-navbar .sidebar{top:0}@media (min-width:720px){.theme-container.no-sidebar .sidebar{display:none}.theme-container.no-sidebar .page{padding-left:0}}@media (max-width:959px){.sidebar{font-size:15px;width:16.4rem}.page{padding-left:16.4rem}}@media (max-width:719px){.sidebar{top:0;padding-top:3.6rem;transform:translateX(-100%);transition:transform .2s ease}.page{padding-left:0}.theme-container.sidebar-open .sidebar{transform:translateX(0)}.theme-container.no-navbar .sidebar{padding-top:0}}@media (max-width:419px){h1{font-size:1.9rem}.theme-default-content div[class*=language-]{margin:.85rem -1.5rem;border-radius:0}}#nprogress{pointer-events:none}#nprogress .bar{background:#3eaf7c;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #3eaf7c,0 0 5px #3eaf7c;opacity:1;transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border-color:#3eaf7c transparent transparent #3eaf7c;border-style:solid;border-width:2px;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon.outbound{color:#aaa;display:inline-block;vertical-align:middle;position:relative;top:-1px}.home{padding:3.6rem 2rem 0;max-width:960px;margin:0 auto;display:block}.home .hero{text-align:center}.home .hero img{max-width:100%;max-height:280px;display:block;margin:3rem auto 1.5rem}.home .hero h1{font-size:3rem}.home .hero .action,.home .hero .description,.home .hero h1{margin:1.8rem auto}.home .hero .description{max-width:35rem;font-size:1.6rem;line-height:1.3;color:#6a8bad}.home .hero .action-button{display:inline-block;font-size:1.2rem;color:#fff;background-color:#3eaf7c;padding:.8rem 1.6rem;border-radius:4px;transition:background-color .1s ease;box-sizing:border-box;border-bottom:1px solid #389d70}.home .hero .action-button:hover{background-color:#4abf8a}.home .features{border-top:1px solid #eaecef;padding:1.2rem 0;margin-top:2.5rem;display:flex;flex-wrap:wrap;align-items:flex-start;align-content:stretch;justify-content:space-between}.home .feature{flex-grow:1;flex-basis:30%;max-width:30%}.home .feature h2{font-size:1.4rem;font-weight:500;border-bottom:none;padding-bottom:0;color:#3a5169}.home .feature p{color:#4e6e8e}.home .footer{padding:2.5rem;border-top:1px solid #eaecef;text-align:center;color:#4e6e8e}@media (max-width:719px){.home .features{flex-direction:column}.home .feature{max-width:100%;padding:0 2.5rem}}@media (max-width:419px){.home{padding-left:1.5rem;padding-right:1.5rem}.home .hero img{max-height:210px;margin:2rem auto 1.2rem}.home .hero h1{font-size:2rem}.home .hero .action,.home .hero .description,.home .hero h1{margin:1.2rem auto}.home .hero .description{font-size:1.2rem}.home .hero .action-button{font-size:1rem;padding:.6rem 1.2rem}.home .feature h2{font-size:1.25rem}}.search-box{display:inline-block;position:relative;margin-right:1rem}.search-box input{cursor:text;width:10rem;height:2rem;color:#4e6e8e;display:inline-block;border:1px solid #cfd4db;border-radius:2rem;font-size:.9rem;line-height:2rem;padding:0 .5rem 0 2rem;outline:none;transition:all .2s ease;background:#fff url(/doc/assets/img/search.83621669.svg) .6rem .5rem no-repeat;background-size:1rem}.search-box input:focus{cursor:auto;border-color:#3eaf7c}.search-box .suggestions{background:#fff;width:20rem;position:absolute;top:2rem;border:1px solid #cfd4db;border-radius:6px;padding:.4rem;list-style-type:none}.search-box .suggestions.align-right{right:0}.search-box .suggestion{line-height:1.4;padding:.4rem .6rem;border-radius:4px;cursor:pointer}.search-box .suggestion a{white-space:normal;color:#5d82a6}.search-box .suggestion a .page-title{font-weight:600}.search-box .suggestion a .header{font-size:.9em;margin-left:.25em}.search-box .suggestion.focused{background-color:#f3f4f5}.search-box .suggestion.focused a{color:#3eaf7c}@media (max-width:959px){.search-box input{cursor:pointer;width:0;border-color:transparent;position:relative}.search-box input:focus{cursor:text;left:0;width:10rem}}@media (-ms-high-contrast:none){.search-box input{height:2rem}}@media (max-width:959px) and (min-width:719px){.search-box .suggestions{left:0}}@media (max-width:719px){.search-box{margin-right:0}.search-box input{left:1rem}.search-box .suggestions{right:0}}@media (max-width:419px){.search-box .suggestions{width:calc(100vw - 4rem)}.search-box input:focus{width:8rem}}.sidebar-button{cursor:pointer;display:none;width:1.25rem;height:1.25rem;position:absolute;padding:.6rem;top:.6rem;left:1rem}.sidebar-button .icon{display:block;width:1.25rem;height:1.25rem}@media (max-width:719px){.sidebar-button{display:block}}.dropdown-enter,.dropdown-leave-to{height:0!important}.dropdown-wrapper{cursor:pointer}.dropdown-wrapper .dropdown-title{display:block;font-size:.9rem;font-family:inherit;cursor:inherit;padding:inherit;line-height:1.4rem;background:transparent;border:none;font-weight:500;color:#2c3e50}.dropdown-wrapper .dropdown-title:hover{border-color:transparent}.dropdown-wrapper .dropdown-title .arrow{vertical-align:middle;margin-top:-1px;margin-left:.4rem}.dropdown-wrapper .nav-dropdown .dropdown-item{color:inherit;line-height:1.7rem}.dropdown-wrapper .nav-dropdown .dropdown-item h4{margin:.45rem 0 0;border-top:1px solid #eee;padding:.45rem 1.5rem 0 1.25rem}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem-wrapper{padding:0;list-style:none}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem-wrapper .dropdown-subitem{font-size:.9em}.dropdown-wrapper .nav-dropdown .dropdown-item a{display:block;line-height:1.7rem;position:relative;border-bottom:none;font-weight:400;margin-bottom:0;padding:0 1.5rem 0 1.25rem}.dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active,.dropdown-wrapper .nav-dropdown .dropdown-item a:hover{color:#3eaf7c}.dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active:after{content:"";width:0;height:0;border-left:5px solid #3eaf7c;border-top:3px solid transparent;border-bottom:3px solid transparent;position:absolute;top:calc(50% - 2px);left:9px}.dropdown-wrapper .nav-dropdown .dropdown-item:first-child h4{margin-top:0;padding-top:0;border-top:0}@media (max-width:719px){.dropdown-wrapper.open .dropdown-title{margin-bottom:.5rem}.dropdown-wrapper .dropdown-title{font-weight:600;font-size:inherit}.dropdown-wrapper .dropdown-title:hover{color:#3eaf7c}.dropdown-wrapper .nav-dropdown{transition:height .1s ease-out;overflow:hidden}.dropdown-wrapper .nav-dropdown .dropdown-item h4{border-top:0;margin-top:0;padding-top:0}.dropdown-wrapper .nav-dropdown .dropdown-item>a,.dropdown-wrapper .nav-dropdown .dropdown-item h4{font-size:15px;line-height:2rem}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem{font-size:14px;padding-left:1rem}}@media (min-width:719px){.dropdown-wrapper{height:1.8rem}.dropdown-wrapper.open .nav-dropdown,.dropdown-wrapper:hover .nav-dropdown{display:block!important}.dropdown-wrapper.open:blur{display:none}.dropdown-wrapper .dropdown-title .arrow{border-left:4px solid transparent;border-right:4px solid transparent;border-top:6px solid #ccc;border-bottom:0}.dropdown-wrapper .nav-dropdown{display:none;height:auto!important;box-sizing:border-box;max-height:calc(100vh - 2.7rem);overflow-y:auto;position:absolute;top:100%;right:0;background-color:#fff;padding:.6rem 0;border:1px solid;border-color:#ddd #ddd #ccc;text-align:left;border-radius:.25rem;white-space:nowrap;margin:0}}.nav-links{display:inline-block}.nav-links a{line-height:1.4rem;color:inherit}.nav-links a.router-link-active,.nav-links a:hover{color:#3eaf7c}.nav-links .nav-item{position:relative;display:inline-block;margin-left:1.5rem;line-height:2rem}.nav-links .nav-item:first-child{margin-left:0}.nav-links .repo-link{margin-left:1.5rem}@media (max-width:719px){.nav-links .nav-item,.nav-links .repo-link{margin-left:0}}@media (min-width:719px){.nav-links a.router-link-active,.nav-links a:hover{color:#2c3e50}.nav-item>a:not(.external).router-link-active,.nav-item>a:not(.external):hover{margin-bottom:-2px;border-bottom:2px solid #46bd87}}.navbar{padding:.7rem 1.5rem;line-height:2.2rem}.navbar a,.navbar img,.navbar span{display:inline-block}.navbar .logo{height:2.2rem;min-width:2.2rem;margin-right:.8rem;vertical-align:top}.navbar .site-name{font-size:1.3rem;font-weight:600;color:#2c3e50;position:relative}.navbar .links{padding-left:1.5rem;box-sizing:border-box;background-color:#fff;white-space:nowrap;font-size:.9rem;position:absolute;right:1.5rem;top:.7rem;display:flex}.navbar .links .search-box{flex:0 0 auto;vertical-align:top}@media (max-width:719px){.navbar{padding-left:4rem}.navbar .can-hide{display:none}.navbar .links{padding-left:1.5rem}.navbar .site-name{width:calc(100vw - 9.4rem);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}}.page-edit{max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.page-edit{padding:2rem}}@media (max-width:419px){.page-edit{padding:1.5rem}}.page-edit{padding-top:1rem;padding-bottom:1rem;overflow:auto}.page-edit .edit-link{display:inline-block}.page-edit .edit-link a{color:#4e6e8e;margin-right:.25rem}.page-edit .last-updated{float:right;font-size:.9em}.page-edit .last-updated .prefix{font-weight:500;color:#4e6e8e}.page-edit .last-updated .time{font-weight:400;color:#aaa}@media (max-width:719px){.page-edit .edit-link{margin-bottom:.5rem}.page-edit .last-updated{font-size:.8em;float:none;text-align:left}}.page-nav{max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.page-nav{padding:2rem}}@media (max-width:419px){.page-nav{padding:1.5rem}}.page-nav{padding-top:1rem;padding-bottom:0}.page-nav .inner{min-height:2rem;margin-top:0;border-top:1px solid #eaecef;padding-top:1rem;overflow:auto}.page-nav .next{float:right}.page{padding-bottom:2rem;display:block}.sidebar-group .sidebar-group{padding-left:.5em}.sidebar-group:not(.collapsable) .sidebar-heading:not(.clickable){cursor:auto;color:inherit}.sidebar-group.is-sub-group{padding-left:0}.sidebar-group.is-sub-group>.sidebar-heading{font-size:.95em;line-height:1.4;font-weight:400;padding-left:2rem}.sidebar-group.is-sub-group>.sidebar-heading:not(.clickable){opacity:.5}.sidebar-group.is-sub-group>.sidebar-group-items{padding-left:1rem}.sidebar-group.is-sub-group>.sidebar-group-items>li>.sidebar-link{font-size:.95em;border-left:none}.sidebar-group.depth-2>.sidebar-heading{border-left:none}.sidebar-heading{color:#2c3e50;transition:color .15s ease;cursor:pointer;font-size:1.1em;font-weight:700;padding:.35rem 1.5rem .35rem 1.25rem;width:100%;box-sizing:border-box;margin:0;border-left:.25rem solid transparent}.sidebar-heading.open,.sidebar-heading:hover{color:inherit}.sidebar-heading .arrow{position:relative;top:-.12em;left:.5em}.sidebar-heading.clickable.active{font-weight:600;color:#3eaf7c;border-left-color:#3eaf7c}.sidebar-heading.clickable:hover{color:#3eaf7c}.sidebar-group-items{transition:height .1s ease-out;font-size:.95em;overflow:hidden}.sidebar .sidebar-sub-headers{padding-left:1rem;font-size:.95em}a.sidebar-link{font-size:1em;font-weight:400;display:inline-block;color:#2c3e50;border-left:.25rem solid transparent;padding:.35rem 1rem .35rem 1.25rem;line-height:1.4;width:100%;box-sizing:border-box}a.sidebar-link:hover{color:#3eaf7c}a.sidebar-link.active{font-weight:600;color:#3eaf7c;border-left-color:#3eaf7c}.sidebar-group a.sidebar-link{padding-left:2rem}.sidebar-sub-headers a.sidebar-link{padding-top:.25rem;padding-bottom:.25rem;border-left:none}.sidebar-sub-headers a.sidebar-link.active{font-weight:500}.sidebar ul{padding:0;margin:0;list-style-type:none}.sidebar a{display:inline-block}.sidebar .nav-links{display:none;border-bottom:1px solid #eaecef;padding:.5rem 0 .75rem}.sidebar .nav-links a{font-weight:600}.sidebar .nav-links .nav-item,.sidebar .nav-links .repo-link{display:block;line-height:1.25rem;font-size:1.1em;padding:.5rem 0 .5rem 1.5rem}.sidebar>.sidebar-links{padding:1.5rem 0}.sidebar>.sidebar-links>li>a.sidebar-link{font-size:1.1em;line-height:1.7;font-weight:700}.sidebar>.sidebar-links>li:not(:first-child){margin-top:.75rem}@media (max-width:719px){.sidebar .nav-links{display:block}.sidebar .nav-links .dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active:after{top:calc(1rem - 2px)}.sidebar>.sidebar-links{padding:1rem 0}}.badge[data-v-50e657c5]{display:inline-block;font-size:14px;height:18px;line-height:18px;border-radius:3px;padding:0 6px;color:#fff}.badge.green[data-v-50e657c5],.badge.tip[data-v-50e657c5],.badge[data-v-50e657c5]{background-color:#42b983}.badge.error[data-v-50e657c5]{background-color:#da5961}.badge.warn[data-v-50e657c5],.badge.warning[data-v-50e657c5],.badge.yellow[data-v-50e657c5]{background-color:#e7c000}.badge+.badge[data-v-50e657c5]{margin-left:5px}
\ No newline at end of file
diff --git a/docs/doc/assets/css/0.styles.a0babdbb.css b/docs/doc/assets/css/0.styles.a0babdbb.css
deleted file mode 100644
index 1885724..0000000
--- a/docs/doc/assets/css/0.styles.a0babdbb.css
+++ /dev/null
@@ -1 +0,0 @@
-code[class*=language-],pre[class*=language-]{color:#ccc;background:none;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#2d2d2d}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.block-comment,.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#999}.token.punctuation{color:#ccc}.token.attr-name,.token.deleted,.token.namespace,.token.tag{color:#e2777a}.token.function-name{color:#6196cc}.token.boolean,.token.function,.token.number{color:#f08d49}.token.class-name,.token.constant,.token.property,.token.symbol{color:#f8c555}.token.atrule,.token.builtin,.token.important,.token.keyword,.token.selector{color:#cc99cd}.token.attr-value,.token.char,.token.regex,.token.string,.token.variable{color:#7ec699}.token.entity,.token.operator,.token.url{color:#67cdcc}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.inserted{color:green}.theme-default-content code{color:#476582;padding:.25rem .5rem;margin:0;font-size:.85em;background-color:rgba(27,31,35,.05);border-radius:3px}.theme-default-content code .token.deleted{color:#ec5975}.theme-default-content code .token.inserted{color:#3eaf7c}.theme-default-content pre,.theme-default-content pre[class*=language-]{line-height:1.4;padding:1.25rem 1.5rem;margin:.85rem 0;background-color:#282c34;border-radius:6px;overflow:auto}.theme-default-content pre[class*=language-] code,.theme-default-content pre code{color:#fff;padding:0;background-color:transparent;border-radius:0}div[class*=language-]{position:relative;background-color:#282c34;border-radius:6px}div[class*=language-] .highlight-lines{-webkit-user-select:none;-ms-user-select:none;user-select:none;padding-top:1.3rem;position:absolute;top:0;left:0;width:100%;line-height:1.4}div[class*=language-] .highlight-lines .highlighted{background-color:rgba(0,0,0,.66)}div[class*=language-] pre,div[class*=language-] pre[class*=language-]{background:transparent;position:relative;z-index:1}div[class*=language-]:before{position:absolute;z-index:3;top:.8em;right:1em;font-size:.75rem;color:hsla(0,0%,100%,.4)}div[class*=language-]:not(.line-numbers-mode) .line-numbers-wrapper{display:none}div[class*=language-].line-numbers-mode .highlight-lines .highlighted{position:relative}div[class*=language-].line-numbers-mode .highlight-lines .highlighted:before{content:" ";position:absolute;z-index:3;left:0;top:0;display:block;width:3.5rem;height:100%;background-color:rgba(0,0,0,.66)}div[class*=language-].line-numbers-mode pre{padding-left:4.5rem;vertical-align:middle}div[class*=language-].line-numbers-mode .line-numbers-wrapper{position:absolute;top:0;width:3.5rem;text-align:center;color:hsla(0,0%,100%,.3);padding:1.25rem 0;line-height:1.4}div[class*=language-].line-numbers-mode .line-numbers-wrapper br{-webkit-user-select:none;-ms-user-select:none;user-select:none}div[class*=language-].line-numbers-mode .line-numbers-wrapper .line-number{position:relative;z-index:4;-webkit-user-select:none;-ms-user-select:none;user-select:none;font-size:.85em}div[class*=language-].line-numbers-mode:after{content:"";position:absolute;z-index:2;top:0;left:0;width:3.5rem;height:100%;border-radius:6px 0 0 6px;border-right:1px solid rgba(0,0,0,.66);background-color:#282c34}div[class~=language-js]:before{content:"js"}div[class~=language-ts]:before{content:"ts"}div[class~=language-html]:before{content:"html"}div[class~=language-md]:before{content:"md"}div[class~=language-vue]:before{content:"vue"}div[class~=language-css]:before{content:"css"}div[class~=language-sass]:before{content:"sass"}div[class~=language-scss]:before{content:"scss"}div[class~=language-less]:before{content:"less"}div[class~=language-stylus]:before{content:"stylus"}div[class~=language-go]:before{content:"go"}div[class~=language-java]:before{content:"java"}div[class~=language-c]:before{content:"c"}div[class~=language-sh]:before{content:"sh"}div[class~=language-yaml]:before{content:"yaml"}div[class~=language-py]:before{content:"py"}div[class~=language-docker]:before{content:"docker"}div[class~=language-dockerfile]:before{content:"dockerfile"}div[class~=language-makefile]:before{content:"makefile"}div[class~=language-javascript]:before{content:"js"}div[class~=language-typescript]:before{content:"ts"}div[class~=language-markup]:before{content:"html"}div[class~=language-markdown]:before{content:"md"}div[class~=language-json]:before{content:"json"}div[class~=language-ruby]:before{content:"rb"}div[class~=language-python]:before{content:"py"}div[class~=language-bash]:before{content:"sh"}div[class~=language-php]:before{content:"php"}.custom-block .custom-block-title{font-weight:600;margin-bottom:-.4rem}.custom-block.danger,.custom-block.tip,.custom-block.warning{padding:.1rem 1.5rem;border-left-width:.5rem;border-left-style:solid;margin:1rem 0}.custom-block.tip{background-color:#f3f5f7;border-color:#42b983}.custom-block.warning{background-color:rgba(255,229,100,.3);border-color:#e7c000;color:#6b5900}.custom-block.warning .custom-block-title{color:#b29400}.custom-block.warning a{color:#2c3e50}.custom-block.danger{background-color:#ffe6e6;border-color:#c00;color:#4d0000}.custom-block.danger .custom-block-title{color:#900}.custom-block.danger a{color:#2c3e50}.custom-block.details{display:block;position:relative;border-radius:2px;margin:1.6em 0;padding:1.6em;background-color:#eee}.custom-block.details h4{margin-top:0}.custom-block.details figure:last-child,.custom-block.details p:last-child{margin-bottom:0;padding-bottom:0}.custom-block.details summary{outline:none;cursor:pointer}.arrow{display:inline-block;width:0;height:0}.arrow.up{border-bottom:6px solid #ccc}.arrow.down,.arrow.up{border-left:4px solid transparent;border-right:4px solid transparent}.arrow.down{border-top:6px solid #ccc}.arrow.right{border-left:6px solid #ccc}.arrow.left,.arrow.right{border-top:4px solid transparent;border-bottom:4px solid transparent}.arrow.left{border-right:6px solid #ccc}.theme-default-content:not(.custom){max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.theme-default-content:not(.custom){padding:2rem}}@media (max-width:419px){.theme-default-content:not(.custom){padding:1.5rem}}.table-of-contents .badge{vertical-align:middle}body,html{padding:0;margin:0;background-color:#fff}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;color:#2c3e50}.page{padding-left:20rem}.navbar{z-index:20;right:0;height:3.6rem;background-color:#fff;box-sizing:border-box;border-bottom:1px solid #eaecef}.navbar,.sidebar-mask{position:fixed;top:0;left:0}.sidebar-mask{z-index:9;width:100vw;height:100vh;display:none}.sidebar{font-size:16px;background-color:#fff;width:20rem;position:fixed;z-index:10;margin:0;top:3.6rem;left:0;bottom:0;box-sizing:border-box;border-right:1px solid #eaecef;overflow-y:auto}.theme-default-content:not(.custom)>:first-child{margin-top:3.6rem}.theme-default-content:not(.custom) a:hover{text-decoration:underline}.theme-default-content:not(.custom) p.demo{padding:1rem 1.5rem;border:1px solid #ddd;border-radius:4px}.theme-default-content:not(.custom) img{max-width:100%}.theme-default-content.custom{padding:0;margin:0}.theme-default-content.custom img{max-width:100%}a{font-weight:500;text-decoration:none}a,p a code{color:#3eaf7c}p a code{font-weight:400}kbd{background:#eee;border:.15rem solid #ddd;border-bottom:.25rem solid #ddd;border-radius:.15rem;padding:0 .15em}blockquote{font-size:1rem;color:#999;border-left:.2rem solid #dfe2e5;margin:1rem 0;padding:.25rem 0 .25rem 1rem}blockquote>p{margin:0}ol,ul{padding-left:1.2em}strong{font-weight:600}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.25}.theme-default-content:not(.custom)>h1,.theme-default-content:not(.custom)>h2,.theme-default-content:not(.custom)>h3,.theme-default-content:not(.custom)>h4,.theme-default-content:not(.custom)>h5,.theme-default-content:not(.custom)>h6{margin-top:-3.1rem;padding-top:4.6rem;margin-bottom:0}.theme-default-content:not(.custom)>h1:first-child,.theme-default-content:not(.custom)>h2:first-child,.theme-default-content:not(.custom)>h3:first-child,.theme-default-content:not(.custom)>h4:first-child,.theme-default-content:not(.custom)>h5:first-child,.theme-default-content:not(.custom)>h6:first-child{margin-top:-1.5rem;margin-bottom:1rem}.theme-default-content:not(.custom)>h1:first-child+.custom-block,.theme-default-content:not(.custom)>h1:first-child+p,.theme-default-content:not(.custom)>h1:first-child+pre,.theme-default-content:not(.custom)>h2:first-child+.custom-block,.theme-default-content:not(.custom)>h2:first-child+p,.theme-default-content:not(.custom)>h2:first-child+pre,.theme-default-content:not(.custom)>h3:first-child+.custom-block,.theme-default-content:not(.custom)>h3:first-child+p,.theme-default-content:not(.custom)>h3:first-child+pre,.theme-default-content:not(.custom)>h4:first-child+.custom-block,.theme-default-content:not(.custom)>h4:first-child+p,.theme-default-content:not(.custom)>h4:first-child+pre,.theme-default-content:not(.custom)>h5:first-child+.custom-block,.theme-default-content:not(.custom)>h5:first-child+p,.theme-default-content:not(.custom)>h5:first-child+pre,.theme-default-content:not(.custom)>h6:first-child+.custom-block,.theme-default-content:not(.custom)>h6:first-child+p,.theme-default-content:not(.custom)>h6:first-child+pre{margin-top:2rem}h1:hover .header-anchor,h2:hover .header-anchor,h3:hover .header-anchor,h4:hover .header-anchor,h5:hover .header-anchor,h6:hover .header-anchor{opacity:1}h1{font-size:2.2rem}h2{font-size:1.65rem;padding-bottom:.3rem;border-bottom:1px solid #eaecef}h3{font-size:1.35rem}a.header-anchor{font-size:.85em;float:left;margin-left:-.87em;padding-right:.23em;margin-top:.125em;opacity:0}a.header-anchor:hover{text-decoration:none}.line-number,code,kbd{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}ol,p,ul{line-height:1.7}hr{border:0;border-top:1px solid #eaecef}table{border-collapse:collapse;margin:1rem 0;display:block;overflow-x:auto}tr{border-top:1px solid #dfe2e5}tr:nth-child(2n){background-color:#f6f8fa}td,th{border:1px solid #dfe2e5;padding:.6em 1em}.theme-container.sidebar-open .sidebar-mask{display:block}.theme-container.no-navbar .theme-default-content:not(.custom)>h1,.theme-container.no-navbar h2,.theme-container.no-navbar h3,.theme-container.no-navbar h4,.theme-container.no-navbar h5,.theme-container.no-navbar h6{margin-top:1.5rem;padding-top:0}.theme-container.no-navbar .sidebar{top:0}@media (min-width:720px){.theme-container.no-sidebar .sidebar{display:none}.theme-container.no-sidebar .page{padding-left:0}}@media (max-width:959px){.sidebar{font-size:15px;width:16.4rem}.page{padding-left:16.4rem}}@media (max-width:719px){.sidebar{top:0;padding-top:3.6rem;transform:translateX(-100%);transition:transform .2s ease}.page{padding-left:0}.theme-container.sidebar-open .sidebar{transform:translateX(0)}.theme-container.no-navbar .sidebar{padding-top:0}}@media (max-width:419px){h1{font-size:1.9rem}.theme-default-content div[class*=language-]{margin:.85rem -1.5rem;border-radius:0}}#nprogress{pointer-events:none}#nprogress .bar{background:#3eaf7c;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #3eaf7c,0 0 5px #3eaf7c;opacity:1;transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border-color:#3eaf7c transparent transparent #3eaf7c;border-style:solid;border-width:2px;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon.outbound{color:#aaa;display:inline-block;vertical-align:middle;position:relative;top:-1px}.home{padding:3.6rem 2rem 0;max-width:960px;margin:0 auto;display:block}.home .hero{text-align:center}.home .hero img{max-width:100%;max-height:280px;display:block;margin:3rem auto 1.5rem}.home .hero h1{font-size:3rem}.home .hero .action,.home .hero .description,.home .hero h1{margin:1.8rem auto}.home .hero .description{max-width:35rem;font-size:1.6rem;line-height:1.3;color:#6a8bad}.home .hero .action-button{display:inline-block;font-size:1.2rem;color:#fff;background-color:#3eaf7c;padding:.8rem 1.6rem;border-radius:4px;transition:background-color .1s ease;box-sizing:border-box;border-bottom:1px solid #389d70}.home .hero .action-button:hover{background-color:#4abf8a}.home .features{border-top:1px solid #eaecef;padding:1.2rem 0;margin-top:2.5rem;display:flex;flex-wrap:wrap;align-items:flex-start;align-content:stretch;justify-content:space-between}.home .feature{flex-grow:1;flex-basis:30%;max-width:30%}.home .feature h2{font-size:1.4rem;font-weight:500;border-bottom:none;padding-bottom:0;color:#3a5169}.home .feature p{color:#4e6e8e}.home .footer{padding:2.5rem;border-top:1px solid #eaecef;text-align:center;color:#4e6e8e}@media (max-width:719px){.home .features{flex-direction:column}.home .feature{max-width:100%;padding:0 2.5rem}}@media (max-width:419px){.home{padding-left:1.5rem;padding-right:1.5rem}.home .hero img{max-height:210px;margin:2rem auto 1.2rem}.home .hero h1{font-size:2rem}.home .hero .action,.home .hero .description,.home .hero h1{margin:1.2rem auto}.home .hero .description{font-size:1.2rem}.home .hero .action-button{font-size:1rem;padding:.6rem 1.2rem}.home .feature h2{font-size:1.25rem}}.search-box{display:inline-block;position:relative;margin-right:1rem}.search-box input{cursor:text;width:10rem;height:2rem;color:#4e6e8e;display:inline-block;border:1px solid #cfd4db;border-radius:2rem;font-size:.9rem;line-height:2rem;padding:0 .5rem 0 2rem;outline:none;transition:all .2s ease;background:#fff url(/assets/img/search.83621669.svg) .6rem .5rem no-repeat;background-size:1rem}.search-box input:focus{cursor:auto;border-color:#3eaf7c}.search-box .suggestions{background:#fff;width:20rem;position:absolute;top:2rem;border:1px solid #cfd4db;border-radius:6px;padding:.4rem;list-style-type:none}.search-box .suggestions.align-right{right:0}.search-box .suggestion{line-height:1.4;padding:.4rem .6rem;border-radius:4px;cursor:pointer}.search-box .suggestion a{white-space:normal;color:#5d82a6}.search-box .suggestion a .page-title{font-weight:600}.search-box .suggestion a .header{font-size:.9em;margin-left:.25em}.search-box .suggestion.focused{background-color:#f3f4f5}.search-box .suggestion.focused a{color:#3eaf7c}@media (max-width:959px){.search-box input{cursor:pointer;width:0;border-color:transparent;position:relative}.search-box input:focus{cursor:text;left:0;width:10rem}}@media (-ms-high-contrast:none){.search-box input{height:2rem}}@media (max-width:959px) and (min-width:719px){.search-box .suggestions{left:0}}@media (max-width:719px){.search-box{margin-right:0}.search-box input{left:1rem}.search-box .suggestions{right:0}}@media (max-width:419px){.search-box .suggestions{width:calc(100vw - 4rem)}.search-box input:focus{width:8rem}}.sidebar-button{cursor:pointer;display:none;width:1.25rem;height:1.25rem;position:absolute;padding:.6rem;top:.6rem;left:1rem}.sidebar-button .icon{display:block;width:1.25rem;height:1.25rem}@media (max-width:719px){.sidebar-button{display:block}}.dropdown-enter,.dropdown-leave-to{height:0!important}.dropdown-wrapper{cursor:pointer}.dropdown-wrapper .dropdown-title{display:block;font-size:.9rem;font-family:inherit;cursor:inherit;padding:inherit;line-height:1.4rem;background:transparent;border:none;font-weight:500;color:#2c3e50}.dropdown-wrapper .dropdown-title:hover{border-color:transparent}.dropdown-wrapper .dropdown-title .arrow{vertical-align:middle;margin-top:-1px;margin-left:.4rem}.dropdown-wrapper .nav-dropdown .dropdown-item{color:inherit;line-height:1.7rem}.dropdown-wrapper .nav-dropdown .dropdown-item h4{margin:.45rem 0 0;border-top:1px solid #eee;padding:.45rem 1.5rem 0 1.25rem}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem-wrapper{padding:0;list-style:none}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem-wrapper .dropdown-subitem{font-size:.9em}.dropdown-wrapper .nav-dropdown .dropdown-item a{display:block;line-height:1.7rem;position:relative;border-bottom:none;font-weight:400;margin-bottom:0;padding:0 1.5rem 0 1.25rem}.dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active,.dropdown-wrapper .nav-dropdown .dropdown-item a:hover{color:#3eaf7c}.dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active:after{content:"";width:0;height:0;border-left:5px solid #3eaf7c;border-top:3px solid transparent;border-bottom:3px solid transparent;position:absolute;top:calc(50% - 2px);left:9px}.dropdown-wrapper .nav-dropdown .dropdown-item:first-child h4{margin-top:0;padding-top:0;border-top:0}@media (max-width:719px){.dropdown-wrapper.open .dropdown-title{margin-bottom:.5rem}.dropdown-wrapper .dropdown-title{font-weight:600;font-size:inherit}.dropdown-wrapper .dropdown-title:hover{color:#3eaf7c}.dropdown-wrapper .nav-dropdown{transition:height .1s ease-out;overflow:hidden}.dropdown-wrapper .nav-dropdown .dropdown-item h4{border-top:0;margin-top:0;padding-top:0}.dropdown-wrapper .nav-dropdown .dropdown-item>a,.dropdown-wrapper .nav-dropdown .dropdown-item h4{font-size:15px;line-height:2rem}.dropdown-wrapper .nav-dropdown .dropdown-item .dropdown-subitem{font-size:14px;padding-left:1rem}}@media (min-width:719px){.dropdown-wrapper{height:1.8rem}.dropdown-wrapper.open .nav-dropdown,.dropdown-wrapper:hover .nav-dropdown{display:block!important}.dropdown-wrapper.open:blur{display:none}.dropdown-wrapper .dropdown-title .arrow{border-left:4px solid transparent;border-right:4px solid transparent;border-top:6px solid #ccc;border-bottom:0}.dropdown-wrapper .nav-dropdown{display:none;height:auto!important;box-sizing:border-box;max-height:calc(100vh - 2.7rem);overflow-y:auto;position:absolute;top:100%;right:0;background-color:#fff;padding:.6rem 0;border:1px solid;border-color:#ddd #ddd #ccc;text-align:left;border-radius:.25rem;white-space:nowrap;margin:0}}.nav-links{display:inline-block}.nav-links a{line-height:1.4rem;color:inherit}.nav-links a.router-link-active,.nav-links a:hover{color:#3eaf7c}.nav-links .nav-item{position:relative;display:inline-block;margin-left:1.5rem;line-height:2rem}.nav-links .nav-item:first-child{margin-left:0}.nav-links .repo-link{margin-left:1.5rem}@media (max-width:719px){.nav-links .nav-item,.nav-links .repo-link{margin-left:0}}@media (min-width:719px){.nav-links a.router-link-active,.nav-links a:hover{color:#2c3e50}.nav-item>a:not(.external).router-link-active,.nav-item>a:not(.external):hover{margin-bottom:-2px;border-bottom:2px solid #46bd87}}.navbar{padding:.7rem 1.5rem;line-height:2.2rem}.navbar a,.navbar img,.navbar span{display:inline-block}.navbar .logo{height:2.2rem;min-width:2.2rem;margin-right:.8rem;vertical-align:top}.navbar .site-name{font-size:1.3rem;font-weight:600;color:#2c3e50;position:relative}.navbar .links{padding-left:1.5rem;box-sizing:border-box;background-color:#fff;white-space:nowrap;font-size:.9rem;position:absolute;right:1.5rem;top:.7rem;display:flex}.navbar .links .search-box{flex:0 0 auto;vertical-align:top}@media (max-width:719px){.navbar{padding-left:4rem}.navbar .can-hide{display:none}.navbar .links{padding-left:1.5rem}.navbar .site-name{width:calc(100vw - 9.4rem);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}}.page-edit{max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.page-edit{padding:2rem}}@media (max-width:419px){.page-edit{padding:1.5rem}}.page-edit{padding-top:1rem;padding-bottom:1rem;overflow:auto}.page-edit .edit-link{display:inline-block}.page-edit .edit-link a{color:#4e6e8e;margin-right:.25rem}.page-edit .last-updated{float:right;font-size:.9em}.page-edit .last-updated .prefix{font-weight:500;color:#4e6e8e}.page-edit .last-updated .time{font-weight:400;color:#aaa}@media (max-width:719px){.page-edit .edit-link{margin-bottom:.5rem}.page-edit .last-updated{font-size:.8em;float:none;text-align:left}}.page-nav{max-width:740px;margin:0 auto;padding:2rem 2.5rem}@media (max-width:959px){.page-nav{padding:2rem}}@media (max-width:419px){.page-nav{padding:1.5rem}}.page-nav{padding-top:1rem;padding-bottom:0}.page-nav .inner{min-height:2rem;margin-top:0;border-top:1px solid #eaecef;padding-top:1rem;overflow:auto}.page-nav .next{float:right}.page{padding-bottom:2rem;display:block}.sidebar-group .sidebar-group{padding-left:.5em}.sidebar-group:not(.collapsable) .sidebar-heading:not(.clickable){cursor:auto;color:inherit}.sidebar-group.is-sub-group{padding-left:0}.sidebar-group.is-sub-group>.sidebar-heading{font-size:.95em;line-height:1.4;font-weight:400;padding-left:2rem}.sidebar-group.is-sub-group>.sidebar-heading:not(.clickable){opacity:.5}.sidebar-group.is-sub-group>.sidebar-group-items{padding-left:1rem}.sidebar-group.is-sub-group>.sidebar-group-items>li>.sidebar-link{font-size:.95em;border-left:none}.sidebar-group.depth-2>.sidebar-heading{border-left:none}.sidebar-heading{color:#2c3e50;transition:color .15s ease;cursor:pointer;font-size:1.1em;font-weight:700;padding:.35rem 1.5rem .35rem 1.25rem;width:100%;box-sizing:border-box;margin:0;border-left:.25rem solid transparent}.sidebar-heading.open,.sidebar-heading:hover{color:inherit}.sidebar-heading .arrow{position:relative;top:-.12em;left:.5em}.sidebar-heading.clickable.active{font-weight:600;color:#3eaf7c;border-left-color:#3eaf7c}.sidebar-heading.clickable:hover{color:#3eaf7c}.sidebar-group-items{transition:height .1s ease-out;font-size:.95em;overflow:hidden}.sidebar .sidebar-sub-headers{padding-left:1rem;font-size:.95em}a.sidebar-link{font-size:1em;font-weight:400;display:inline-block;color:#2c3e50;border-left:.25rem solid transparent;padding:.35rem 1rem .35rem 1.25rem;line-height:1.4;width:100%;box-sizing:border-box}a.sidebar-link:hover{color:#3eaf7c}a.sidebar-link.active{font-weight:600;color:#3eaf7c;border-left-color:#3eaf7c}.sidebar-group a.sidebar-link{padding-left:2rem}.sidebar-sub-headers a.sidebar-link{padding-top:.25rem;padding-bottom:.25rem;border-left:none}.sidebar-sub-headers a.sidebar-link.active{font-weight:500}.sidebar ul{padding:0;margin:0;list-style-type:none}.sidebar a{display:inline-block}.sidebar .nav-links{display:none;border-bottom:1px solid #eaecef;padding:.5rem 0 .75rem}.sidebar .nav-links a{font-weight:600}.sidebar .nav-links .nav-item,.sidebar .nav-links .repo-link{display:block;line-height:1.25rem;font-size:1.1em;padding:.5rem 0 .5rem 1.5rem}.sidebar>.sidebar-links{padding:1.5rem 0}.sidebar>.sidebar-links>li>a.sidebar-link{font-size:1.1em;line-height:1.7;font-weight:700}.sidebar>.sidebar-links>li:not(:first-child){margin-top:.75rem}@media (max-width:719px){.sidebar .nav-links{display:block}.sidebar .nav-links .dropdown-wrapper .nav-dropdown .dropdown-item a.router-link-active:after{top:calc(1rem - 2px)}.sidebar>.sidebar-links{padding:1rem 0}}.badge[data-v-50e657c5]{display:inline-block;font-size:14px;height:18px;line-height:18px;border-radius:3px;padding:0 6px;color:#fff}.badge.green[data-v-50e657c5],.badge.tip[data-v-50e657c5],.badge[data-v-50e657c5]{background-color:#42b983}.badge.error[data-v-50e657c5]{background-color:#da5961}.badge.warn[data-v-50e657c5],.badge.warning[data-v-50e657c5],.badge.yellow[data-v-50e657c5]{background-color:#e7c000}.badge+.badge[data-v-50e657c5]{margin-left:5px}
\ No newline at end of file
diff --git a/docs/doc/assets/img/search.83621669.svg b/docs/doc/assets/img/search.83621669.svg
deleted file mode 100644
index 03d8391..0000000
--- a/docs/doc/assets/img/search.83621669.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/docs/doc/assets/js/2.b7bb5685.js b/docs/doc/assets/js/2.b7bb5685.js
deleted file mode 100644
index 43ea753..0000000
--- a/docs/doc/assets/js/2.b7bb5685.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{301:function(t,e,n){"use strict";n.d(e,"d",(function(){return i})),n.d(e,"a",(function(){return a})),n.d(e,"i",(function(){return s})),n.d(e,"f",(function(){return u})),n.d(e,"g",(function(){return l})),n.d(e,"h",(function(){return c})),n.d(e,"b",(function(){return h})),n.d(e,"e",(function(){return f})),n.d(e,"k",(function(){return p})),n.d(e,"l",(function(){return d})),n.d(e,"c",(function(){return v})),n.d(e,"j",(function(){return m}));n(24),n(98),n(165),n(92),n(170),n(64),n(43),n(302),n(65),n(318),n(101);var i=/#.*$/,r=/\.(md|html)$/,a=/\/$/,s=/^[a-z]+:/i;function o(t){return decodeURI(t).replace(i,"").replace(r,"")}function u(t){return s.test(t)}function l(t){return/^mailto:/.test(t)}function c(t){return/^tel:/.test(t)}function h(t){if(u(t))return t;var e=t.match(i),n=e?e[0]:"",r=o(t);return a.test(r)?t:r+".html"+n}function f(t,e){var n=decodeURIComponent(t.hash),r=function(t){var e=t.match(i);if(e)return e[0]}(e);return(!r||n===r)&&o(t.path)===o(e)}function p(t,e,n){if(u(e))return{type:"external",path:e};n&&(e=function(t,e,n){var i=t.charAt(0);if("/"===i)return t;if("?"===i||"#"===i)return e+t;var r=e.split("/");n&&r[r.length-1]||r.pop();for(var a=t.replace(/^\//,"").split("/"),s=0;s3&&void 0!==arguments[3]?arguments[3]:1;if("string"==typeof e)return p(n,e,i);if(Array.isArray(e))return Object.assign(p(n,e[0],i),{title:e[1]});var a=e.children||[];return 0===a.length&&e.path?Object.assign(p(n,e.path,i),{title:e.title}):{type:"group",path:e.path,title:e.title,sidebarDepth:e.sidebarDepth,children:a.map((function(e){return t(e,n,i,r+1)})),collapsable:!1!==e.collapsable}}(t,r,l)})):[]}return[]}function g(t){var e=v(t.headers||[]);return[{type:"group",collapsable:!1,title:t.title,path:null,children:e.map((function(e){return{type:"auto",title:e.title,basePath:t.path,path:t.path+"#"+e.slug,children:e.children||[]}}))}]}function v(t){var e;return(t=t.map((function(t){return Object.assign({},t)}))).forEach((function(t){2===t.level?e=t:e&&(e.children||(e.children=[])).push(t)})),t.filter((function(t){return 2===t.level}))}function m(t){return Object.assign(t,{type:t.items&&t.items.length?"links":"link"})}},302:function(t,e,n){"use strict";var i=n(167),r=n(5),a=n(13),s=n(23),o=n(168),u=n(169);i("match",1,(function(t,e,n){return[function(e){var n=s(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,n):new RegExp(e)[t](String(n))},function(t){var i=n(e,t,this);if(i.done)return i.value;var s=r(t),l=String(this);if(!s.global)return u(s,l);var c=s.unicode;s.lastIndex=0;for(var h,f=[],p=0;null!==(h=u(s,l));){var d=String(h[0]);f[p]=d,""===d&&(s.lastIndex=o(l,a(s.lastIndex),c)),p++}return 0===p?null:f}]}))},303:function(t,e,n){},304:function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},305:function(t,e,n){},306:function(t,e,n){},307:function(t,e,n){},308:function(t,e,n){},309:function(t,e,n){},310:function(t,e,n){},311:function(t,e,n){},312:function(t,e,n){},313:function(t,e,n){},314:function(t,e,n){},315:function(t,e,n){},316:function(t,e,n){},318:function(t,e,n){"use strict";var i=n(167),r=n(166),a=n(5),s=n(23),o=n(97),u=n(168),l=n(13),c=n(169),h=n(67),f=n(1),p=[].push,d=Math.min,g=!f((function(){return!RegExp(4294967295,"y")}));i("split",2,(function(t,e,n){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var i=String(s(this)),a=void 0===n?4294967295:n>>>0;if(0===a)return[];if(void 0===t)return[i];if(!r(t))return e.call(i,t,a);for(var o,u,l,c=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,g=new RegExp(t.source,f+"g");(o=h.call(g,i))&&!((u=g.lastIndex)>d&&(c.push(i.slice(d,o.index)),o.length>1&&o.index=a));)g.lastIndex===o.index&&g.lastIndex++;return d===i.length?!l&&g.test("")||c.push(""):c.push(i.slice(d)),c.length>a?c.slice(0,a):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var r=s(this),a=null==e?void 0:e[t];return void 0!==a?a.call(e,r,n):i.call(String(r),e,n)},function(t,r){var s=n(i,t,this,r,i!==e);if(s.done)return s.value;var h=a(t),f=String(this),p=o(h,RegExp),v=h.unicode,m=(h.ignoreCase?"i":"")+(h.multiline?"m":"")+(h.unicode?"u":"")+(g?"y":"g"),b=new p(g?h:"^(?:"+h.source+")",m),k=void 0===r?4294967295:r>>>0;if(0===k)return[];if(0===f.length)return null===c(b,f)?[f]:[];for(var _=0,x=0,C=[];x-1)&&(e=e.replace(/y/g,""));var o=s(x?new m(t,e):m(t,e),i?this:b,$);return C&&n&&d(o,{sticky:n}),o},y=function(t){t in $||o($,t,{configurable:!0,get:function(){return m[t]},set:function(e){m[t]=e}})},L=u(m),w=0;L.length>w;)y(L[w++]);b.constructor=$,$.prototype=b,f(r,"RegExp",$)}g("RegExp")},322:function(t,e){t.exports=function(t){return null==t}},323:function(t,e,n){"use strict";n.r(e);n(164);var i=n(301),r={name:"SidebarGroup",components:{DropdownTransition:n(324).a},props:["item","open","collapsable","depth"],beforeCreate:function(){this.$options.components.SidebarLinks=n(323).default},methods:{isActive:i.e}},a=(n(344),n(42)),s=Object(a.a)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"sidebar-group",class:[{collapsable:t.collapsable,"is-sub-group":0!==t.depth},"depth-"+t.depth]},[t.item.path?n("RouterLink",{staticClass:"sidebar-heading clickable",class:{open:t.open,active:t.isActive(t.$route,t.item.path)},attrs:{to:t.item.path},nativeOn:{click:function(e){return t.$emit("toggle")}}},[n("span",[t._v(t._s(t.item.title))]),t._v(" "),t.collapsable?n("span",{staticClass:"arrow",class:t.open?"down":"right"}):t._e()]):n("p",{staticClass:"sidebar-heading",class:{open:t.open},on:{click:function(e){return t.$emit("toggle")}}},[n("span",[t._v(t._s(t.item.title))]),t._v(" "),t.collapsable?n("span",{staticClass:"arrow",class:t.open?"down":"right"}):t._e()]),t._v(" "),n("DropdownTransition",[t.open||!t.collapsable?n("SidebarLinks",{staticClass:"sidebar-group-items",attrs:{items:t.item.children,"sidebar-depth":t.item.sidebarDepth,depth:t.depth+1}}):t._e()],1)],1)}),[],!1,null,null,null).exports;n(345),n(64);function o(t,e,n,i,r){var a={props:{to:e,activeClass:"",exactActiveClass:""},class:{active:i,"sidebar-link":!0}};return r>2&&(a.style={"padding-left":r+"rem"}),t("RouterLink",a,n)}function u(t,e,n,r,a){var s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:1;return!e||s>a?null:t("ul",{class:"sidebar-sub-headers"},e.map((function(e){var l=Object(i.e)(r,n+"#"+e.slug);return t("li",{class:"sidebar-sub-header"},[o(t,n+"#"+e.slug,e.title,l,e.level-1),u(t,e.children,n,r,a,s+1)])})))}var l={functional:!0,props:["item","sidebarDepth"],render:function(t,e){var n=e.parent,r=n.$page,a=(n.$site,n.$route),s=n.$themeConfig,l=n.$themeLocaleConfig,c=e.props,h=c.item,f=c.sidebarDepth,p=Object(i.e)(a,h.path),d="auto"===h.type?p||h.children.some((function(t){return Object(i.e)(a,h.basePath+"#"+t.slug)})):p,g="external"===h.type?function(t,e,n){return t("a",{attrs:{href:e,target:"_blank",rel:"noopener noreferrer"},class:{"sidebar-link":!0}},[n,t("OutboundLink")])}(t,h.path,h.title||h.path):o(t,h.path,h.title||h.path,d),v=[r.frontmatter.sidebarDepth,f,l.sidebarDepth,s.sidebarDepth,1].find((function(t){return void 0!==t})),m=l.displayAllHeaders||s.displayAllHeaders;return"auto"===h.type?[g,u(t,h.children,h.basePath,a,v)]:(d||m)&&h.headers&&!i.d.test(h.path)?[g,u(t,Object(i.c)(h.headers),h.path,a,v)]:g}};n(346);function c(t,e){return"group"===e.type&&e.children.some((function(e){return"group"===e.type?c(t,e):"page"===e.type&&Object(i.e)(t,e.path)}))}var h={name:"SidebarLinks",components:{SidebarGroup:s,SidebarLink:Object(a.a)(l,void 0,void 0,!1,null,null,null).exports},props:["items","depth","sidebarDepth"],data:function(){return{openGroupIndex:0}},watch:{$route:function(){this.refreshIndex()}},created:function(){this.refreshIndex()},methods:{refreshIndex:function(){var t=function(t,e){for(var n=0;n-1&&(this.openGroupIndex=t)},toggleGroup:function(t){this.openGroupIndex=t===this.openGroupIndex?-1:t},isActive:function(t){return Object(i.e)(this.$route,t.regularPath)}}},f=Object(a.a)(h,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.items.length?n("ul",{staticClass:"sidebar-links"},t._l(t.items,(function(e,i){return n("li",{key:i},["group"===e.type?n("SidebarGroup",{attrs:{item:e,open:i===t.openGroupIndex,collapsable:e.collapsable||e.collapsible,depth:t.depth},on:{toggle:function(e){return t.toggleGroup(i)}}}):n("SidebarLink",{attrs:{"sidebar-depth":t.sidebarDepth,item:e}})],1)})),0):t._e()}),[],!1,null,null,null);e.default=f.exports},324:function(t,e,n){"use strict";var i={name:"DropdownTransition",methods:{setHeight:function(t){t.style.height=t.scrollHeight+"px"},unsetHeight:function(t){t.style.height=""}}},r=(n(336),n(42)),a=Object(r.a)(i,(function(){var t=this.$createElement;return(this._self._c||t)("transition",{attrs:{name:"dropdown"},on:{enter:this.setHeight,"after-enter":this.unsetHeight,"before-leave":this.setHeight}},[this._t("default")],2)}),[],!1,null,null,null);e.a=a.exports},325:function(t,e,n){"use strict";var i=n(0),r=n(326);i({target:"String",proto:!0,forced:n(327)("link")},{link:function(t){return r(this,"a","href",t)}})},326:function(t,e,n){var i=n(23),r=/"/g;t.exports=function(t,e,n,a){var s=String(i(t)),o="<"+e;return""!==n&&(o+=" "+n+'="'+String(a).replace(r,""")+'"'),o+">"+s+""+e+">"}},327:function(t,e,n){var i=n(1);t.exports=function(t){return i((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},328:function(t,e,n){"use strict";var i=n(303);n.n(i).a},329:function(t,e,n){var i=n(0),r=n(330);i({global:!0,forced:parseInt!=r},{parseInt:r})},330:function(t,e,n){var i=n(3),r=n(319).trim,a=n(304),s=i.parseInt,o=/^[+-]?0[Xx]/,u=8!==s(a+"08")||22!==s(a+"0x16");t.exports=u?function(t,e){var n=r(String(t));return s(n,e>>>0||(o.test(n)?16:10))}:s},331:function(t,e,n){var i=n(1),r=n(304);t.exports=function(t){return i((function(){return!!r[t]()||"
"!="
"[t]()||r[t].name!==t}))}},332:function(t,e,n){var i=n(4),r=n(96);t.exports=function(t,e,n){var a,s;return r&&"function"==typeof(a=e.constructor)&&a!==n&&i(s=a.prototype)&&s!==n.prototype&&r(t,s),t}},333:function(t,e,n){"use strict";var i,r=n(0),a=n(25).f,s=n(13),o=n(99),u=n(23),l=n(100),c=n(20),h="".endsWith,f=Math.min,p=l("endsWith");r({target:"String",proto:!0,forced:!!(c||p||(i=a(String.prototype,"endsWith"),!i||i.writable))&&!p},{endsWith:function(t){var e=String(u(this));o(t);var n=arguments.length>1?arguments[1]:void 0,i=s(e.length),r=void 0===n?i:f(s(n),i),a=String(t);return h?h.call(e,a,r):e.slice(r-a.length,r)===a}})},334:function(t,e,n){"use strict";var i=n(305);n.n(i).a},335:function(t,e,n){"use strict";var i=n(306);n.n(i).a},336:function(t,e,n){"use strict";var i=n(307);n.n(i).a},337:function(t,e,n){"use strict";var i=n(308);n.n(i).a},338:function(t,e,n){"use strict";var i=n(309);n.n(i).a},339:function(t,e,n){"use strict";var i=n(310);n.n(i).a},340:function(t,e,n){"use strict";var i=n(311);n.n(i).a},341:function(t,e,n){var i=n(30),r=n(14),a=n(26);t.exports=function(t){return"string"==typeof t||!r(t)&&a(t)&&"[object String]"==i(t)}},342:function(t,e,n){"use strict";var i=n(312);n.n(i).a},343:function(t,e,n){"use strict";var i=n(313);n.n(i).a},344:function(t,e,n){"use strict";var i=n(314);n.n(i).a},345:function(t,e,n){"use strict";var i=n(0),r=n(29).find,a=n(94),s=n(17),o=!0,u=s("find");"find"in[]&&Array(1).find((function(){o=!1})),i({target:"Array",proto:!0,forced:o||!u},{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),a("find")},346:function(t,e,n){"use strict";var i=n(315);n.n(i).a},347:function(t,e,n){"use strict";var i=n(316);n.n(i).a},349:function(t,e,n){"use strict";n.r(e);n(164),n(91),n(325);var i=n(301),r={name:"NavLink",props:{item:{required:!0}},computed:{link:function(){return Object(i.b)(this.item.link)},exact:function(){var t=this;return this.$site.locales?Object.keys(this.$site.locales).some((function(e){return e===t.link})):"/"===this.link},isNonHttpURI:function(){return Object(i.g)(this.link)||Object(i.h)(this.link)},isBlankTarget:function(){return"_blank"===this.target},isInternal:function(){return!Object(i.f)(this.link)&&!this.isBlankTarget},target:function(){return this.isNonHttpURI?null:this.item.target?this.item.target:Object(i.f)(this.link)?"_blank":""},rel:function(){return this.isNonHttpURI?null:this.item.rel?this.item.rel:this.isBlankTarget?"noopener noreferrer":""}},methods:{focusoutAction:function(){this.$emit("focusout")}}},a=n(42),s=Object(a.a)(r,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isInternal?n("RouterLink",{staticClass:"nav-link",attrs:{to:t.link,exact:t.exact},nativeOn:{focusout:function(e){return t.focusoutAction(e)}}},[t._v("\n "+t._s(t.item.text)+"\n")]):n("a",{staticClass:"nav-link external",attrs:{href:t.link,target:t.target,rel:t.rel},on:{focusout:t.focusoutAction}},[t._v("\n "+t._s(t.item.text)+"\n "),t.isBlankTarget?n("OutboundLink"):t._e()],1)}),[],!1,null,null,null).exports,o={name:"Home",components:{NavLink:s},computed:{data:function(){return this.$page.frontmatter},actionLink:function(){return{link:this.data.actionLink,text:this.data.actionText}}}},u=(n(328),Object(a.a)(o,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("main",{staticClass:"home",attrs:{"aria-labelledby":"main-title"}},[n("header",{staticClass:"hero"},[t.data.heroImage?n("img",{attrs:{src:t.$withBase(t.data.heroImage),alt:t.data.heroAlt||"hero"}}):t._e(),t._v(" "),null!==t.data.heroText?n("h1",{attrs:{id:"main-title"}},[t._v("\n "+t._s(t.data.heroText||t.$title||"Hello")+"\n ")]):t._e(),t._v(" "),null!==t.data.tagline?n("p",{staticClass:"description"},[t._v("\n "+t._s(t.data.tagline||t.$description||"Welcome to your VuePress site")+"\n ")]):t._e(),t._v(" "),t.data.actionText&&t.data.actionLink?n("p",{staticClass:"action"},[n("NavLink",{staticClass:"action-button",attrs:{item:t.actionLink}})],1):t._e()]),t._v(" "),t.data.features&&t.data.features.length?n("div",{staticClass:"features"},t._l(t.data.features,(function(e,i){return n("div",{key:i,staticClass:"feature"},[n("h2",[t._v(t._s(e.title))]),t._v(" "),n("p",[t._v(t._s(e.details))])])})),0):t._e(),t._v(" "),n("Content",{staticClass:"theme-default-content custom"}),t._v(" "),t.data.footer?n("div",{staticClass:"footer"},[t._v("\n "+t._s(t.data.footer)+"\n ")]):t._e()],1)}),[],!1,null,null,null).exports),l=(n(329),n(24),n(172),n(165),n(92),n(43),n(174),n(302),n(320),n(170),n(64),n(321),n(93),n(333),n(65),n(318),n(176)),c=n.n(l),h=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,i=c()(e,"title","");return c()(e,"frontmatter.tags")&&(i+=" ".concat(e.frontmatter.tags.join(" "))),n&&(i+=" ".concat(n)),f(t,i)},f=function(t,e){var n=function(t){return t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")},i=new RegExp("[^\0-]"),r=t.split(/\s+/g).map((function(t){return t.trim()})).filter((function(t){return!!t}));if(i.test(t))return r.some((function(t){return e.toLowerCase().indexOf(t)>-1}));var a=t.endsWith(" ");return new RegExp(r.map((function(t,e){return r.length!==e+1||a?"(?=.*\\b".concat(n(t),"\\b)"):"(?=.*\\b".concat(n(t),")")})).join("")+".+","gi").test(e)},p={name:"SearchBox",data:function(){return{query:"",focused:!1,focusIndex:0,placeholder:void 0}},computed:{showSuggestions:function(){return this.focused&&this.suggestions&&this.suggestions.length},suggestions:function(){var t=this.query.trim().toLowerCase();if(t){for(var e=this.$site.pages,n=this.$site.themeConfig.searchMaxSuggestions||5,i=this.$localePath,r=[],a=0;a=n);a++){var s=e[a];if(this.getPageLocalePath(s)===i&&this.isSearchable(s))if(h(t,s))r.push(s);else if(s.headers)for(var o=0;o=n);o++){var u=s.headers[o];u.title&&h(t,s,u.title)&&r.push(Object.assign({},s,{path:s.path+"#"+u.slug,header:u}))}}return r}},alignRight:function(){return(this.$site.themeConfig.nav||[]).length+(this.$site.repo?1:0)<=2}},mounted:function(){this.placeholder=this.$site.themeConfig.searchPlaceholder||"",document.addEventListener("keydown",this.onHotkey)},beforeDestroy:function(){document.removeEventListener("keydown",this.onHotkey)},methods:{getPageLocalePath:function(t){for(var e in this.$site.locales||{})if("/"!==e&&0===t.path.indexOf(e))return e;return"/"},isSearchable:function(t){var e=null;return null===e||(e=Array.isArray(e)?e:new Array(e)).filter((function(e){return t.path.match(e)})).length>0},onHotkey:function(t){t.srcElement===document.body&&["s","/"].includes(t.key)&&(this.$refs.input.focus(),t.preventDefault())},onUp:function(){this.showSuggestions&&(this.focusIndex>0?this.focusIndex--:this.focusIndex=this.suggestions.length-1)},onDown:function(){this.showSuggestions&&(this.focusIndex "+t._s(e.header.title))]):t._e()])])})),0):t._e()])}),[],!1,null,null,null).exports),g=(n(335),Object(a.a)({},(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"sidebar-button",on:{click:function(e){return t.$emit("toggle-sidebar")}}},[n("svg",{staticClass:"icon",attrs:{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",viewBox:"0 0 448 512"}},[n("path",{attrs:{fill:"currentColor",d:"M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z"}})])])}),[],!1,null,null,null).exports),v=(n(175),n(40)),m=n(324),b=n(177),k=n.n(b),_={name:"DropdownLink",components:{NavLink:s,DropdownTransition:m.a},props:{item:{required:!0}},data:function(){return{open:!1}},computed:{dropdownAriaLabel:function(){return this.item.ariaLabel||this.item.text}},watch:{$route:function(){this.open=!1}},methods:{setOpen:function(t){this.open=t},isLastItemOfArray:function(t,e){return k()(e)===t}}},x=(n(337),{name:"NavLinks",components:{NavLink:s,DropdownLink:Object(a.a)(_,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"dropdown-wrapper",class:{open:t.open}},[n("button",{staticClass:"dropdown-title",attrs:{type:"button","aria-label":t.dropdownAriaLabel},on:{click:function(e){return t.setOpen(!t.open)}}},[n("span",{staticClass:"title"},[t._v(t._s(t.item.text))]),t._v(" "),n("span",{staticClass:"arrow",class:t.open?"down":"right"})]),t._v(" "),n("DropdownTransition",[n("ul",{directives:[{name:"show",rawName:"v-show",value:t.open,expression:"open"}],staticClass:"nav-dropdown"},t._l(t.item.items,(function(e,i){return n("li",{key:e.link||i,staticClass:"dropdown-item"},["links"===e.type?n("h4",[t._v("\n "+t._s(e.text)+"\n ")]):t._e(),t._v(" "),"links"===e.type?n("ul",{staticClass:"dropdown-subitem-wrapper"},t._l(e.items,(function(i){return n("li",{key:i.link,staticClass:"dropdown-subitem"},[n("NavLink",{attrs:{item:i},on:{focusout:function(n){t.isLastItemOfArray(i,e.items)&&t.isLastItemOfArray(e,t.item.items)&&t.setOpen(!1)}}})],1)})),0):n("NavLink",{attrs:{item:e},on:{focusout:function(n){t.isLastItemOfArray(e,t.item.items)&&t.setOpen(!1)}}})],1)})),0)])],1)}),[],!1,null,null,null).exports},computed:{userNav:function(){return this.$themeLocaleConfig.nav||this.$site.themeConfig.nav||[]},nav:function(){var t=this,e=this.$site.locales;if(e&&Object.keys(e).length>1){var n=this.$page.path,i=this.$router.options.routes,r=this.$site.themeConfig.locales||{},a={text:this.$themeLocaleConfig.selectText||"Languages",ariaLabel:this.$themeLocaleConfig.ariaLabel||"Select language",items:Object.keys(e).map((function(a){var s,o=e[a],u=r[a]&&r[a].label||o.lang;return o.lang===t.$lang?s=n:(s=n.replace(t.$localeConfig.path,a),i.some((function(t){return t.path===s}))||(s=a)),{text:u,link:s}}))};return[].concat(Object(v.a)(this.userNav),[a])}return this.userNav},userLinks:function(){return(this.nav||[]).map((function(t){return Object.assign(Object(i.j)(t),{items:(t.items||[]).map(i.j)})}))},repoLink:function(){var t=this.$site.themeConfig.repo;return t?/^https?:/.test(t)?t:"https://github.com/".concat(t):null},repoLabel:function(){if(this.repoLink){if(this.$site.themeConfig.repoLabel)return this.$site.themeConfig.repoLabel;for(var t=this.repoLink.match(/^https?:\/\/[^/]+/)[0],e=["GitHub","GitLab","Bitbucket"],n=0;nMath.abs(n)&&Math.abs(e)>40&&(e>0&&this.touchStart.x<=80?this.toggleSidebar(!0):this.toggleSidebar(!1))}}}),B=Object(a.a)(W,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"theme-container",class:t.pageClasses,on:{touchstart:t.onTouchStart,touchend:t.onTouchEnd}},[t.shouldShowNavbar?n("Navbar",{on:{"toggle-sidebar":t.toggleSidebar}}):t._e(),t._v(" "),n("div",{staticClass:"sidebar-mask",on:{click:function(e){return t.toggleSidebar(!1)}}}),t._v(" "),n("Sidebar",{attrs:{items:t.sidebarItems},on:{"toggle-sidebar":t.toggleSidebar},scopedSlots:t._u([{key:"top",fn:function(){return[t._t("sidebar-top")]},proxy:!0},{key:"bottom",fn:function(){return[t._t("sidebar-bottom")]},proxy:!0}],null,!0)}),t._v(" "),t.$page.frontmatter.home?n("Home"):n("Page",{attrs:{"sidebar-items":t.sidebarItems},scopedSlots:t._u([{key:"top",fn:function(){return[t._t("page-top")]},proxy:!0},{key:"bottom",fn:function(){return[t._t("page-bottom")]},proxy:!0}],null,!0)})],1)}),[],!1,null,null,null);e.default=B.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/3.0958b336.js b/docs/doc/assets/js/3.0958b336.js
deleted file mode 100644
index 9b6482a..0000000
--- a/docs/doc/assets/js/3.0958b336.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{317:function(t,e,n){},348:function(t,e,n){"use strict";var i=n(317);n.n(i).a},355:function(t,e,n){"use strict";n.r(e);var i={functional:!0,props:{type:{type:String,default:"tip"},text:String,vertical:{type:String,default:"top"}},render:function(t,e){var n=e.props,i=e.slots;return t("span",{class:["badge",n.type],style:{verticalAlign:n.vertical}},n.text||i().default)}},r=(n(348),n(42)),a=Object(r.a)(i,void 0,void 0,!1,null,"50e657c5",null);e.default=a.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/3.4e0fa3d9.js b/docs/doc/assets/js/3.4e0fa3d9.js
deleted file mode 100644
index 20dd5e3..0000000
--- a/docs/doc/assets/js/3.4e0fa3d9.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{317:function(t,e,n){},348:function(t,e,n){"use strict";var i=n(317);n.n(i).a},356:function(t,e,n){"use strict";n.r(e);var i={functional:!0,props:{type:{type:String,default:"tip"},text:String,vertical:{type:String,default:"top"}},render:function(t,e){var n=e.props,i=e.slots;return t("span",{class:["badge",n.type],style:{verticalAlign:n.vertical}},n.text||i().default)}},r=(n(348),n(42)),a=Object(r.a)(i,void 0,void 0,!1,null,"50e657c5",null);e.default=a.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/4.023f7c55.js b/docs/doc/assets/js/4.023f7c55.js
deleted file mode 100644
index bddefe5..0000000
--- a/docs/doc/assets/js/4.023f7c55.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[4],{350:function(t,e,s){"use strict";s.r(e);var n=["There's nothing here.","How did we get here?","That's a Four-Oh-Four.","Looks like we've got some broken links."],o={methods:{getMsg:function(){return n[Math.floor(Math.random()*n.length)]}}},i=s(42),h=Object(i.a)(o,(function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"theme-container"},[e("div",{staticClass:"theme-default-content"},[e("h1",[this._v("404")]),this._v(" "),e("blockquote",[this._v(this._s(this.getMsg()))]),this._v(" "),e("RouterLink",{attrs:{to:"/"}},[this._v("\n Take me home.\n ")])],1)])}),[],!1,null,null,null);e.default=h.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/5.445cad31.js b/docs/doc/assets/js/5.445cad31.js
deleted file mode 100644
index 71e393b..0000000
--- a/docs/doc/assets/js/5.445cad31.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{351:function(t,e,n){"use strict";n.r(e);var s=n(42),l=Object(s.a)({},(function(){var t=this.$createElement;return(this._self._c||t)("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}})}),[],!1,null,null,null);e.default=l.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/5.d90b4340.js b/docs/doc/assets/js/5.d90b4340.js
deleted file mode 100644
index 06b9a87..0000000
--- a/docs/doc/assets/js/5.d90b4340.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{354:function(t,e,n){"use strict";n.r(e);var s=n(42),l=Object(s.a)({},(function(){var t=this.$createElement;return(this._self._c||t)("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}})}),[],!1,null,null,null);e.default=l.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/6.32cb0422.js b/docs/doc/assets/js/6.32cb0422.js
deleted file mode 100644
index e55d93a..0000000
--- a/docs/doc/assets/js/6.32cb0422.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{352:function(t,s,e){"use strict";e.r(s);var n=e(42),r=Object(n.a)({},(function(){var t=this.$createElement,s=this._self._c||t;return s("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}},[s("h2",{attrs:{id:"常见问题"}},[s("a",{staticClass:"header-anchor",attrs:{href:"#常见问题"}},[this._v("#")]),this._v(" 常见问题")]),this._v(" "),s("ol",[s("li")])])}),[],!1,null,null,null);s.default=r.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/6.f276a306.js b/docs/doc/assets/js/6.f276a306.js
deleted file mode 100644
index 23552fd..0000000
--- a/docs/doc/assets/js/6.f276a306.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{351:function(t,e,n){"use strict";n.r(e);var s=n(42),l=Object(s.a)({},(function(){var t=this.$createElement;return(this._self._c||t)("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}})}),[],!1,null,null,null);e.default=l.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/7.d3eb66c2.js b/docs/doc/assets/js/7.d3eb66c2.js
deleted file mode 100644
index 7389280..0000000
--- a/docs/doc/assets/js/7.d3eb66c2.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[7],{353:function(t,s,e){"use strict";e.r(s);var n=e(42),r=Object(n.a)({},(function(){var t=this.$createElement,s=this._self._c||t;return s("ContentSlotsDistributor",{attrs:{"slot-key":this.$parent.slotKey}},[s("h2",{attrs:{id:"常见问题"}},[s("a",{staticClass:"header-anchor",attrs:{href:"#常见问题"}},[this._v("#")]),this._v(" 常见问题")]),this._v(" "),s("ol",[s("li")])])}),[],!1,null,null,null);s.default=r.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/7.e50f21bc.js b/docs/doc/assets/js/7.e50f21bc.js
deleted file mode 100644
index a0bcca4..0000000
--- a/docs/doc/assets/js/7.e50f21bc.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[7],{354:function(t,e,v){"use strict";v.r(e);var _=v(42),c=Object(_.a)({},(function(){var t=this,e=t.$createElement,v=t._self._c||e;return v("ContentSlotsDistributor",{attrs:{"slot-key":t.$parent.slotKey}},[v("h2",{attrs:{id:"快捷键"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#快捷键"}},[t._v("#")]),t._v(" 快捷键")]),t._v(" "),v("p",[t._v("快捷键绑定使用了 "),v("a",{attrs:{href:"https://github.com/ccampbell/mousetrap",target:"_blank",rel:"noopener noreferrer"}},[t._v("mousetrap"),v("OutboundLink")],1),t._v(" 插件.")]),t._v(" "),v("p",[t._v("除了全局快捷键, 其他快捷键, 只在 "),v("code",[t._v("播放界面")]),t._v(" 和 "),v("code",[t._v("Mini 模式")]),t._v(" 下生效")]),t._v(" "),v("table",[v("thead",[v("tr",[v("th",{staticStyle:{"text-align":"center"}},[t._v("快捷键")]),t._v(" "),v("th",[t._v("说明")]),t._v(" "),v("th",{staticStyle:{"text-align":"center"}},[t._v("快捷键")]),t._v(" "),v("th",[t._v("说明")])])]),t._v(" "),v("tbody",[v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + Space")])]),t._v(" "),v("td",[t._v("聚焦或取消聚焦(全局快捷键)")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}}),t._v(" "),v("td")]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("→")])]),t._v(" "),v("td",[t._v("快进 5 秒")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("←")])]),t._v(" "),v("td",[t._v("快退 5 秒")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("↑")])]),t._v(" "),v("td",[t._v("音量调高")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("↓")])]),t._v(" "),v("td",[t._v("音量调低")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("m")])]),t._v(" "),v("td",[t._v("静音")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("t")])]),t._v(" "),v("td",[t._v("置顶或退出置顶")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("f")])]),t._v(" "),v("td",[t._v("进入或退出全屏")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("esc")])]),t._v(" "),v("td",[t._v("退出全屏")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + →")])]),t._v(" "),v("td",[t._v("下一集")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ←")])]),t._v(" "),v("td",[t._v("上一集")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ↑")])]),t._v(" "),v("td",[t._v("透明度调高")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ↓")])]),t._v(" "),v("td",[t._v("透明度调低")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("home")])]),t._v(" "),v("td",[t._v("跳到视频开始位置")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("end")])]),t._v(" "),v("td",[t._v("跳到视频结束位置")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("pgUp")])]),t._v(" "),v("td",[t._v("播放倍速加快 0.25")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("pgDown")])]),t._v(" "),v("td",[t._v("播放倍速减慢 0.25")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + m")])]),t._v(" "),v("td",[t._v("进入或退出 Mini 模式")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("space")])]),t._v(" "),v("td",[t._v("播放或暂停")])])])]),t._v(" "),v("div",{staticClass:"custom-block danger"},[v("p",{staticClass:"custom-block-title"},[t._v("WARNING")]),t._v(" "),v("p",[t._v("对相关操作不了解的人, 切勿自定义快捷键. 误操作导致无法正常使用软件. 请点击设置里 "),v("code",[t._v("重置软件")]),t._v(" 按钮, 恢复默认设置.")])]),t._v(" "),v("h3",{attrs:{id:"导出"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#导出"}},[t._v("#")]),t._v(" 导出")]),t._v(" "),v("p",[t._v("设置界面, 选择快捷键功能里, 点击 "),v("code",[t._v("导出")]),t._v(" 按钮, 即可导出快捷键.")]),t._v(" "),v("div",{staticClass:"language- extra-class"},[v("pre",{pre:!0,attrs:{class:"language-text"}},[v("code",[t._v('[{"name":"back","desc":"快退","key":"left"},{"name":"end","desc":"跳到视频结束位置","key":"end"},{"name":"escape","desc":"退出全屏","key":"esc"},{"name":"forward","desc":"快进","key":"right"},{"name":"fullscreen","desc":"进入或退出全屏","key":"f"},{"name":"home","desc":"跳到视频开始位置","key":"home"},{"name":"mini","desc":"进入或退出mini模式","key":"alt+m"},{"name":"mute","desc":"静音","key":"m"},{"name":"next","desc":"下一集","key":"alt+right"},{"name":"opacityDown","desc":"透明度调低","key":"alt+down"},{"name":"opacityUp","desc":"透明度调高","key":"alt+up"},{"name":"playAndPause","desc":"播放或暂停","key":"space"},{"name":"playbackRateDown","desc":"播放倍速减慢","key":"pagedown"},{"name":"playbackRateUp","desc":"播放倍速加快","key":"pageup"},{"name":"prev","desc":"上一集","key":"alt+left"},{"name":"top","desc":"置顶或退出置顶","key":"t"},{"name":"volumeDown","desc":"音量调低","key":"down"},{"name":"volumeUp","desc":"音量调高","key":"up"}]\n')])])]),v("table",[v("thead",[v("tr",[v("th",[t._v("属性")]),t._v(" "),v("th",[t._v("说明")])])]),t._v(" "),v("tbody",[v("tr",[v("td",[t._v("name")]),t._v(" "),v("td",[t._v("不可删除, 不建议修改.")])]),t._v(" "),v("tr",[v("td",[t._v("desc")]),t._v(" "),v("td",[t._v("中文描述, 便于阅读. 不可删除, 不建议修改.")])]),t._v(" "),v("tr",[v("td",[t._v("key")]),t._v(" "),v("td",[t._v("键盘 key 值, 修改相应 key 值, 即可改绑.")])])])]),t._v(" "),v("h3",{attrs:{id:"编辑"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#编辑"}},[t._v("#")]),t._v(" 编辑")]),t._v(" "),v("p",[t._v("为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:")]),t._v(" "),v("ol",[v("li",[v("a",{attrs:{href:"https://jsonformatter.org/",target:"_blank",rel:"noopener noreferrer"}},[t._v("jsonformatter"),v("OutboundLink")],1)]),t._v(" "),v("li",[v("a",{attrs:{href:"https://www.sojson.com/",target:"_blank",rel:"noopener noreferrer"}},[t._v("JSON 在线"),v("OutboundLink")],1)])]),t._v(" "),v("p",[t._v("快捷键分两种:")]),t._v(" "),v("ol",[v("li",[t._v("单个按键, 如: "),v("code",[t._v("right")]),t._v(" 快进")]),t._v(" "),v("li",[t._v("组合按键, 如: "),v("code",[t._v("alt+right")]),t._v(" 下一集")])]),t._v(" "),v("p",[t._v("支持的按键")]),t._v(" "),v("ol",[v("li",[t._v("普通键: "),v("code",[t._v("a")]),t._v(", "),v("code",[t._v("b")]),t._v(", "),v("code",[t._v("c")]),t._v(", "),v("code",[t._v("0")]),t._v(", "),v("code",[t._v("1")]),t._v(", "),v("code",[t._v("2")]),t._v(", "),v("code",[t._v("+")]),t._v(", "),v("code",[t._v("-")]),t._v(", "),v("code",[t._v("*")]),t._v(", "),v("code",[t._v("/")]),t._v(" 等")]),t._v(" "),v("li",[t._v("组合键: "),v("code",[t._v("shift")]),t._v(", "),v("code",[t._v("ctrl")]),t._v(", "),v("code",[t._v("alt")]),t._v(", "),v("code",[t._v("meta")]),t._v(", "),v("code",[t._v("option")]),t._v(", "),v("code",[t._v("command")]),t._v(". 后两个为 mac 键盘.")]),t._v(" "),v("li",[t._v("其他特殊键: "),v("code",[t._v("backspace")]),t._v(", "),v("code",[t._v("tab")]),t._v(", "),v("code",[t._v("enter")]),t._v(", "),v("code",[t._v("retur")]),t._v(", "),v("code",[t._v("capslock")]),t._v(", "),v("code",[t._v("esc")]),t._v(", "),v("code",[t._v("space")]),t._v(", "),v("code",[t._v("pageup")]),t._v(", "),v("code",[t._v("pagedown")]),t._v(", "),v("code",[t._v("end")]),t._v(", "),v("code",[t._v("home")]),t._v(", "),v("code",[t._v("left")]),t._v(", "),v("code",[t._v("right")]),t._v(", "),v("code",[t._v("down")]),t._v(", "),v("code",[t._v("ins")]),t._v(", "),v("code",[t._v("del")]),t._v(", "),v("code",[t._v("plus")])])]),t._v(" "),v("div",{staticClass:"custom-block tip"},[v("p",{staticClass:"custom-block-title"},[t._v("TIP")]),t._v(" "),v("ol",[v("li",[t._v("所有字母均为小写, 组合按键使用 "),v("code",[t._v("+")]),t._v(" 连接. 中间注意不能有空格.")]),t._v(" "),v("li",[t._v("同一 key 不能绑定两次.")]),t._v(" "),v("li",[t._v("快捷键可以删除, 修改, 但不能添加.")])])]),t._v(" "),v("h3",{attrs:{id:"导入"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#导入"}},[t._v("#")]),t._v(" 导入")]),t._v(" "),v("p",[t._v("快捷键编辑完复制到剪贴板, 然后点击软件设置里 "),v("code",[t._v("导入")]),t._v(" 按钮, 则导入自定义的快捷键.")]),t._v(" "),v("div",{staticClass:"custom-block warning"},[v("p",{staticClass:"custom-block-title"},[t._v("WARNING")]),t._v(" "),v("p",[t._v("需要注意的是, 导入快捷键需要重启软件.")])])])}),[],!1,null,null,null);e.default=c.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/8.d2479dad.js b/docs/doc/assets/js/8.d2479dad.js
deleted file mode 100644
index 8ddbb67..0000000
--- a/docs/doc/assets/js/8.d2479dad.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{353:function(a,t,i){"use strict";i.r(t);var p=i(42),o=Object(p.a)({},(function(){var a=this,t=a.$createElement,i=a._self._c||t;return i("ContentSlotsDistributor",{attrs:{"slot-key":a.$parent.slotKey}},[i("h2",{attrs:{id:"管理源"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#管理源"}},[a._v("#")]),a._v(" 管理源")]),a._v(" "),i("h3",{attrs:{id:"默认源"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#默认源"}},[a._v("#")]),a._v(" 默认源")]),a._v(" "),i("p",[a._v("即每次开启软件, 默认加载资源的网站. 在设置里, 点击选择相应的视频源即可.")]),a._v(" "),i("div",{staticClass:"custom-block tip"},[i("p",{staticClass:"custom-block-title"},[a._v("TIP")]),a._v(" "),i("p",[a._v("每次进行 "),i("code",[a._v("导入")]),a._v(" 操作, 软件都会选择导入后的第一条数据为默认源.")])]),a._v(" "),i("div",{staticClass:"custom-block danger"},[i("p",{staticClass:"custom-block-title"},[a._v("WARNING")]),a._v(" "),i("p",[a._v("对相关操作不了解的人, 切勿自定义视频源. 误操作导致无法正常使用软件. 请点击设置里 "),i("code",[a._v("重置软件")]),a._v(" 按钮, 恢复默认设置.")])]),a._v(" "),i("h3",{attrs:{id:"导出"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#导出"}},[a._v("#")]),a._v(" 导出")]),a._v(" "),i("p",[a._v("设置界面, 选择源管理功能里, 点击 "),i("code",[a._v("导出")]),a._v(" 按钮, 即可导出所有源.")]),a._v(" "),i("div",{staticClass:"language- extra-class"},[i("pre",{pre:!0,attrs:{class:"language-text"}},[i("code",[a._v('[{"id":1,"key":"okzy","name":"OK 资源网","api":"http://cj.okzy.tv/inc/api.php","download":"http://cj.okzy.tv/inc/apidown.php"},{"id":2,"key":"zuidazy","name":"最大资源网","api":"http://www.zdziyuan.com/inc/api.php","download":"http://www.zdziyuan.com/inc/apidown.php"},{"id":3,"key":"doubanzy","name":"豆瓣电影资源","api":"http://v.1988cj.com/inc/api.php","download":"http://v.1988cj.com/inc/apidown.php"},{"id":4,"key":"135zy","name":"135 资源网","api":"http://cj.zycjw1.com/inc/api.php","download":"http://cj.zycjw1.com/inc/apidown.php"},{"id":5,"key":"kuyunzy","name":"酷云资源","api":"http://caiji.kuyun98.com/inc/ldg_api.php","download":"http://caiji.kuyun98.com/inc/apidown.php"},{"id":6,"key":"mgtvzy","name":"芒果 TV 资源网","api":"https://api.shijiapi.com/api.php/provide/vod/at/xml/","download":""},{"id":7,"key":"subo988","name":"速播资源站","api":"https://www.subo988.com/inc/api.php","download":""},{"id":8,"key":"209zy","name":"209 资源","api":"http://cj.1156zy.com/inc/api.php","download":""},{"id":9,"key":"zuixinzy","name":"最新资源","api":"http://api.zuixinapi.com/inc/api.php","download":""},{"id":10,"key":"kubozy","name":"酷播资源","api":"http://api.kbzyapi.com/inc/api.php","download":""},{"id":11,"key":"yongjiuzy","name":"永久资源","api":"http://cj.yongjiuzyw.com/inc/api.php","download":""},{"id":12,"key":"123ku","name":"123 资源","api":"http://cj.123ku2.com:12315/inc/api.php","download":""},{"id":13,"key":"88zyw","name":"88 影视资源站","api":"http://www.88zyw.net/inc/api.php","download":""},{"id":14,"key":"wolongzy","name":"卧龙资源","api":"http://cj.wlzy.tv/inc/api_mac.php","download":""},{"id":15,"key":"mahuazy","name":"麻花资源","api":"https://www.mhapi123.com/inc/api.php","download":""},{"id":16,"key":"kkzy","name":"快快资源","api":"https://api.kkzy.tv/inc/api.php","download":""},{"id":17,"key":"158zy","name":"壹伍捌资源网","api":"http://cj.158zyz.net:158/inc/api.php","download":""},{"id":18,"key":"rrzy","name":"人人资源","api":"https://www.rrzyw.cc/api.php/provide/vod/from/rrm3u8/at/xml/","download":""},{"id":19,"key":"mokazy","name":"魔卡资源网","api":"https://cj.heiyap.com/api.php/provide/vod/at/xml/","download":""},{"id":20,"key":"kyzy","name":"快影资源站","api":"https://www.kyzy.tv/api.php/kyyun/vod/at/xml/","download":""},{"id":21,"key":"solezy","name":"搜乐资源网","api":"https://www.caijizy.vip/api.php/provide/vod/at/xml/","download":""},{"id":22,"key":"bbkdj","name":"步步高顶尖资源网","api":"http://api.bbkdj.com/api","download":""},{"id":23,"key":"1886zy","name":"1886 资源","api":"http://cj.1886zy.co/inc/api.php","download":""},{"id":24,"key":"mbo","name":"秒播资源","api":"http://caiji.mb77.vip/inc/api.php","download":""}]\n')])])]),i("table",[i("thead",[i("tr",[i("th",[a._v("属性")]),a._v(" "),i("th",[a._v("说明")])])]),a._v(" "),i("tbody",[i("tr",[i("td",[a._v("id")]),a._v(" "),i("td",[a._v("数字小的会在前面显示, 即 id 为1, 则在列表第一个显示. id 不可重复, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("key")]),a._v(" "),i("td",[a._v("网站的 key , 一般取 网站的域名. key 不可重复. 必填")])]),a._v(" "),i("tr",[i("td",[a._v("name")]),a._v(" "),i("td",[a._v("网站的中文名称, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("api")]),a._v(" "),i("td",[a._v("视频源接口, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("download")]),a._v(" "),i("td",[a._v("视频下载接口, 填写则会复制 MP4 格式的视频下载链接, 不填则复制 M3U8 格式的视频下载链接, 选填")])])])]),a._v(" "),i("h3",{attrs:{id:"编辑"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#编辑"}},[a._v("#")]),a._v(" 编辑")]),a._v(" "),i("p",[a._v("为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:")]),a._v(" "),i("ol",[i("li",[i("a",{attrs:{href:"https://jsonformatter.org/",target:"_blank",rel:"noopener noreferrer"}},[a._v("jsonformatter"),i("OutboundLink")],1)]),a._v(" "),i("li",[i("a",{attrs:{href:"https://www.sojson.com/",target:"_blank",rel:"noopener noreferrer"}},[a._v("JSON 在线"),i("OutboundLink")],1)])]),a._v(" "),i("p",[a._v("资源网站可以百度获取, 以 OK资源网 为例")]),a._v(" "),i("ol",[i("li",[a._v("百度 "),i("a",{attrs:{href:"http://okzyw.com/",target:"_blank",rel:"noopener noreferrer"}},[a._v("OK资源"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("进入 "),i("a",{attrs:{href:"http://okzyw.com/help/",target:"_blank",rel:"noopener noreferrer"}},[a._v("OK资源采集帮助中心"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("找到 "),i("a",{attrs:{href:"http://okzyw.com/help/#MacCms10",target:"_blank",rel:"noopener noreferrer"}},[a._v("苹果10 MacCms10"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("其中 OK资源站: "),i("code",[a._v("http://cj.okzy.tv/inc/api.php")]),a._v(" 即是 "),i("code",[a._v("api")]),a._v(".")]),a._v(" "),i("li",[a._v("迅雷下载接口: "),i("code",[a._v("http://cj.okzy.tv/inc/apidown.php")]),a._v(" 即是 "),i("code",[a._v("download")])]),a._v(" "),i("li",[a._v("补齐 "),i("code",[a._v("id")]),a._v(", "),i("code",[a._v("key")]),a._v(", "),i("code",[a._v("name")]),a._v(", "),i("code",[a._v("api")]),a._v(", "),i("code",[a._v("download")]),a._v(" 则完成了一个视频源的添加.")])]),a._v(" "),i("div",{staticClass:"custom-block tip"},[i("p",{staticClass:"custom-block-title"},[a._v("TIP")]),a._v(" "),i("ol",[i("li",[i("code",[a._v("id")]),a._v(" 不能重复")]),a._v(" "),i("li",[a._v("除了 "),i("code",[a._v("download")]),a._v(" 可以留空, 其他均为必填值")])])]),a._v(" "),i("div",{staticClass:"custom-block warning"},[i("p",{staticClass:"custom-block-title"},[a._v("WARNING")]),a._v(" "),i("ol",[i("li",[a._v("视频源不是随意一个视频网址, 必须是类似采集网, 且必须是 MacCms10 的接口才行.")]),a._v(" "),i("li",[a._v("部分视频源包含大量违规违法资源, 请用户自行甄别.")]),a._v(" "),i("li",[a._v("请勿非法传播下载 违规违法资源, 否则后果自负.")])])]),a._v(" "),i("h3",{attrs:{id:"导入"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#导入"}},[a._v("#")]),a._v(" 导入")]),a._v(" "),i("p",[a._v("编辑完, 复制到剪贴板, 然后点击软件设置里 "),i("code",[a._v("导入")]),a._v(" 按钮, 即可导入视频源, 无需重启软件.")])])}),[],!1,null,null,null);t.default=o.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/8.e8a88c5e.js b/docs/doc/assets/js/8.e8a88c5e.js
deleted file mode 100644
index 0bc2999..0000000
--- a/docs/doc/assets/js/8.e8a88c5e.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{352:function(t,e,v){"use strict";v.r(e);var _=v(42),c=Object(_.a)({},(function(){var t=this,e=t.$createElement,v=t._self._c||e;return v("ContentSlotsDistributor",{attrs:{"slot-key":t.$parent.slotKey}},[v("h2",{attrs:{id:"快捷键"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#快捷键"}},[t._v("#")]),t._v(" 快捷键")]),t._v(" "),v("p",[t._v("快捷键绑定使用了 "),v("a",{attrs:{href:"https://github.com/ccampbell/mousetrap",target:"_blank",rel:"noopener noreferrer"}},[t._v("mousetrap"),v("OutboundLink")],1),t._v(" 插件.")]),t._v(" "),v("p",[t._v("除了全局快捷键, 其他快捷键, 只在 "),v("code",[t._v("播放界面")]),t._v(" 和 "),v("code",[t._v("Mini 模式")]),t._v(" 下生效")]),t._v(" "),v("table",[v("thead",[v("tr",[v("th",{staticStyle:{"text-align":"center"}},[t._v("快捷键")]),t._v(" "),v("th",[t._v("说明")]),t._v(" "),v("th",{staticStyle:{"text-align":"center"}},[t._v("快捷键")]),t._v(" "),v("th",[t._v("说明")])])]),t._v(" "),v("tbody",[v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + Space")])]),t._v(" "),v("td",[t._v("聚焦或取消聚焦(全局快捷键)")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}}),t._v(" "),v("td")]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("→")])]),t._v(" "),v("td",[t._v("快进 5 秒")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("←")])]),t._v(" "),v("td",[t._v("快退 5 秒")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("↑")])]),t._v(" "),v("td",[t._v("音量调高")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("↓")])]),t._v(" "),v("td",[t._v("音量调低")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("m")])]),t._v(" "),v("td",[t._v("静音")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("t")])]),t._v(" "),v("td",[t._v("置顶或退出置顶")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("f")])]),t._v(" "),v("td",[t._v("进入或退出全屏")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("esc")])]),t._v(" "),v("td",[t._v("退出全屏")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + →")])]),t._v(" "),v("td",[t._v("下一集")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ←")])]),t._v(" "),v("td",[t._v("上一集")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ↑")])]),t._v(" "),v("td",[t._v("透明度调高")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + ↓")])]),t._v(" "),v("td",[t._v("透明度调低")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("home")])]),t._v(" "),v("td",[t._v("跳到视频开始位置")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("end")])]),t._v(" "),v("td",[t._v("跳到视频结束位置")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("pgUp")])]),t._v(" "),v("td",[t._v("播放倍速加快 0.25")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("pgDown")])]),t._v(" "),v("td",[t._v("播放倍速减慢 0.25")])]),t._v(" "),v("tr",[v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("Alt + m")])]),t._v(" "),v("td",[t._v("进入或退出 Mini 模式")]),t._v(" "),v("td",{staticStyle:{"text-align":"center"}},[v("code",[t._v("space")])]),t._v(" "),v("td",[t._v("播放或暂停")])])])]),t._v(" "),v("div",{staticClass:"custom-block danger"},[v("p",{staticClass:"custom-block-title"},[t._v("WARNING")]),t._v(" "),v("p",[t._v("对相关操作不了解的人, 切勿自定义快捷键. 误操作导致无法正常使用软件. 请点击设置里 "),v("code",[t._v("重置软件")]),t._v(" 按钮, 恢复默认设置.")])]),t._v(" "),v("h3",{attrs:{id:"导出"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#导出"}},[t._v("#")]),t._v(" 导出")]),t._v(" "),v("p",[t._v("设置界面, 选择快捷键功能里, 点击 "),v("code",[t._v("导出")]),t._v(" 按钮, 即可导出快捷键.")]),t._v(" "),v("div",{staticClass:"language- extra-class"},[v("pre",{pre:!0,attrs:{class:"language-text"}},[v("code",[t._v('[{"name":"back","desc":"快退","key":"left"},{"name":"end","desc":"跳到视频结束位置","key":"end"},{"name":"escape","desc":"退出全屏","key":"esc"},{"name":"forward","desc":"快进","key":"right"},{"name":"fullscreen","desc":"进入或退出全屏","key":"f"},{"name":"home","desc":"跳到视频开始位置","key":"home"},{"name":"mini","desc":"进入或退出mini模式","key":"alt+m"},{"name":"mute","desc":"静音","key":"m"},{"name":"next","desc":"下一集","key":"alt+right"},{"name":"opacityDown","desc":"透明度调低","key":"alt+down"},{"name":"opacityUp","desc":"透明度调高","key":"alt+up"},{"name":"playAndPause","desc":"播放或暂停","key":"space"},{"name":"playbackRateDown","desc":"播放倍速减慢","key":"pagedown"},{"name":"playbackRateUp","desc":"播放倍速加快","key":"pageup"},{"name":"prev","desc":"上一集","key":"alt+left"},{"name":"top","desc":"置顶或退出置顶","key":"t"},{"name":"volumeDown","desc":"音量调低","key":"down"},{"name":"volumeUp","desc":"音量调高","key":"up"}]\n')])])]),v("table",[v("thead",[v("tr",[v("th",[t._v("属性")]),t._v(" "),v("th",[t._v("说明")])])]),t._v(" "),v("tbody",[v("tr",[v("td",[t._v("name")]),t._v(" "),v("td",[t._v("不可删除, 不建议修改.")])]),t._v(" "),v("tr",[v("td",[t._v("desc")]),t._v(" "),v("td",[t._v("中文描述, 便于阅读. 不可删除, 不建议修改.")])]),t._v(" "),v("tr",[v("td",[t._v("key")]),t._v(" "),v("td",[t._v("键盘 key 值, 修改相应 key 值, 即可改绑.")])])])]),t._v(" "),v("h3",{attrs:{id:"编辑"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#编辑"}},[t._v("#")]),t._v(" 编辑")]),t._v(" "),v("p",[t._v("为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:")]),t._v(" "),v("ol",[v("li",[v("a",{attrs:{href:"https://jsonformatter.org/",target:"_blank",rel:"noopener noreferrer"}},[t._v("jsonformatter"),v("OutboundLink")],1)]),t._v(" "),v("li",[v("a",{attrs:{href:"https://www.sojson.com/",target:"_blank",rel:"noopener noreferrer"}},[t._v("JSON 在线"),v("OutboundLink")],1)])]),t._v(" "),v("p",[t._v("快捷键分两种:")]),t._v(" "),v("ol",[v("li",[t._v("单个按键, 如: "),v("code",[t._v("right")]),t._v(" 快进")]),t._v(" "),v("li",[t._v("组合按键, 如: "),v("code",[t._v("alt+right")]),t._v(" 下一集")])]),t._v(" "),v("p",[t._v("支持的按键")]),t._v(" "),v("ol",[v("li",[t._v("普通键: "),v("code",[t._v("a")]),t._v(", "),v("code",[t._v("b")]),t._v(", "),v("code",[t._v("c")]),t._v(", "),v("code",[t._v("0")]),t._v(", "),v("code",[t._v("1")]),t._v(", "),v("code",[t._v("2")]),t._v(", "),v("code",[t._v("+")]),t._v(", "),v("code",[t._v("-")]),t._v(", "),v("code",[t._v("*")]),t._v(", "),v("code",[t._v("/")]),t._v(" 等")]),t._v(" "),v("li",[t._v("组合键: "),v("code",[t._v("shift")]),t._v(", "),v("code",[t._v("ctrl")]),t._v(", "),v("code",[t._v("alt")]),t._v(", "),v("code",[t._v("meta")]),t._v(", "),v("code",[t._v("option")]),t._v(", "),v("code",[t._v("command")]),t._v(". 后两个为 mac 键盘.")]),t._v(" "),v("li",[t._v("其他特殊键: "),v("code",[t._v("backspace")]),t._v(", "),v("code",[t._v("tab")]),t._v(", "),v("code",[t._v("enter")]),t._v(", "),v("code",[t._v("retur")]),t._v(", "),v("code",[t._v("capslock")]),t._v(", "),v("code",[t._v("esc")]),t._v(", "),v("code",[t._v("space")]),t._v(", "),v("code",[t._v("pageup")]),t._v(", "),v("code",[t._v("pagedown")]),t._v(", "),v("code",[t._v("end")]),t._v(", "),v("code",[t._v("home")]),t._v(", "),v("code",[t._v("left")]),t._v(", "),v("code",[t._v("right")]),t._v(", "),v("code",[t._v("down")]),t._v(", "),v("code",[t._v("ins")]),t._v(", "),v("code",[t._v("del")]),t._v(", "),v("code",[t._v("plus")])])]),t._v(" "),v("div",{staticClass:"custom-block tip"},[v("p",{staticClass:"custom-block-title"},[t._v("TIP")]),t._v(" "),v("ol",[v("li",[t._v("所有字母均为小写, 组合按键使用 "),v("code",[t._v("+")]),t._v(" 连接. 中间注意不能有空格.")]),t._v(" "),v("li",[t._v("同一 key 不能绑定两次.")]),t._v(" "),v("li",[t._v("快捷键可以删除, 修改, 但不能添加.")])])]),t._v(" "),v("h3",{attrs:{id:"导入"}},[v("a",{staticClass:"header-anchor",attrs:{href:"#导入"}},[t._v("#")]),t._v(" 导入")]),t._v(" "),v("p",[t._v("快捷键编辑完复制到剪贴板, 然后点击软件设置里 "),v("code",[t._v("导入")]),t._v(" 按钮, 则导入自定义的快捷键.")]),t._v(" "),v("div",{staticClass:"custom-block warning"},[v("p",{staticClass:"custom-block-title"},[t._v("WARNING")]),t._v(" "),v("p",[t._v("需要注意的是, 导入快捷键需要重启软件.")])])])}),[],!1,null,null,null);e.default=c.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/9.10e938e4.js b/docs/doc/assets/js/9.10e938e4.js
deleted file mode 100644
index 0f60cd7..0000000
--- a/docs/doc/assets/js/9.10e938e4.js
+++ /dev/null
@@ -1 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[9],{355:function(a,t,i){"use strict";i.r(t);var p=i(42),o=Object(p.a)({},(function(){var a=this,t=a.$createElement,i=a._self._c||t;return i("ContentSlotsDistributor",{attrs:{"slot-key":a.$parent.slotKey}},[i("h2",{attrs:{id:"管理源"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#管理源"}},[a._v("#")]),a._v(" 管理源")]),a._v(" "),i("h3",{attrs:{id:"默认源"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#默认源"}},[a._v("#")]),a._v(" 默认源")]),a._v(" "),i("p",[a._v("即每次开启软件, 默认加载资源的网站. 在设置里, 点击选择相应的视频源即可.")]),a._v(" "),i("div",{staticClass:"custom-block tip"},[i("p",{staticClass:"custom-block-title"},[a._v("TIP")]),a._v(" "),i("p",[a._v("每次进行 "),i("code",[a._v("导入")]),a._v(" 操作, 软件都会选择导入后的第一条数据为默认源.")])]),a._v(" "),i("div",{staticClass:"custom-block danger"},[i("p",{staticClass:"custom-block-title"},[a._v("WARNING")]),a._v(" "),i("p",[a._v("对相关操作不了解的人, 切勿自定义视频源. 误操作导致无法正常使用软件. 请点击设置里 "),i("code",[a._v("重置软件")]),a._v(" 按钮, 恢复默认设置.")])]),a._v(" "),i("h3",{attrs:{id:"导出"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#导出"}},[a._v("#")]),a._v(" 导出")]),a._v(" "),i("p",[a._v("设置界面, 选择源管理功能里, 点击 "),i("code",[a._v("导出")]),a._v(" 按钮, 即可导出所有源.")]),a._v(" "),i("div",{staticClass:"language- extra-class"},[i("pre",{pre:!0,attrs:{class:"language-text"}},[i("code",[a._v('[{"id":1,"key":"okzy","name":"OK 资源网","api":"http://cj.okzy.tv/inc/api.php","download":"http://cj.okzy.tv/inc/apidown.php"},{"id":2,"key":"zuidazy","name":"最大资源网","api":"http://www.zdziyuan.com/inc/api.php","download":"http://www.zdziyuan.com/inc/apidown.php"},{"id":3,"key":"doubanzy","name":"豆瓣电影资源","api":"http://v.1988cj.com/inc/api.php","download":"http://v.1988cj.com/inc/apidown.php"},{"id":4,"key":"135zy","name":"135 资源网","api":"http://cj.zycjw1.com/inc/api.php","download":"http://cj.zycjw1.com/inc/apidown.php"},{"id":5,"key":"kuyunzy","name":"酷云资源","api":"http://caiji.kuyun98.com/inc/ldg_api.php","download":"http://caiji.kuyun98.com/inc/apidown.php"},{"id":6,"key":"mgtvzy","name":"芒果 TV 资源网","api":"https://api.shijiapi.com/api.php/provide/vod/at/xml/","download":""},{"id":7,"key":"subo988","name":"速播资源站","api":"https://www.subo988.com/inc/api.php","download":""},{"id":8,"key":"209zy","name":"209 资源","api":"http://cj.1156zy.com/inc/api.php","download":""},{"id":9,"key":"zuixinzy","name":"最新资源","api":"http://api.zuixinapi.com/inc/api.php","download":""},{"id":10,"key":"kubozy","name":"酷播资源","api":"http://api.kbzyapi.com/inc/api.php","download":""},{"id":11,"key":"yongjiuzy","name":"永久资源","api":"http://cj.yongjiuzyw.com/inc/api.php","download":""},{"id":12,"key":"123ku","name":"123 资源","api":"http://cj.123ku2.com:12315/inc/api.php","download":""},{"id":13,"key":"88zyw","name":"88 影视资源站","api":"http://www.88zyw.net/inc/api.php","download":""},{"id":14,"key":"wolongzy","name":"卧龙资源","api":"http://cj.wlzy.tv/inc/api_mac.php","download":""},{"id":15,"key":"mahuazy","name":"麻花资源","api":"https://www.mhapi123.com/inc/api.php","download":""},{"id":16,"key":"kkzy","name":"快快资源","api":"https://api.kkzy.tv/inc/api.php","download":""},{"id":17,"key":"158zy","name":"壹伍捌资源网","api":"http://cj.158zyz.net:158/inc/api.php","download":""},{"id":18,"key":"rrzy","name":"人人资源","api":"https://www.rrzyw.cc/api.php/provide/vod/from/rrm3u8/at/xml/","download":""},{"id":19,"key":"mokazy","name":"魔卡资源网","api":"https://cj.heiyap.com/api.php/provide/vod/at/xml/","download":""},{"id":20,"key":"kyzy","name":"快影资源站","api":"https://www.kyzy.tv/api.php/kyyun/vod/at/xml/","download":""},{"id":21,"key":"solezy","name":"搜乐资源网","api":"https://www.caijizy.vip/api.php/provide/vod/at/xml/","download":""},{"id":22,"key":"bbkdj","name":"步步高顶尖资源网","api":"http://api.bbkdj.com/api","download":""},{"id":23,"key":"1886zy","name":"1886 资源","api":"http://cj.1886zy.co/inc/api.php","download":""},{"id":24,"key":"mbo","name":"秒播资源","api":"http://caiji.mb77.vip/inc/api.php","download":""}]\n')])])]),i("table",[i("thead",[i("tr",[i("th",[a._v("属性")]),a._v(" "),i("th",[a._v("说明")])])]),a._v(" "),i("tbody",[i("tr",[i("td",[a._v("id")]),a._v(" "),i("td",[a._v("数字小的会在前面显示, 即 id 为1, 则在列表第一个显示. id 不可重复, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("key")]),a._v(" "),i("td",[a._v("网站的 key , 一般取 网站的域名. key 不可重复. 必填")])]),a._v(" "),i("tr",[i("td",[a._v("name")]),a._v(" "),i("td",[a._v("网站的中文名称, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("api")]),a._v(" "),i("td",[a._v("视频源接口, 必填")])]),a._v(" "),i("tr",[i("td",[a._v("download")]),a._v(" "),i("td",[a._v("视频下载接口, 填写则会复制 MP4 格式的视频下载链接, 不填则复制 M3U8 格式的视频下载链接, 选填")])])])]),a._v(" "),i("h3",{attrs:{id:"编辑"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#编辑"}},[a._v("#")]),a._v(" 编辑")]),a._v(" "),i("p",[a._v("为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:")]),a._v(" "),i("ol",[i("li",[i("a",{attrs:{href:"https://jsonformatter.org/",target:"_blank",rel:"noopener noreferrer"}},[a._v("jsonformatter"),i("OutboundLink")],1)]),a._v(" "),i("li",[i("a",{attrs:{href:"https://www.sojson.com/",target:"_blank",rel:"noopener noreferrer"}},[a._v("JSON 在线"),i("OutboundLink")],1)])]),a._v(" "),i("p",[a._v("资源网站可以百度获取, 以 OK资源网 为例")]),a._v(" "),i("ol",[i("li",[a._v("百度 "),i("a",{attrs:{href:"http://okzyw.com/",target:"_blank",rel:"noopener noreferrer"}},[a._v("OK资源"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("进入 "),i("a",{attrs:{href:"http://okzyw.com/help/",target:"_blank",rel:"noopener noreferrer"}},[a._v("OK资源采集帮助中心"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("找到 "),i("a",{attrs:{href:"http://okzyw.com/help/#MacCms10",target:"_blank",rel:"noopener noreferrer"}},[a._v("苹果10 MacCms10"),i("OutboundLink")],1)]),a._v(" "),i("li",[a._v("其中 OK资源站: "),i("code",[a._v("http://cj.okzy.tv/inc/api.php")]),a._v(" 即是 "),i("code",[a._v("api")]),a._v(".")]),a._v(" "),i("li",[a._v("迅雷下载接口: "),i("code",[a._v("http://cj.okzy.tv/inc/apidown.php")]),a._v(" 即是 "),i("code",[a._v("download")])]),a._v(" "),i("li",[a._v("补齐 "),i("code",[a._v("id")]),a._v(", "),i("code",[a._v("key")]),a._v(", "),i("code",[a._v("name")]),a._v(", "),i("code",[a._v("api")]),a._v(", "),i("code",[a._v("download")]),a._v(" 则完成了一个视频源的添加.")])]),a._v(" "),i("div",{staticClass:"custom-block tip"},[i("p",{staticClass:"custom-block-title"},[a._v("TIP")]),a._v(" "),i("ol",[i("li",[i("code",[a._v("id")]),a._v(" 不能重复")]),a._v(" "),i("li",[a._v("除了 "),i("code",[a._v("download")]),a._v(" 可以留空, 其他均为必填值")])])]),a._v(" "),i("div",{staticClass:"custom-block warning"},[i("p",{staticClass:"custom-block-title"},[a._v("WARNING")]),a._v(" "),i("ol",[i("li",[a._v("视频源不是随意一个视频网址, 必须是类似采集网, 且必须是 MacCms10 的接口才行.")]),a._v(" "),i("li",[a._v("部分视频源包含大量违规违法资源, 请用户自行甄别.")]),a._v(" "),i("li",[a._v("请勿非法传播下载 违规违法资源, 否则后果自负.")])])]),a._v(" "),i("h3",{attrs:{id:"导入"}},[i("a",{staticClass:"header-anchor",attrs:{href:"#导入"}},[a._v("#")]),a._v(" 导入")]),a._v(" "),i("p",[a._v("编辑完, 复制到剪贴板, 然后点击软件设置里 "),i("code",[a._v("导入")]),a._v(" 按钮, 即可导入视频源, 无需重启软件.")])])}),[],!1,null,null,null);t.default=o.exports}}]);
\ No newline at end of file
diff --git a/docs/doc/assets/js/app.441507e8.js b/docs/doc/assets/js/app.441507e8.js
deleted file mode 100644
index 172cf81..0000000
--- a/docs/doc/assets/js/app.441507e8.js
+++ /dev/null
@@ -1,13 +0,0 @@
-(window.webpackJsonp=window.webpackJsonp||[]).push([[0],[]]);!function(t){function e(e){for(var r,a,c=e[0],u=e[1],s=e[2],l=0,p=[];l0?o(r(t),9007199254740991):0}},function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){var r=n(31),o=n(23);t.exports=function(t){return r(o(t))}},function(t,e,n){var r=n(140),o="object"==typeof self&&self&&self.Object===Object&&self,i=r||o||Function("return this")();t.exports=i},function(t,e,n){var r=n(6),o=n(1),i=n(7),a=Object.defineProperty,c={},u=function(t){throw t};t.exports=function(t,e){if(i(c,t))return c[t];e||(e={});var n=[][t],s=!!i(e,"ACCESSORS")&&e.ACCESSORS,f=i(e,0)?e[0]:u,l=i(e,1)?e[1]:void 0;return c[t]=!!n&&!o((function(){if(s&&!r)return!0;var t={length:-1};s?a(t,1,{enumerable:!0,get:u}):t[1]=1,n.call(t,f,l)}))}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(110),o=n(3),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e){t.exports=!1},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,e,n){var r=n(220),o=n(223);t.exports=function(t,e){var n=o(t,e);return r(n)?n:void 0}},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";var r=n(0),o=n(29).filter,i=n(51),a=n(17),c=i("filter"),u=a("filter");r({target:"Array",proto:!0,forced:!c||!u},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(6),o=n(75),i=n(32),a=n(15),c=n(44),u=n(7),s=n(105),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=c(e,!0),s)try{return f(t,e)}catch(t){}if(u(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e,n){"use strict";var r=n(128).charAt,o=n(28),i=n(111),a=o.set,c=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=c(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},function(t,e,n){var r,o,i,a=n(180),c=n(3),u=n(4),s=n(11),f=n(7),l=n(48),p=n(34),h=c.WeakMap;if(a){var v=new h,d=v.get,y=v.has,m=v.set;r=function(t,e){return m.call(v,t,e),e},o=function(t){return d.call(v,t)||{}},i=function(t){return y.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return s(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(50),o=n(31),i=n(12),a=n(13),c=n(127),u=[].push,s=function(t){var e=1==t,n=2==t,s=3==t,f=4==t,l=6==t,p=5==t||l;return function(h,v,d,y){for(var m,g,b=i(h),_=o(b),x=r(v,d,3),w=a(_.length),O=0,S=y||c,j=e?S(h,w):n?S(h,0):void 0;w>O;O++)if((p||O in _)&&(g=x(m=_[O],O,b),t))if(e)j[O]=g;else if(g)switch(t){case 3:return!0;case 5:return m;case 6:return O;case 2:u.call(j,m)}else if(f)return!1;return l?-1:s||f?f:j}};t.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6)}},function(t,e,n){var r=n(39),o=n(205),i=n(206),a=r?r.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":a&&a in Object(t)?o(t):i(t)}},function(t,e,n){var r=n(1),o=n(18),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r,o=n(5),i=n(179),a=n(73),c=n(34),u=n(109),s=n(70),f=n(48),l=f("IE_PROTO"),p=function(){},h=function(t){return"
-
-
diff --git a/docs/doc/question/index.html b/docs/doc/question/index.html
deleted file mode 100644
index ced68c4..0000000
--- a/docs/doc/question/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
- 常见问题 | ZY PLAYER
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/doc/shortcut/index.html b/docs/doc/shortcut/index.html
deleted file mode 100644
index 407da26..0000000
--- a/docs/doc/shortcut/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
- 快捷键 | ZY PLAYER
-
-
-
-
-
-
-
- 快捷键 快捷键绑定使用了 mousetrap 插件.
除了全局快捷键, 其他快捷键, 只在 播放界面 和 Mini 模式 下生效
快捷键 说明 快捷键 说明 Alt + Space 聚焦或取消聚焦(全局快捷键) → 快进 5 秒 ← 快退 5 秒 ↑ 音量调高 ↓ 音量调低 m 静音 t 置顶或退出置顶 f 进入或退出全屏 esc 退出全屏 Alt + → 下一集 Alt + ← 上一集 Alt + ↑ 透明度调高 Alt + ↓ 透明度调低 home 跳到视频开始位置 end 跳到视频结束位置 pgUp 播放倍速加快 0.25 pgDown 播放倍速减慢 0.25 Alt + m 进入或退出 Mini 模式 space 播放或暂停
WARNING
对相关操作不了解的人, 切勿自定义快捷键. 误操作导致无法正常使用软件. 请点击设置里 重置软件 按钮, 恢复默认设置.
导出 设置界面, 选择快捷键功能里, 点击 导出 按钮, 即可导出快捷键.
属性 说明 name 不可删除, 不建议修改. desc 中文描述, 便于阅读. 不可删除, 不建议修改. key 键盘 key 值, 修改相应 key 值, 即可改绑.
编辑 为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:
jsonformatter JSON 在线 快捷键分两种:
单个按键, 如: right 快进 组合按键, 如: alt+right 下一集 支持的按键
普通键: a, b, c, 0, 1, 2, +, -, *, / 等 组合键: shift, ctrl, alt, meta, option, command. 后两个为 mac 键盘. 其他特殊键: backspace, tab, enter, retur, capslock, esc, space, pageup, pagedown, end, home, left, right, down, ins, del, plus TIP
所有字母均为小写, 组合按键使用 + 连接. 中间注意不能有空格. 同一 key 不能绑定两次. 快捷键可以删除, 修改, 但不能添加. 导入 快捷键编辑完复制到剪贴板, 然后点击软件设置里 导入 按钮, 则导入自定义的快捷键.
WARNING
需要注意的是, 导入快捷键需要重启软件.
-
-
-
diff --git a/docs/doc/sites/index.html b/docs/doc/sites/index.html
deleted file mode 100644
index 3b01014..0000000
--- a/docs/doc/sites/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
- 管理源 | ZY PLAYER
-
-
-
-
-
-
-
- 管理源 默认源 即每次开启软件, 默认加载资源的网站. 在设置里, 点击选择相应的视频源即可.
TIP
每次进行 导入 操作, 软件都会选择导入后的第一条数据为默认源.
WARNING
对相关操作不了解的人, 切勿自定义视频源. 误操作导致无法正常使用软件. 请点击设置里 重置软件 按钮, 恢复默认设置.
导出 设置界面, 选择源管理功能里, 点击 导出 按钮, 即可导出所有源.
属性 说明 id 数字小的会在前面显示, 即 id 为1, 则在列表第一个显示. id 不可重复, 必填 key 网站的 key , 一般取 网站的域名. key 不可重复. 必填 name 网站的中文名称, 必填 api 视频源接口, 必填 download 视频下载接口, 填写则会复制 MP4 格式的视频下载链接, 不填则复制 M3U8 格式的视频下载链接, 选填
编辑 为了方便查看编辑, 可以导出后格式化一下. 推荐使用以下在线格式化网站:
jsonformatter JSON 在线 资源网站可以百度获取, 以 OK资源网 为例
百度 OK资源 进入 OK资源采集帮助中心 找到 苹果10 MacCms10 其中 OK资源站: http://cj.okzy.tv/inc/api.php 即是 api. 迅雷下载接口: http://cj.okzy.tv/inc/apidown.php 即是 download 补齐 id, key, name, api, download 则完成了一个视频源的添加. TIP
id 不能重复 除了 download 可以留空, 其他均为必填值 WARNING
视频源不是随意一个视频网址, 必须是类似采集网, 且必须是 MacCms10 的接口才行. 部分视频源包含大量违规违法资源, 请用户自行甄别. 请勿非法传播下载 违规违法资源, 否则后果自负. 导入 编辑完, 复制到剪贴板, 然后点击软件设置里 导入 按钮, 即可导入视频源, 无需重启软件.
-
-
-
diff --git a/docs/index.html b/docs/index.html
deleted file mode 100644
index dfc1ab6..0000000
--- a/docs/index.html
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-
-
- ZY Player 资源播放器
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
软件特色
-
经过三个大版本更迭, 软件功能丰富, 操作简单.
-
-
-
-
-
-
-
-
-
浏览
-
浏览全网热门视频, 支持切换视频源. 详细的电影分类.支持搜索电影名和演员名称.
-
-
-
-
播放
-
支持视频连播, 支持多种播放速度, 支持历史记录, 支持多种全屏播放模式, 支持精简模式(划水模式).
-
-
-
-
收藏
-
一键收藏喜爱的视频, 一键播放. 一键同步视频信息, 追剧更简单.
-
-
-
-
分享
-
一键分享热门视频, 包含电影海报, 支持微信播放.
-
-
-
-
下载
-
部分视频源支持下载 (最大资源网, OK资源网)
-
-
-
-
其他
-
多主题, 多语言, 自动更新
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 资源加载不出来或者视频无法播放
-
-
- 一般是资源网服务器不稳定, 或者资源网屏蔽了IP. 请尝试切换到其他视频源.
-
-
-
-
-
- 视频下载
-
-
- 软件只提供下载链接, 不提供下载功能. 主要是网上的下载工具更优秀. 且只有部分视频源支持下载.(最大资源网和OK资源网)
-
-
-
-
-
- 跨平台
-
-
- 目前支持 Windows, Mac, Linux 桌面系统. 暂不支持手机端或者电视端. 未来会考虑实现全平台.
-
-
-
-
-
- 分享
-
-
- 主要是分享到手机端, 长按二维码识别播放. 或者用手机扫一扫二维码播放. 支持微信打开播放. 请勿分享传播违法资源, 否则后果自负.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/player/player.html b/docs/player/player.html
deleted file mode 100644
index c211083..0000000
--- a/docs/player/player.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
- ZY Player
-
-
-
-
-
-
-
-
diff --git a/extraResources/DefaulIptvList.m3u b/extraResources/DefaulIptvList.m3u
deleted file mode 100644
index 3e91c50..0000000
--- a/extraResources/DefaulIptvList.m3u
+++ /dev/null
@@ -1,571 +0,0 @@
-#EXTM3U
-#EXTINF:-1,CCTV1-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/4000000/mnf.m3u8
-#EXTINF:-1,CCTV-1HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/2300000/mnf.m3u8
-#EXTINF:-1,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225924/1.m3u8
-#EXTINF:-1,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226154/1.m3u8
-#EXTINF:-1,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226155/1.m3u8
-#EXTINF:-1,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8
-#EXTINF:-1,CCTV1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226346/1.m3u8
-#EXTINF:-1,CCTV1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226431/1.m3u8
-#EXTINF:-1,CCTV2 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/1.m3u8
-#EXTINF:-1,CCTV2 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226371/1.m3u8
-#EXTINF:-1,CCTV2 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226472/1.m3u8
-#EXTINF:-1,CCTV3 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226471/1.m3u8
-#EXTINF:-1,CCTV4 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226314/1.m3u8
-#EXTINF:-1,CCTV4 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226335/1.m3u8
-#EXTINF:-1,CCTV4 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226470/1.m3u8
-#EXTINF:-1,CCTV5 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226469/1.m3u8
-#EXTINF:-1,CCTV5+ HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226225/1.m3u8
-#EXTINF:-1,CCTV5+ CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226349/1.m3u8
-#EXTINF:-1,CCTV5+ CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226458/1.m3u8
-#EXTINF:-1,CCTV6 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226468/1.m3u8
-#EXTINF:-1,CCTV7 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8
-#EXTINF:-1,CCTV7 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226467/1.m3u8
-#EXTINF:-1,CCTV8 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226485/1.m3u8
-#EXTINF:-1,CCTV9 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226236/1.m3u8
-#EXTINF:-1,CCTV9 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8
-#EXTINF:-1,CCTV10 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8
-#EXTINF:-1,CCTV10 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226464/1.m3u8
-#EXTINF:-1,CCTV11 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226334/1.m3u8
-#EXTINF:-1,CCTV11 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226315/1.m3u8
-#EXTINF:-1,CCTV11 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226463/1.m3u8
-#EXTINF:-1,CCTV12 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8
-#EXTINF:-1,CCTV12 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8
-#EXTINF:-1,CCTV13 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226316/1.m3u8
-#EXTINF:-1,CCTV14 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8
-#EXTINF:-1,CCTV14 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226461/1.m3u8
-#EXTINF:-1,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226460/1.m3u8
-#EXTINF:-1,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226317/1.m3u8
-#EXTINF:-1,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226333/1.m3u8
-#EXTINF:-1,CCTV17 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8
-#EXTINF:-1,CCTV17 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226459/1.m3u8
-#EXTINF:-1,CCTV-4K
-http://112.17.40.12/PLTV/88888888/224/3221226758/1.m3u8
-#EXTINF:-1,CCTV-4K
-http://112.17.40.140/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1,CCTV-4K
-http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1,CCTV-4K
-http://117.148.187.83/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1,北京卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/4000000/mnf.m3u8
-#EXTINF:-1,江苏卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/4000000/mnf.m3u8
-#EXTINF:-1,浙江卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/4000000/mnf.m3u8
-#EXTINF:-1,深圳卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/4000000/mnf.m3u8
-#EXTINF:-1,山东卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/4000000/mnf.m3u8
-#EXTINF:-1,湖北卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/4000000/mnf.m3u8
-#EXTINF:-1,广东卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/4000000/mnf.m3u8
-#EXTINF:-1,东方卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/4000000/mnf.m3u8
-#EXTINF:-1,黑龙江卫视1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/4000000/mnf.m3u8
-#EXTINF:-1,五星体育1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/4000000/mnf.m3u8
-#EXTINF:-1,北京卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/1300000/mnf.m3u8
-#EXTINF:-1,东方卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/1300000/mnf.m3u8
-#EXTINF:-1,浙江卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/1300000/mnf.m3u8
-#EXTINF:-1,湖北卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/1300000/mnf.m3u8
-#EXTINF:-1,湖南卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/1300000/mnf.m3u8
-#EXTINF:-1,山东卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/1300000/mnf.m3u8
-#EXTINF:-1,江苏卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/1300000/mnf.m3u8
-#EXTINF:-1,深圳卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/1300000/mnf.m3u8
-#EXTINF:-1,广东卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/1300000/mnf.m3u8
-#EXTINF:-1,黑龙江卫视高清
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/1300000/mnf.m3u8
-#EXTINF:-1,湖南卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/2300000/mnf.m3u8
-#EXTINF:-1,北京卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/2300000/mnf.m3u8
-#EXTINF:-1,江苏卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/2300000/mnf.m3u8
-#EXTINF:-1,浙江卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/2300000/mnf.m3u8
-#EXTINF:-1,深圳卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/2300000/mnf.m3u8
-#EXTINF:-1,山东卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/2300000/mnf.m3u8
-#EXTINF:-1,湖北卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/2300000/mnf.m3u8
-#EXTINF:-1,广东卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/2300000/mnf.m3u8
-#EXTINF:-1,黑龙江卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/2300000/mnf.m3u8
-#EXTINF:-1,五星体育HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/2300000/mnf.m3u8
-#EXTINF:-1,中国教育1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226494/1.m3u8
-#EXTINF:-1,东南卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226406/1.m3u8
-#EXTINF:-1,东南卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226496/1.m3u8
-#EXTINF:-1,东方卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226237/1.m3u8
-#EXTINF:-1,东方卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226364/1.m3u8
-#EXTINF:-1,东方卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226505/1.m3u8
-#EXTINF:-1,北京卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8
-#EXTINF:-1,北京卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226367/1.m3u8
-#EXTINF:-1,北京卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226441/1.m3u8
-#EXTINF:-1,天津卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8
-#EXTINF:-1,天津卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226502/1.m3u8
-#EXTINF:-1,安徽卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226223/1.m3u8
-#EXTINF:-1,安徽卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226499/1.m3u8
-#EXTINF:-1,山东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225894/1.m3u8
-#EXTINF:-1,山东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226244/1.m3u8
-#EXTINF:-1,山东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226308/1.m3u8
-#EXTINF:-1,山东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226501/1.m3u8
-#EXTINF:-1,广东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225878/1.m3u8
-#EXTINF:-1,广东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226238/1.m3u8
-#EXTINF:-1,广东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226508/1.m3u8
-#EXTINF:-1,江苏卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8
-#EXTINF:-1,江苏卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226366/1.m3u8
-#EXTINF:-1,江苏卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226506/1.m3u8
-#EXTINF:-1,江西卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8
-#EXTINF:-1,河北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226507/1.m3u8
-#EXTINF:-1,浙江卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8
-#EXTINF:-1,浙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226365/1.m3u8
-#EXTINF:-1,浙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226504/1.m3u8
-#EXTINF:-1,深圳卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225897/1.m3u8
-#EXTINF:-1,深圳卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8
-#EXTINF:-1,深圳卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226495/1.m3u8
-#EXTINF:-1,湖北卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226240/1.m3u8
-#EXTINF:-1,湖北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226310/1.m3u8
-#EXTINF:-1,湖北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226503/1.m3u8
-#EXTINF:-1,湖南卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226241/1.m3u8
-#EXTINF:-1,湖南卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226509/1.m3u8
-#EXTINF:-1,贵州卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226497/1.m3u8
-#EXTINF:-1,辽宁卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226500/1.m3u8
-#EXTINF:-1,黑龙江卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8
-#EXTINF:-1,黑龙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226498/1.m3u8
-#EXTINF:-1,北京冬奥纪实 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226438/1.m3u8
-#EXTINF:-1,北京影视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226486/1.m3u8
-#EXTINF:-1,北京文艺 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226440/1.m3u8
-#EXTINF:-1,北京新闻 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226437/1.m3u8
-#EXTINF:-1,安徽卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ahws/1300000/mnf.m3u8
-#EXTINF:-1,兵团卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/btws/1300000/mnf.m3u8
-#EXTINF:-1,甘肃卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gsws/1300000/mnf.m3u8
-#EXTINF:-1,陕西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sxws/1300000/mnf.m3u8
-#EXTINF:-1,山西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/shanxiws/1300000/mnf.m3u8
-#EXTINF:-1,吉林卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jlws/1300000/mnf.m3u8
-#EXTINF:-1,河北卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbws/1300000/mnf.m3u8
-#EXTINF:-1,四川卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/scws/1300000/mnf.m3u8
-#EXTINF:-1,贵州卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gzws/1300000/mnf.m3u8
-#EXTINF:-1,云南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ynws/1300000/mnf.m3u8
-#EXTINF:-1,辽宁卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lnws/1300000/mnf.m3u8
-#EXTINF:-1,旅游卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lyws/1300000/mnf.m3u8
-#EXTINF:-1,东南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dnws/1300000/mnf.m3u8
-#EXTINF:-1,重庆卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cqws/1300000/mnf.m3u8
-#EXTINF:-1,广西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gxws/1300000/mnf.m3u8
-#EXTINF:-1,青海卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qhws/1300000/mnf.m3u8
-#EXTINF:-1,江西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jxws/1300000/mnf.m3u8
-#EXTINF:-1,内蒙古卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/nmgws/1300000/mnf.m3u8
-#EXTINF:-1,天津卫视
-http://112.17.40.140/PLTV/88888888/224/3221226412/index.m3u8
-#EXTINF:-1,河北卫视超清1
-http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8
-#EXTINF:-1,湖南卫视
-http://112.17.40.140/PLTV/88888888/224/3221226553/index.m3u8
-#EXTINF:-1,浙江卫视
-http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8
-#EXTINF:-1,江苏卫视
-http://112.17.40.140/PLTV/88888888/224/3221226414/index.m3u8
-#EXTINF:-1,东南卫视
-http://117.169.124.37:6610/ysten-businessmobile/live/dongnanstv/yst.m3u8
-#EXTINF:-1,湖北卫视
-http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8
-#EXTINF:-1,广东卫视
-http://112.17.40.140/PLTV/88888888/224/3221226225/index.m3u8
-#EXTINF:-1,深圳卫视
-http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8
-#EXTINF:-1,辽宁卫视
-http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8
-#EXTINF:-1,龙江卫视
-http://112.17.40.140/PLTV/88888888/224/3221226555/index.m3u8
-#EXTINF:-1,江西卫视
-http://112.17.40.140/PLTV/88888888/224/3221226557/index.m3u8
-#EXTINF:-1,四川卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221227006/1.m3u8
-#EXTINF:-1,重庆卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225949/1.m3u8
-#EXTINF:-1,重庆卫视
-http://ivi.bupt.edu.cn/hls/cqhd.m3u8
-#EXTINF:-1,河南卫视超清2
-http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8
-#EXTINF:-1,贵州卫视超清2
-http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8
-#EXTINF:-1,海南卫视
-http://112.50.243.8/PLTV/88888888/224/3221225855/1.m3u8
-#EXTINF:-1,云南卫视超清1
-http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8
-#EXTINF:-1,宁夏卫视超清1
-http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8
-#EXTINF:-1,内蒙卫视超清1
-http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8
-#EXTINF:-1,广西卫视
-http://112.50.243.8/PLTV/88888888/224/3221225836/1.m3u8
-#EXTINF:-1,五星体育HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/1300000/mnf.m3u8
-#EXTINF:-1,北京卡酷少儿 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226558/1.m3u8
-#EXTINF:-1,法治天地HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/fztd/1300000/mnf.m3u8
-#EXTINF:-1,欢笑剧场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hxjc/1300000/mnf.m3u8
-#EXTINF:-1,都市剧场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjc/1300000/mnf.m3u8
-#EXTINF:-1,七彩戏剧HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qcxj/1300000/mnf.m3u8
-#EXTINF:-1,动漫秀场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dmxc/1300000/mnf.m3u8
-#EXTINF:-1,劲爆体育HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jbty/1300000/mnf.m3u8
-#EXTINF:-1,极速汽车
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jsqc/1300000/mnf.m3u8
-#EXTINF:-1,游戏风云
-http://keonline.shanghai.liveplay.qq.com/live/program/live/yxfy/1300000/mnf.m3u8
-#EXTINF:-1,金鹰卡通
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jykt/1300000/mnf.m3u8
-#EXTINF:-1,炫动卡通
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xdkt/1300000/mnf.m3u8
-#EXTINF:-1,嘉佳卡通
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jjkt/1300000/mnf.m3u8
-#EXTINF:-1,星尚
-http://keonline.shanghai.liveplay.qq.com/live/program/live/shss/1300000/mnf.m3u8
-#EXTINF:-1,上海纪实
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jspd/1300000/mnf.m3u8
-#EXTINF:-1,上海新闻
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzh/1300000/mnf.m3u8
-#EXTINF:-1,上海娱乐
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpd/1300000/mnf.m3u8
-#EXTINF:-1,上海电视剧
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpd/1300000/mnf.m3u8
-#EXTINF:-1,上海ICS外语频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/wypd/1300000/mnf.m3u8
-#EXTINF:-1,上海艺术人文
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ysrw/1300000/mnf.m3u8
-#EXTINF:-1,东方财经浦东
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dfcj/1300000/mnf.m3u8
-#EXTINF:-1,第一财经
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dycj/1300000/mnf.m3u8
-#EXTINF:-1,直播1-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba1/4000000/mnf.m3u8
-#EXTINF:-1,直播2-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba2/4000000/mnf.m3u8
-#EXTINF:-1,直播3-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba3/4000000/mnf.m3u8
-#EXTINF:-1,直播4-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba4/4000000/mnf.m3u8
-#EXTINF:-1,直播5-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba5/4000000/mnf.m3u8
-#EXTINF:-1,直播6-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba6/4000000/mnf.m3u8
-#EXTINF:-1,直播7-1080P
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba7/4000000/mnf.m3u8
-#EXTINF:-1,纯享4K源码1
-http://112.50.243.8/PLTV/88888888/224/3221226825/1.m3u8
-#EXTINF:-1,百事4K频道
-http://112.17.40.145/PLTV/88888888/224/3221226718/index.m3u8
-#EXTINF:-1,凤凰资讯
-http://112.17.40.140/PLTV/88888888/224/3221226491/index.m3u8
-#EXTINF:-1,凤凰资讯
-http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8
-#EXTINF:-1,凤凰中文
-http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8
-#EXTINF:-1,凤凰中文
-http://117.169.120.138:8080/live/fhchinese/index.m3u8
-#EXTINF:-1,高清影视1台
-http://112.50.243.8/PLTV/88888888/224/3221226736/1.m3u8
-#EXTINF:-1,高清影视2台
-http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8
-#EXTINF:-1,高清影视3台
-http://112.50.243.8/PLTV/88888888/224/3221226708/1.m3u8
-#EXTINF:-1,高清影视4台
-http://112.50.243.8/PLTV/88888888/224/3221226712/1.m3u8
-#EXTINF:-1,高清影视5台
-http://112.50.243.8/PLTV/88888888/224/3221225893/1.m3u8
-#EXTINF:-1,高清影视6台
-http://112.50.243.8/PLTV/88888888/224/3221226692/1.m3u8
-#EXTINF:-1,高清影视7台
-http://112.50.243.8/PLTV/88888888/224/3221226754/1.m3u8
-#EXTINF:-1,高清影视8台
-http://112.17.40.145/PLTV/88888888/224/3221226608/index.m3u8
-#EXTINF:-1,高清影视9台
-http://112.17.40.145/PLTV/88888888/224/3221226606/index.m3u8
-#EXTINF:-1,高清影视10台
-http://112.17.40.145/PLTV/88888888/224/3221226360/index.m3u8
-#EXTINF:-1,高清动画11台
-http://112.50.243.8/PLTV/88888888/224/3221226732/1.m3u8
-#EXTINF:-1,高清动画12台
-http://112.50.243.8/PLTV/88888888/224/3221226741/1.m3u8
-#EXTINF:-1,高清动漫13台
-http://112.50.243.8/PLTV/88888888/224/3221226743/1.m3u8
-#EXTINF:-1,高清影视14台
-http://ivi.bupt.edu.cn/hls/chchd.m3u8
-#EXTINF:-1,北京纪实高清
-http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8
-#EXTINF:-1,峨眉电影高清
-http://scgctvshow.sctv.com/hdlive/emei/1.m3u8
-#EXTINF:-1,欢笑剧场高清
-http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8
-#EXTINF:-1,纪实频道高清
-http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8
-#EXTINF:-1,极速汽车高清
-http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8
-#EXTINF:-1,动漫秀场高清
-http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8
-#EXTINF:-1,求索纪录
-http://112.17.40.145/PLTV/88888888/224/3221226610/index.m3u8
-#EXTINF:-1,求索科学
-http://125.210.152.18:9090/live/QSKX_1200.m3u8
-#EXTINF:-1,求索动物
-http://125.210.152.18:9090/live/QSDW_1200.m3u8
-#EXTINF:-1,求索生活
-http://125.210.152.18:9090/live/QSSH_1200.m3u8
-#EXTINF:-1,日本天気预报
-http://movie.mcas.jp/mcas/wn1_2/master.m3u8
-#EXTINF:-1,奥林匹克高清
-http://ott-live.olympicchannel.com/out/u/OC1_2.m3u8?fluxustv.m3u8
-#EXTINF:-1,奥铃匹克高清
-http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8?fluxustv.m3u8
-#EXTINF:-1,爱青春
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230130/index.m3u8
-#EXTINF:-1,爱家庭
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230118/index.m3u8
-#EXTINF:-1,爱探索
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8
-#EXTINF:-1,爱科学
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230106/index.m3u8
-#EXTINF:-1,爱猎奇
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230097/index.m3u8
-#EXTINF:-1,爱谍战
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8
-#EXTINF:-1,爱娱乐
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230077/index.m3u8
-#EXTINF:-1,爱旅行
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8
-#EXTINF:-1,爱怀旧
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230049/index.m3u8
-#EXTINF:-1,爱体育
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8
-#EXTINF:-1,爱赛车
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8
-#EXTINF:-1,北京少儿
-http://ivi.bupt.edu.cn/hls/btv10.m3u8
-#EXTINF:-1,动漫电影
-http://112.17.40.140/PLTV/88888888/224/3221226178/index.m3u8
-#EXTINF:-1,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225646/1.m3u8
-#EXTINF:-1,嘉佳卡通
-http://112.17.40.140/PLTV/88888888/224/3221226461/index.m3u8
-#EXTINF:-1,耀才财经
-http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8
-#EXTINF:-1,亚旅卫视
-http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8
-#EXTINF:-1,信吉电视
-http://220.130.241.203:1935/sjtv/livestream_360p/playlist.m3u8
-#EXTINF:-1,唯心電視
-http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8
-#EXTINF:-1,百事通台
-http://112.17.40.145/PLTV/88888888/224/3221226596/index.m3u8
-#EXTINF:-1,HBO2台
-http://161.0.157.5/PLTV/88888888/224/3221227026/03.m3u8?fluxustv.m3u8
-#EXTINF:-1,点掌财经
-http://cclive2.aniu.tv/live/anzb.m3u8
-#EXTINF:-1,日本NHK华语
-https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8
-#EXTINF:-1,日本NHK英语
-https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp/index_1M.m3u8
-#EXTINF:-1,日本Japan News 24
-http://www.news24.jp/livestream/index.m3u8
-#EXTINF:-1,日本JapanetChannelDX
-http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_1200.m3u8
-#EXTINF:-1,日本QVC
-http://cdn-live1.qvc.jp/iPhone/800/800.m3u8
-#EXTINF:-1,韩国EBS 第一频道
-http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8
-#EXTINF:-1,韩国EBS 少儿频道
-http://ebsonairios.ebs.co.kr/ebsutablet500k/tablet500k/playlist.m3u8
-#EXTINF:-1,韩国KCTV
-http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8
-#EXTINF:-1,朝鲜中央台
-http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8
-#EXTINF:-1,韩国KTV 韩国电视
-http://218.38.152.31:1935/klive/klive.stream/playlist.m3u8
-#EXTINF:-1,韩国EBS 儿童频道
-http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8
-#EXTINF:-1,韩国阿里郎WORLDworld
-http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8
-#EXTINF:-1,韩国阿里郎WORLD
-http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8
-#EXTINF:-1,KOREA YTN Science
-http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8
-#EXTINF:-1,Luxury World
-http://nano.teleservice.su:8080/hls/luxury.m3u8
-#EXTINF:-1,韩国BBS佛教广播
-http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8
-#EXTINF:-1,CPAC
-http://bcoveliveios-i.akamaihd.net/hls/live/248519/1242843915001_1/master.m3u8
-#EXTINF:-1,中国环球
-http://live.cgtn.com/1000/prog_index.m3u8
-#EXTINF:-1,狗狗宠物
-http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8
-#EXTINF:-1,法国时尚
-http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8
-#EXTINF:-1,亚洲新闻
-http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8
-#EXTINF:-1,越南人民报
-http://vietcago.net/vstv/thnd.m3u8
-#EXTINF:-1,印度音乐电视
-http://104.237.60.234/live/gabruutv.m3u8?dsjtv.m3u8
-#EXTINF:-1,法国第五世界台
-http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8
-#EXTINF:-1,俄罗斯HD时尚频道
-http://95.67.47.115/hls/hdfashion_ua_hi/index.m3u8
-#EXTINF:-1,乌克兰M2 音乐频道
-http://live.m2.tv/hls3/stream.m3u8
-#EXTINF:-1,西班牙中国环球
-http://livees.cgtn.com/1000e/prog_index.m3u8
-#EXTINF:-1,意大利意大利电台
-http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8
-#EXTINF:-1,意大利V2 音乐频道
-http://de1se01.v2beat.live/playlist.m3u8
-#EXTINF:-1,墨西哥墨西哥电视
-http://bcoveliveios-i.akamaihd.net/hls/live/201661/57828478001/milenio_center_512k@51752.m3u8
-#EXTINF:-1,音乐20TV
-http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8
-#EXTINF:-1,当红MTV
-http://unilivemtveu-lh.akamaihd.net/i/mtvno_1@346424/index_3500_av-b.m3u8
-#EXTINF:-1,酷酷频道
-http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/chunklist_w981409619_b1105254.m3u8?fluxustv.m3u8
-#EXTINF:-1,红牛电视
-http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8
-#EXTINF:-1,NBC电视
-http://161.0.157.51/PLTV/88888888/224/3221227040/index.m3u8?fluxustv.m3u8
-#EXTINF:-1,Jewelry电视
-http://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8
-#EXTINF:-1,Darcizzle电视
-http://30a-tv.com/darcizzle.m3u8
-#EXTINF:-1,CBS新闻
-http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8
-#EXTINF:-1,美国Deutsche Welle
-http://dwstream4-lh.akamaihd.net/i/dwstream4_live@131329/master.m3u8
-#EXTINF:-1,美国360 North
-http://wowzaprod3-i.akamaihd.net/hls/live/252236/2147483647_360north_247/playlist.m3u8
-#EXTINF:-1,美国Fox News Talk Radio
-http://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8
-#EXTINF:-1,日本cgntv
-http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8
-#EXTINF:-1,日本Japanet Channel DX
-http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_600.m3u8
diff --git a/extraResources/电视频道_1.m3u b/extraResources/电视频道_1.m3u
deleted file mode 100644
index bae416e..0000000
--- a/extraResources/电视频道_1.m3u
+++ /dev/null
@@ -1,723 +0,0 @@
-#EXTM3U
-#EXTINF:-1 ,====== =北京移动= ======
-http://0/0.m3u8
-#EXTINF:-1 ,咪咕4K
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226399/1.m3u8
-#EXTINF:-1 ,咪咕4K
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226400/1.m3u8
-#EXTINF:-1 ,北京IPTV4K超清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226550/1.m3u8
-#EXTINF:-1 ,北京IPTV淘BABY CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226554/1.m3u8
-#EXTINF:-1 ,北京IPTV淘剧场 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226553/1.m3u8
-#EXTINF:-1 ,北京IPTV淘娱乐 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226551/1.m3u8
-#EXTINF:-1 ,北京IPTV淘电影 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226552/1.m3u8
-#EXTINF:-1 ,北京IPTV萌宠TV CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226555/1.m3u8
-#EXTINF:-1 ,老伙计-laoguy.com
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226555/1.m3u8
-#EXTINF:-1 ,大健康 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226556/1.m3u8
-#EXTINF:-1 ,凤凰中文 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225942/1.m3u8
-#EXTINF:-1 ,凤凰中文 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225948/1.m3u8
-#EXTINF:-1 ,凤凰资讯 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225949/1.m3u8
-#EXTINF:-1 ,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225924/1.m3u8
-#EXTINF:-1 ,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226154/1.m3u8
-#EXTINF:-1 ,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226155/1.m3u8
-#EXTINF:-1 ,CCTV1 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8
-#EXTINF:-1 ,CCTV1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226346/1.m3u8
-#EXTINF:-1 ,CCTV1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226431/1.m3u8
-#EXTINF:-1 ,CCTV2 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/1.m3u8
-#EXTINF:-1 ,CCTV2 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226371/1.m3u8
-#EXTINF:-1 ,CCTV2 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226472/1.m3u8
-#EXTINF:-1 ,CCTV3 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226471/1.m3u8
-#EXTINF:-1 ,CCTV4 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226314/1.m3u8
-#EXTINF:-1 ,CCTV4 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226335/1.m3u8
-#EXTINF:-1 ,CCTV4 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226470/1.m3u8
-#EXTINF:-1 ,CCTV5 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226469/1.m3u8
-#EXTINF:-1 ,CCTV5+ HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226225/1.m3u8
-#EXTINF:-1 ,CCTV5+ CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226349/1.m3u8
-#EXTINF:-1 ,CCTV5+ CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226458/1.m3u8
-#EXTINF:-1 ,CCTV6 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226468/1.m3u8
-#EXTINF:-1 ,CCTV7 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8
-#EXTINF:-1 ,CCTV7 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226467/1.m3u8
-#EXTINF:-1 ,CCTV8 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226485/1.m3u8
-#EXTINF:-1 ,CCTV9 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226236/1.m3u8
-#EXTINF:-1 ,CCTV9 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8
-#EXTINF:-1 ,CCTV10 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8
-#EXTINF:-1 ,CCTV10 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226464/1.m3u8
-#EXTINF:-1 ,CCTV11 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226334/1.m3u8
-#EXTINF:-1 ,CCTV11 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226315/1.m3u8
-#EXTINF:-1 ,CCTV11 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226463/1.m3u8
-#EXTINF:-1 ,CCTV12 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8
-#EXTINF:-1 ,CCTV12 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8
-#EXTINF:-1 ,CCTV13 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226316/1.m3u8
-#EXTINF:-1 ,CCTV14 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8
-#EXTINF:-1 ,CCTV14 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226461/1.m3u8
-#EXTINF:-1 ,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226460/1.m3u8
-#EXTINF:-1 ,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226317/1.m3u8
-#EXTINF:-1 ,CCTV15 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226333/1.m3u8
-#EXTINF:-1 ,CCTV17 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8
-#EXTINF:-1 ,CCTV17 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226459/1.m3u8
-#EXTINF:-1 ,中国教育1 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226494/1.m3u8
-#EXTINF:-1 ,东南卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226406/1.m3u8
-#EXTINF:-1 ,东南卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226496/1.m3u8
-#EXTINF:-1 ,东方卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226237/1.m3u8
-#EXTINF:-1 ,东方卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226364/1.m3u8
-#EXTINF:-1 ,东方卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226505/1.m3u8
-#EXTINF:-1 ,北京卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8
-#EXTINF:-1 ,北京卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226367/1.m3u8
-#EXTINF:-1 ,北京卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226441/1.m3u8
-#EXTINF:-1 ,天津卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8
-#EXTINF:-1 ,天津卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226502/1.m3u8
-#EXTINF:-1 ,安徽卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226223/1.m3u8
-#EXTINF:-1 ,安徽卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226499/1.m3u8
-#EXTINF:-1 ,山东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225894/1.m3u8
-#EXTINF:-1 ,山东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226244/1.m3u8
-#EXTINF:-1 ,山东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226308/1.m3u8
-#EXTINF:-1 ,山东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226501/1.m3u8
-#EXTINF:-1 ,广东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225878/1.m3u8
-#EXTINF:-1 ,广东卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226238/1.m3u8
-#EXTINF:-1 ,广东卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226508/1.m3u8
-#EXTINF:-1 ,江苏卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8
-#EXTINF:-1 ,江苏卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226366/1.m3u8
-#EXTINF:-1 ,江苏卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226506/1.m3u8
-#EXTINF:-1 ,江西卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8
-#EXTINF:-1 ,河北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226507/1.m3u8
-#EXTINF:-1 ,浙江卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8
-#EXTINF:-1 ,浙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226365/1.m3u8
-#EXTINF:-1 ,浙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226504/1.m3u8
-#EXTINF:-1 ,深圳卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225897/1.m3u8
-#EXTINF:-1 ,深圳卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8
-#EXTINF:-1 ,深圳卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226495/1.m3u8
-#EXTINF:-1 ,湖北卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226240/1.m3u8
-#EXTINF:-1 ,湖北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226310/1.m3u8
-#EXTINF:-1 ,湖北卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226503/1.m3u8
-#EXTINF:-1 ,湖南卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226241/1.m3u8
-#EXTINF:-1 ,湖南卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226509/1.m3u8
-#EXTINF:-1 ,贵州卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226497/1.m3u8
-#EXTINF:-1 ,辽宁卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226500/1.m3u8
-#EXTINF:-1 ,黑龙江卫视 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8
-#EXTINF:-1 ,黑龙江卫视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226498/1.m3u8
-#EXTINF:-1 ,北京冬奥纪实 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226438/1.m3u8
-#EXTINF:-1 ,北京影视 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226486/1.m3u8
-#EXTINF:-1 ,北京文艺 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226440/1.m3u8
-#EXTINF:-1 ,北京新闻 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226437/1.m3u8
-#EXTINF:-1 ,北京卡酷少儿 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226558/1.m3u8
-#EXTINF:-1 ,湖南快乐垂钓 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226549/1.m3u8
-#EXTINF:-1 ,湖南茶频道 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226548/1.m3u8
-#EXTINF:-1 ,黑莓动画 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225914/1.m3u8
-#EXTINF:-1 ,黑莓动画 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226289/1.m3u8
-#EXTINF:-1 ,黑莓电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225927/1.m3u8
-#EXTINF:-1 ,黑莓电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226292/1.m3u8
-#EXTINF:-1 ,黑莓电竞 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225931/1.m3u8
-#EXTINF:-1 ,黑莓电竞 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226250/1.m3u8
-#EXTINF:-1 ,黑莓电竞 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226262/1.m3u8
-#EXTINF:-1 ,黑莓电竞 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226307/1.m3u8
-#EXTINF:-1 ,NewTV中国功夫 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225951/1.m3u8
-#EXTINF:-1 ,NewTV中国功夫 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226298/1.m3u8
-#EXTINF:-1 ,NewTV中国功夫 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226321/1.m3u8
-#EXTINF:-1 ,NewTV怡伴健康 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225919/1.m3u8
-#EXTINF:-1 ,NewTV怡伴健康 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226306/1.m3u8
-#EXTINF:-1 ,NewTV怡伴健康 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226327/1.m3u8
-#EXTINF:-1 ,NewTV军事评论 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225926/1.m3u8
-#EXTINF:-1 ,NewTV军事评论 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226303/1.m3u8
-#EXTINF:-1 ,NewTV军事评论 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226326/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225923/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226301/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226324/1.m3u8
-#EXTINF:-1 ,NewTV农业致富 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225930/1.m3u8
-#EXTINF:-1 ,NewTV农业致富 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226304/1.m3u8
-#EXTINF:-1 ,NewTV动作电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225915/1.m3u8
-#EXTINF:-1 ,NewTV动作电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226288/1.m3u8
-#EXTINF:-1 ,NewTV动作电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226329/1.m3u8
-#EXTINF:-1 ,NewTV古装剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225916/1.m3u8
-#EXTINF:-1 ,NewTV古装剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226300/1.m3u8
-#EXTINF:-1 ,NewTV古装剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226323/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225918/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226290/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226330/1.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225921/1.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226294/1.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226423/1.m3u8
-#EXTINF:-1 ,NewTV明星大片 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225929/1.m3u8
-#EXTINF:-1 ,NewTV明星大片 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226295/1.m3u8
-#EXTINF:-1 ,NewTV明星大片 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226425/1.m3u8
-#EXTINF:-1 ,NewTV武搏世界 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226171/1.m3u8
-#EXTINF:-1 ,NewTV武搏世界 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226297/1.m3u8
-#EXTINF:-1 ,NewTV武搏世界 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226320/1.m3u8
-#EXTINF:-1 ,NewTV海外剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225917/1.m3u8
-#EXTINF:-1 ,NewTV海外剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226302/1.m3u8
-#EXTINF:-1 ,NewTV海外剧场 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226325/1.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225957/1.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226286/1.m3u8
-#EXTINF:-1 ,NewTV炫舞未来 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226248/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225913/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226299/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226322/1.m3u8
-#EXTINF:-1 ,NewTV精品体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226287/1.m3u8
-#EXTINF:-1 ,NewTV精品体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226328/1.m3u8
-#EXTINF:-1 ,NewTV精品体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225922/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225925/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226291/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226331/1.m3u8
-#EXTINF:-1 ,NewTV精品纪录 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226293/1.m3u8
-#EXTINF:-1 ,NewTV精品纪录 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226332/1.m3u8
-#EXTINF:-1 ,NewTV超级体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226157/1.m3u8
-#EXTINF:-1 ,NewTV超级体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226158/1.m3u8
-#EXTINF:-1 ,NewTV超级体育 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226232/1.m3u8
-#EXTINF:-1 ,NewTV超级体育 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226348/1.m3u8
-#EXTINF:-1 ,NewTV超级电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226133/1.m3u8
-#EXTINF:-1 ,NewTV超级电影 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226233/1.m3u8
-#EXTINF:-1 ,NewTV超级电影 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226369/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225864/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226253/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226368/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226127/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226231/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺 CQ
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226370/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225920/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226296/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226347/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226374/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226375/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226377/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226378/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226379/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226380/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226381/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226382/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226394/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226395/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226396/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226397/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226398/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226393/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226392/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226391/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226390/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226372/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226373/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226376/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226383/1.m3u8
-#EXTINF:-1 ,咪咕视频 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226384/1.m3u8
-#EXTINF:-1 ,北京家有购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226429/1.m3u8
-#EXTINF:-1 ,山西优购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226386/1.m3u8
-#EXTINF:-1 ,中视购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226547/1.m3u8
-#EXTINF:-1 ,央广购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226319/1.m3u8
-#EXTINF:-1 ,央广购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226363/1.m3u8
-#EXTINF:-1 ,江苏好享购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226312/1.m3u8
-#EXTINF:-1 ,江苏好享购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226344/1.m3u8
-#EXTINF:-1 ,湖南快乐购 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226341/1.m3u8
-#EXTINF:-1 ,江西风尚购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225911/1.m3u8
-#EXTINF:-1 ,江西风尚购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226305/1.m3u8
-#EXTINF:-1 ,江西风尚购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226342/1.m3u8
-#EXTINF:-1 ,江苏好享购物 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226313/1.m3u8
-#EXTINF:-1 ,5GO美妆个护 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226387/1.m3u8
-#EXTINF:-1 ,5GO美妆个护 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226389/1.m3u8
-#EXTINF:-1 ,5GO服饰内衣 HD
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226388/1.m3u8
-#EXTINF:-1 ,CCTV1 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226432/1.m3u8
-#EXTINF:-1 ,CCTV1 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226338/1.m3u8
-#EXTINF:-1 ,CCTV2 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225934/1.m3u8
-#EXTINF:-1 ,CCTV2 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226457/1.m3u8
-#EXTINF:-1 ,CCTV3 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226456/1.m3u8
-#EXTINF:-1 ,CCTV4 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226156/1.m3u8
-#EXTINF:-1 ,CCTV4 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226455/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226454/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226256/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226257/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226258/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226259/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226260/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226261/1.m3u8
-#EXTINF:-1 ,CCTV5 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226340/1.m3u8
-#EXTINF:-1 ,CCTV5+ 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225938/1.m3u8
-#EXTINF:-1 ,CCTV6 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226453/1.m3u8
-#EXTINF:-1 ,CCTV7 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225863/1.m3u8
-#EXTINF:-1 ,CCTV7 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226452/1.m3u8
-#EXTINF:-1 ,CCTV8 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226451/1.m3u8
-#EXTINF:-1 ,CCTV9 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226450/1.m3u8
-#EXTINF:-1 ,CCTV9 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225865/1.m3u8
-#EXTINF:-1 ,CCTV10 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225868/1.m3u8
-#EXTINF:-1 ,CCTV10 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226449/1.m3u8
-#EXTINF:-1 ,CCTV11 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225869/1.m3u8
-#EXTINF:-1 ,CCTV11 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226448/1.m3u8
-#EXTINF:-1 ,CCTV12 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225870/1.m3u8
-#EXTINF:-1 ,CCTV12 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226447/1.m3u8
-#EXTINF:-1 ,CCTV13 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226446/1.m3u8
-#EXTINF:-1 ,CCTV13 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226159/1.m3u8
-#EXTINF:-1 ,CCTV13 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226339/1.m3u8
-#EXTINF:-1 ,CCTV14 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225872/1.m3u8
-#EXTINF:-1 ,CCTV14 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226445/1.m3u8
-#EXTINF:-1 ,CCTV14 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225928/1.m3u8
-#EXTINF:-1 ,CCTV15 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225940/1.m3u8
-#EXTINF:-1 ,CCTV15 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226444/1.m3u8
-#EXTINF:-1 ,CCTV17 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226442/1.m3u8
-#EXTINF:-1 ,CGTN 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226404/1.m3u8
-#EXTINF:-1 ,CGTN 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225867/1.m3u8
-#EXTINF:-1 ,CGTN 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226443/1.m3u8
-#EXTINF:-1 ,CGTN纪录 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226403/1.m3u8
-#EXTINF:-1 ,CGTN纪录 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225866/1.m3u8
-#EXTINF:-1 ,中国教育1 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226417/1.m3u8
-#EXTINF:-1 ,中国教育1 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226538/1.m3u8
-#EXTINF:-1 ,中国教育1 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225905/1.m3u8
-#EXTINF:-1 ,中国教育2 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226537/1.m3u8
-#EXTINF:-1 ,中国教育4 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226362/1.m3u8
-#EXTINF:-1 ,中国教育4 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226557/1.m3u8
-#EXTINF:-1 ,东南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226517/1.m3u8
-#EXTINF:-1 ,东南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225876/1.m3u8
-#EXTINF:-1 ,东方卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226519/1.m3u8
-#EXTINF:-1 ,东方卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226161/1.m3u8
-#EXTINF:-1 ,云南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226424/1.m3u8
-#EXTINF:-1 ,云南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225902/1.m3u8
-#EXTINF:-1 ,云南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226543/1.m3u8
-#EXTINF:-1 ,内蒙古卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226415/1.m3u8
-#EXTINF:-1 ,内蒙古卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226530/1.m3u8
-#EXTINF:-1 ,内蒙古卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225891/1.m3u8
-#EXTINF:-1 ,北京卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226436/1.m3u8
-#EXTINF:-1 ,北京卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226160/1.m3u8
-#EXTINF:-1 ,厦门卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226542/1.m3u8
-#EXTINF:-1 ,吉林卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226426/1.m3u8
-#EXTINF:-1 ,吉林卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226533/1.m3u8
-#EXTINF:-1 ,吉林卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225886/1.m3u8
-#EXTINF:-1 ,四川卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226407/1.m3u8
-#EXTINF:-1 ,四川卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225898/1.m3u8
-#EXTINF:-1 ,四川卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226523/1.m3u8
-#EXTINF:-1 ,天津卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226489/1.m3u8
-#EXTINF:-1 ,天津卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225899/1.m3u8
-#EXTINF:-1 ,宁夏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226413/1.m3u8
-#EXTINF:-1 ,宁夏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226528/1.m3u8
-#EXTINF:-1 ,宁夏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225892/1.m3u8
-#EXTINF:-1 ,安徽卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225873/1.m3u8
-#EXTINF:-1 ,安徽卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226490/1.m3u8
-#EXTINF:-1 ,山东卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226487/1.m3u8
-#EXTINF:-1 ,山西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226410/1.m3u8
-#EXTINF:-1 ,山西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225895/1.m3u8
-#EXTINF:-1 ,山西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226531/1.m3u8
-#EXTINF:-1 ,广东卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226535/1.m3u8
-#EXTINF:-1 ,广西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226408/1.m3u8
-#EXTINF:-1 ,广西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225879/1.m3u8
-#EXTINF:-1 ,广西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226534/1.m3u8
-#EXTINF:-1 ,新疆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226422/1.m3u8
-#EXTINF:-1 ,新疆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225901/1.m3u8
-#EXTINF:-1 ,新疆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226546/1.m3u8
-#EXTINF:-1 ,江苏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226491/1.m3u8
-#EXTINF:-1 ,江苏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225887/1.m3u8
-#EXTINF:-1 ,江西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226522/1.m3u8
-#EXTINF:-1 ,江西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225888/1.m3u8
-#EXTINF:-1 ,河北卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226409/1.m3u8
-#EXTINF:-1 ,河北卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225881/1.m3u8
-#EXTINF:-1 ,河北卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226536/1.m3u8
-#EXTINF:-1 ,河南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225882/1.m3u8
-#EXTINF:-1 ,河南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226525/1.m3u8
-#EXTINF:-1 ,浙江卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226492/1.m3u8
-#EXTINF:-1 ,浙江卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225903/1.m3u8
-#EXTINF:-1 ,海南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226427/1.m3u8
-#EXTINF:-1 ,海南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225890/1.m3u8
-#EXTINF:-1 ,湖北卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226520/1.m3u8
-#EXTINF:-1 ,湖北卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225884/1.m3u8
-#EXTINF:-1 ,湖南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226493/1.m3u8
-#EXTINF:-1 ,湖南卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226162/1.m3u8
-#EXTINF:-1 ,甘肃卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226414/1.m3u8
-#EXTINF:-1 ,甘肃卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225877/1.m3u8
-#EXTINF:-1 ,甘肃卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226545/1.m3u8
-#EXTINF:-1 ,西藏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226428/1.m3u8
-#EXTINF:-1 ,西藏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225900/1.m3u8
-#EXTINF:-1 ,西藏卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226527/1.m3u8
-#EXTINF:-1 ,贵州卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226405/1.m3u8
-#EXTINF:-1 ,贵州卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225880/1.m3u8
-#EXTINF:-1 ,贵州卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226521/1.m3u8
-#EXTINF:-1 ,辽宁卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226488/1.m3u8
-#EXTINF:-1 ,辽宁卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226336/1.m3u8
-#EXTINF:-1 ,辽宁卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225889/1.m3u8
-#EXTINF:-1 ,重庆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225904/1.m3u8
-#EXTINF:-1 ,重庆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226337/1.m3u8
-#EXTINF:-1 ,重庆卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226518/1.m3u8
-#EXTINF:-1 ,陕西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226411/1.m3u8
-#EXTINF:-1 ,陕西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225896/1.m3u8
-#EXTINF:-1 ,陕西卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226532/1.m3u8
-#EXTINF:-1 ,青海卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226412/1.m3u8
-#EXTINF:-1 ,青海卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225893/1.m3u8
-#EXTINF:-1 ,青海卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226529/1.m3u8
-#EXTINF:-1 ,黑龙江卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226524/1.m3u8
-#EXTINF:-1 ,黑龙江卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225883/1.m3u8
-#EXTINF:-1 ,山东教育卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226419/1.m3u8
-#EXTINF:-1 ,山东教育卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225908/1.m3u8
-#EXTINF:-1 ,山东教育卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226526/1.m3u8
-#EXTINF:-1 ,广东南方卫视地面 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226540/1.m3u8
-#EXTINF:-1 ,新疆兵团卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226541/1.m3u8
-#EXTINF:-1 ,海南三沙卫视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226544/1.m3u8
-#EXTINF:-1 ,北京卡酷少儿 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225907/1.m3u8
-#EXTINF:-1 ,北京卡酷少儿 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226511/1.m3u8
-#EXTINF:-1 ,北京国际 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226510/1.m3u8
-#EXTINF:-1 ,北京影视 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226433/1.m3u8
-#EXTINF:-1 ,北京文艺 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226435/1.m3u8
-#EXTINF:-1 ,北京新闻 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226512/1.m3u8
-#EXTINF:-1 ,北京生活 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226514/1.m3u8
-#EXTINF:-1 ,北京科教 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226434/1.m3u8
-#EXTINF:-1 ,北京财经 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226516/1.m3u8
-#EXTINF:-1 ,北京青年 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226513/1.m3u8
-#EXTINF:-1 ,上海哈哈炫动 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226421/1.m3u8
-#EXTINF:-1 ,上海哈哈炫动 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225909/1.m3u8
-#EXTINF:-1 ,广东嘉佳卡通 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226539/1.m3u8
-#EXTINF:-1 ,江苏优漫卡通 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226420/1.m3u8
-#EXTINF:-1 ,江苏优漫卡通 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225910/1.m3u8
-#EXTINF:-1 ,湖南金鹰卡通 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225906/1.m3u8
-#EXTINF:-1 ,CCTV中视购物 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226385/1.m3u8
-#EXTINF:-1 ,北京家有购物 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225912/1.m3u8
-#EXTINF:-1 ,北京家有购物 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226343/1.m3u8
-#EXTINF:-1 ,聚鲨环球精选 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226311/1.m3u8
-#EXTINF:-1 ,聚鲨环球精选 标清
-http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226345/1.m3u8
diff --git a/extraResources/电视频道_2.m3u b/extraResources/电视频道_2.m3u
deleted file mode 100644
index 3aea27d..0000000
--- a/extraResources/电视频道_2.m3u
+++ /dev/null
@@ -1,6489 +0,0 @@
-#EXTM3U
-#EXTINF:-1 ,CCTV-1综合
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-1综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_9cj2bS.m3u8
-#EXTINF:-1 ,CCTV-1综合
-https://jwplay.hebyun.com.cn/live/cctv1/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-1综合
-http://120.221.5.113:8089/PLTV/88888888/224/3221225919/index.m3u8
-#EXTINF:-1 ,CCTV-1综合
-https://jwplay.hebyun.com.cn/live/gbdcctv1/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-1综合
-http://livewjq.chinamcache.com/live/wjq2.m3u8
-#EXTINF:-1 ,CCTV-1综合
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226759/index.m3u8
-#EXTINF:-1 ,CCTV-1综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_PDWLaL.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv2/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://120.221.5.175:8089/PLTV/88888888/224/3221225895/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://120.221.44.107:8089/PLTV/88888888/224/3221225895/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://120.221.5.165:8089/PLTV/88888888/224/3221225895/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://120.221.5.107:8089/PLTV/88888888/224/3221225895/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225588/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://39.134.65.162/PLTV/88888888/224/3221225696/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://39.134.65.162/PLTV/88888888/224/3221225714/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225974/index.m3u8
-#EXTINF:-1 ,CCTV-2财经
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226853/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv3/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-https://jwplay.hebyun.com.cn/live/cctv3/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://120.221.44.107:8089/PLTV/88888888/224/3221225889/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://120.221.5.165:8089/PLTV/88888888/224/3221225889/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://120.221.5.107:8089/PLTV/88888888/224/3221225889/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://120.221.5.177:8089/PLTV/88888888/224/3221225889/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://183.207.248.71/gitv/live1/G_CCTV-3-HD/G_CCTV-3-HD
-#EXTINF:-1 ,CCTV-3综艺
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226201/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://39.134.168.76/PLTV/1/224/3221225552/index.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://newvideo.dangtutv.cn:8278/CCTVzongyi/playlist.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://ivi.bupt.edu.cn/hls/cctv3.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://221.6.85.150:9000/live/cctv3_800/cctv3_800.m3u8
-#EXTINF:-1 ,CCTV-3综艺
-http://39.130.215.158:6610/gitv_live/CCTV-3/CCTV-3.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv4/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-https://jwplay.hebyun.com.cn/live/cctv4/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://120.221.5.175:8089/PLTV/88888888/224/3221225891/index.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://120.221.44.107:8089/PLTV/88888888/224/3221225891/index.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://120.221.5.165:8089/PLTV/88888888/224/3221225891/index.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://120.221.5.107:8089/PLTV/88888888/224/3221225891/index.m3u8
-#EXTINF:-1 ,CCTV-4中文国际
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225978/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv5/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://120.221.5.175:8089/PLTV/88888888/224/3221225901/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://120.221.44.107:8089/PLTV/88888888/224/3221225901/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://120.221.5.165:8089/PLTV/88888888/224/3221225901/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://120.221.5.107:8089/PLTV/88888888/224/3221225901/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://183.207.248.71/gitv/live1/G_CCTV-5-HD/G_CCTV-5-HD
-#EXTINF:-1 ,CCTV-5体育
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226200/index.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://newvideo.dangtutv.cn:8278/CCTVsports/playlist.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://221.6.85.150:9000/live/cctv5_800/cctv5_800.m3u8
-#EXTINF:-1 ,CCTV-5体育
-http://39.130.215.158:6610/gitv_live/CCTV-5/CCTV-5.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv6/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-6电影
-https://jwplay.hebyun.com.cn/live/cctv6/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://120.221.5.175:8089/PLTV/88888888/224/3221225893/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://120.221.44.107:8089/PLTV/88888888/224/3221225893/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://120.221.5.165:8089/PLTV/88888888/224/3221225893/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://120.221.5.107:8089/PLTV/88888888/224/3221225893/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226199/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://ivi.bupt.edu.cn/hls/cctv6.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://39.130.215.158:6610/gitv_live/CCTV-6/CCTV-6.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://111.20.105.60:6060/yinhe/2/ch00000090990000001016?virtualDomain=yinhe.live_hls.zte.com
-#EXTINF:-1 ,CCTV-7国防军事
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv7/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-https://jwplay.hebyun.com.cn/live/cctv7/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://120.221.5.165:8089/PLTV/88888888/224/3221225887/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://120.221.5.107:8089/PLTV/88888888/224/3221225887/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://120.221.5.167:8089/PLTV/88888888/224/3221225887/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://120.221.5.109:8089/PLTV/88888888/224/3221225887/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225979/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226905/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226188/index.m3u8
-#EXTINF:-1 ,CCTV-7国防军事
-http://39.134.168.76/PLTV/1/224/3221225560/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv8/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://120.221.5.175:8089/PLTV/88888888/224/3221225897/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://120.221.44.107:8089/PLTV/88888888/224/3221225897/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://120.221.5.165:8089/PLTV/88888888/224/3221225897/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://120.221.5.107:8089/PLTV/88888888/224/3221225897/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://183.207.248.71/gitv/live1/G_CCTV-8/G_CCTV-8
-#EXTINF:-1 ,CCTV-8电视剧
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://ivi.bupt.edu.cn/hls/cctv8.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://221.6.85.150:9000/live/cctv8_800/cctv8_800.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://hbry.chinashadt.com:1938/live/1002.stream_360p/playlist.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://39.130.215.158:6610/gitv_live/G_CCTV-8/G_CCTV-8.m3u8
-#EXTINF:-1 ,CCTV-8电视剧
-http://111.20.105.60:6060/yinhe/2/ch00000090990000001022?virtualDomain=yinhe.live_hls.zte.com
-#EXTINF:-1 ,CCTV-9纪录
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv9/1200000/d1.m3u8
-#EXTINF:-1 ,CCTV-9纪录
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226865/index.m3u8
-#EXTINF:-1 ,CCTV-9纪录
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226173/index.m3u8
-#EXTINF:-1 ,CCTV-9纪录
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226636/index.m3u8
-#EXTINF:-1 ,CCTV-9纪录
-http://ivi.bupt.edu.cn/hls/cctv9.m3u8
-#EXTINF:-1 ,CCTV-9纪录
-http://39.134.176.148/PLTV/88888888/224/3221226561/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv10/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://120.221.5.165:8089/PLTV/88888888/224/3221225524/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://120.221.5.177:8089/PLTV/88888888/224/3221225524/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://120.221.5.167:8089/PLTV/88888888/224/3221225524/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://120.221.5.109:8089/PLTV/88888888/224/3221225524/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226792/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225984/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226194/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226670/index.m3u8
-#EXTINF:-1 ,CCTV-10科教
-http://ivi.bupt.edu.cn/hls/cctv10.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv11/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://120.221.5.177:8089/PLTV/88888888/224/3221225928/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://120.221.44.109:8089/PLTV/88888888/224/3221225928/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://120.221.44.101:8089/PLTV/88888888/224/3221225928/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://120.221.5.111:8089/PLTV/88888888/224/3221225928/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226753/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225983/index.m3u8
-#EXTINF:-1 ,CCTV-11戏曲
-http://183.207.248.71/gitv/live1/G_CCTV-11-HQ/G_CCTV-11-HQ
-#EXTINF:-1 ,CCTV-12社会与法
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv12/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-https://jwplay.hebyun.com.cn/live/cctv12/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://120.221.5.165:8089/PLTV/88888888/224/3221225526/index.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://120.221.5.107:8089/PLTV/88888888/224/3221225526/index.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://120.221.5.177:8089/PLTV/88888888/224/3221225526/index.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://120.221.44.109:8089/PLTV/88888888/224/3221225526/index.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225987/index.m3u8
-#EXTINF:-1 ,CCTV-12社会与法
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226862/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctvxw/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-https://jwplay.hebyun.com.cn/live/cctv13/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://120.221.5.105:8089/PLTV/88888888/224/3221225949/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://120.221.5.175:8089/PLTV/88888888/224/3221225949/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://120.221.44.107:8089/PLTV/88888888/224/3221225949/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://120.221.5.165:8089/PLTV/88888888/224/3221225949/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225599/index.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225986/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://120.221.5.165:8089/PLTV/88888888/224/3221225528/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://120.221.5.177:8089/PLTV/88888888/224/3221225528/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://120.221.44.101:8089/PLTV/88888888/224/3221225528/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://120.221.5.111:8089/PLTV/88888888/224/3221225528/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226789/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225991/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226181/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://183.207.248.71/gitv/live1/G_CCTV-14/G_CCTV-14
-#EXTINF:-1 ,CCTV-14少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226667/index.m3u8
-#EXTINF:-1 ,CCTV-14少儿
-http://ivi.bupt.edu.cn/hls/cctv14.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctvyy/1300000/d1.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://120.221.5.105:8089/PLTV/88888888/224/3221225941/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://120.221.5.175:8089/PLTV/88888888/224/3221225941/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://120.221.44.107:8089/PLTV/88888888/224/3221225941/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://120.221.5.165:8089/PLTV/88888888/224/3221225941/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226796/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225990/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226180/index.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://ivi.bupt.edu.cn/hls/cctv17.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226866/index.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226908/index.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://www.xytv998.com/live/sdi1/index.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://39.130.215.158:6610/gitv_live/G_CCTV-17/G_CCTV-17.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226208/1.m3u8
-#EXTINF:-1 ,CCTV-17农业农村
-http://stream.cdjsxy.cn/lypd/sd/live.m3u8
-#EXTINF:-1 ,CCTV-发现之旅
-http://183.207.248.71/gitv/live1/G_FAXIANZL/G_FAXIANZL
-#EXTINF:-1 ,CCTV-发现之旅
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226235/1.m3u8
-#EXTINF:-1 ,CCTV-女性时尚
-http://183.207.248.71/gitv/live1/G_NVXINGSS/G_NVXINGSS
-#EXTINF:-1 ,CCTV-新科动漫
-http://cctvtxyh5ca.liveplay.myqcloud.com/live/xinkedongman_2/index.m3u8
-#EXTINF:-1 ,CCTV-电视指南
-http://39.130.215.158:6610/gitv_live/G_DIANSHIZN/G_DIANSHIZN.m3u8
-#EXTINF:-1 ,CCTV-老故事
-http://183.207.248.71/gitv/live1/G_LAOGUSHI/G_LAOGUSHI
-#EXTINF:-1 ,CCTV-中视购物
-http://39.130.215.158:6610/gitv_live/G_ZHONGSHIGOU/G_ZHONGSHIGOU.m3u8
-#EXTINF:-1 ,CCTV-4中文国际欧洲
-http://cctvalih5ca.v.myalicdn.com/live/cctveurope_2/index.m3u8
-#EXTINF:-1 ,CCTV-4中文国际美洲
-http://cctvalih5ca.v.myalicdn.com/live/cctvamerica_2/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://120.221.44.107:8089/PLTV/88888888/224/3221225859/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225859/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225859/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225859/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225587/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://39.134.65.162/PLTV/88888888/224/3221225686/index.m3u8
-#EXTINF:-1 ,CCTV-1HD
-http://183.207.248.71/cntv/live1/cctv-1/cctv-1
-#EXTINF:-1 ,CCTV-2HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225751/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225751/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225751/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225751/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://183.207.248.71/cntv/live1/cctv-2/cctv-2
-#EXTINF:-1 ,CCTV-2HD
-http://39.134.65.162/PLTV/88888888/224/3221225691/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://ivi.bupt.edu.cn/hls/cctv2hd.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://112.50.243.8/PLTV/88888888/224/3221225800/1.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225747/index.m3u8
-#EXTINF:-1 ,CCTV-2HD
-http://183.207.248.71/gitv/live1/G_CCTV-2-HD/G_CCTV-2-HD
-#EXTINF:-1 ,CCTV-3HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv3hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-3HD
-http://39.134.65.162/PLTV/88888888/224/3221225688/index.m3u8
-#EXTINF:-1 ,CCTV-3HD
-http://183.207.248.71/cntv/live1/cctv-3/cctv-3
-#EXTINF:-1 ,CCTV-3HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225606/index.m3u8
-#EXTINF:-1 ,CCTV-3HD
-http://39.134.65.162/PLTV/88888888/224/3221225784/index.m3u8
-#EXTINF:-1 ,CCTV-3HD
-http://183.207.248.71/cntv/live1/1/HD-2500k-1080P-cctv3
-#EXTINF:-1 ,CCTV-3HD
-http://183.207.248.71/gitv/live1/G_CCTV-3-HQ/G_CCTV-3-HQ
-#EXTINF:-1 ,CCTV-3HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225754/index.m3u8
-#EXTINF:-1 ,CCTV-3HD
-http://183.207.248.71/gitv/live1/G_CCTV-3-CQ/G_CCTV-3-CQ
-#EXTINF:-1 ,CCTV-3HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225785/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225757/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225757/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225757/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225757/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225590/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://ivi.bupt.edu.cn/hls/cctv4hd.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://112.50.243.8/PLTV/88888888/224/3221225802/1.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226899/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://183.207.248.71/gitv/live1/G_CCTV-4-HQ/G_CCTV-4-HQ
-#EXTINF:-1 ,CCTV-4HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226176/index.m3u8
-#EXTINF:-1 ,CCTV-4HD
-http://183.207.248.71/gitv/live1/G_CCTV-4-CQ/G_CCTV-4-CQ
-#EXTINF:-1 ,CCTV-4HD
-http://39.134.65.162/PLTV/88888888/224/3221225487/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv5hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225591/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://39.134.65.162/PLTV/88888888/224/3221225685/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://183.207.248.71/cntv/live1/cctv-5/cctv-5
-#EXTINF:-1 ,CCTV-5HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225711/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226944/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://183.207.248.71/cntv/live1/1/HD-2500k-1080P-cctv5
-#EXTINF:-1 ,CCTV-5HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225753/index.m3u8
-#EXTINF:-1 ,CCTV-5HD
-http://183.207.248.71/gitv/live1/G_CCTV-5-HQ/G_CCTV-5-HQ
-#EXTINF:-1 ,CCTV-5HD
-http://183.207.248.71/gitv/live1/G_CCTV-5-CQ/G_CCTV-5-CQ
-#EXTINF:-1 ,CCTV-6HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv6hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-6HD
-http://39.134.65.162/PLTV/88888888/224/3221225687/index.m3u8
-#EXTINF:-1 ,CCTV-6HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225607/index.m3u8
-#EXTINF:-1 ,CCTV-6HD
-http://183.207.248.71/cntv/live1/cctv-6/cctv-6
-#EXTINF:-1 ,CCTV-6HD
-http://39.134.65.162/PLTV/88888888/224/3221225786/index.m3u8
-#EXTINF:-1 ,CCTV-6HD
-http://183.207.248.71/cntv/live1/1/HD-2500k-1080P-cctv6
-#EXTINF:-1 ,CCTV-7HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225753/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225753/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225753/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225753/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://39.134.65.162/PLTV/88888888/224/3221225671/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225593/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://183.207.248.71/cntv/live1/cctv-7/cctv-7
-#EXTINF:-1 ,CCTV-7HD
-http://ivi.bupt.edu.cn/hls/cctv7hd.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://112.50.243.8/PLTV/88888888/224/3221225805/1.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226907/index.m3u8
-#EXTINF:-1 ,CCTV-7HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225733/index.m3u8
-#EXTINF:-1 ,CCTV-8HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv8hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-8HD
-http://39.134.65.162/PLTV/88888888/224/3221225692/index.m3u8
-#EXTINF:-1 ,CCTV-8HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225608/index.m3u8
-#EXTINF:-1 ,CCTV-8HD
-http://183.207.248.71/cntv/live1/cctv-8/cctv-8
-#EXTINF:-1 ,CCTV-8HD
-http://39.134.65.162/PLTV/88888888/224/3221225788/index.m3u8
-#EXTINF:-1 ,CCTV-8HD
-http://183.207.248.71/cntv/live1/1/HD-2500k-1080P-cctv8
-#EXTINF:-1 ,CCTV-8HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225750/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225759/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225759/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225759/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://120.221.5.109:8089/PLTV/88888888/224/3221225759/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://39.134.65.162/PLTV/88888888/224/3221225676/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225595/index.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://ivi.bupt.edu.cn/hls/cctv9hd.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://183.207.248.71/cntv/live1/cctv-news/cctv-news
-#EXTINF:-1 ,CCTV-9HD
-http://112.50.243.8/PLTV/88888888/224/3221225820/1.m3u8
-#EXTINF:-1 ,CCTV-9HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225734/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv10hd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225761/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225761/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225761/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225761/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://39.134.65.162/PLTV/88888888/224/3221225677/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225596/index.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://ivi.bupt.edu.cn/hls/cctv10hd.m3u8
-#EXTINF:-1 ,CCTV-10HD
-http://183.207.248.71/cntv/live1/cctv-10/cctv-10
-#EXTINF:-1 ,CCTV-10HD
-http://112.50.243.8/PLTV/88888888/224/3221225814/1.m3u8
-#EXTINF:-1 ,CCTV-11HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225597/index.m3u8
-#EXTINF:-1 ,CCTV-11HD
-http://112.50.243.8/PLTV/88888888/224/3221225815/1.m3u8
-#EXTINF:-1 ,CCTV-11HD
-http://39.134.65.162/PLTV/88888888/224/3221225517/index.m3u8
-#EXTINF:-1 ,CCTV-11HD
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225499/1.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225763/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225763/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225763/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225763/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225598/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://ivi.bupt.edu.cn/hls/cctv12hd.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://112.50.243.8/PLTV/88888888/224/3221225816/1.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225731/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://112.50.243.8/PLTV/88888888/224/3221225932/1.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226183/index.m3u8
-#EXTINF:-1 ,CCTV-12HD
-http://39.134.65.162/PLTV/88888888/224/3221225518/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctvsehd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225765/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://120.221.5.109:8089/PLTV/88888888/224/3221225765/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://120.221.5.169:8089/PLTV/88888888/224/3221225765/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://120.221.5.103:8089/PLTV/88888888/224/3221225765/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://39.134.65.162/PLTV/88888888/224/3221225674/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225600/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://ivi.bupt.edu.cn/hls/cctv14hd.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://183.207.248.71/cntv/live1/cctv-14/cctv-14
-#EXTINF:-1 ,CCTV-14HD
-http://112.50.243.8/PLTV/88888888/224/3221225819/1.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225678/index.m3u8
-#EXTINF:-1 ,CCTV-14HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225732/index.m3u8
-#EXTINF:-1 ,CCTV-15HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225601/index.m3u8
-#EXTINF:-1 ,CCTV-15HD
-http://112.50.243.8/PLTV/88888888/224/3221225818/1.m3u8
-#EXTINF:-1 ,CCTV-15HD
-http://39.134.65.162/PLTV/88888888/224/3221225513/index.m3u8
-#EXTINF:-1 ,CCTV-15HD
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225502/1.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://120.221.5.113:8089/PLTV/88888888/224/3221226093/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221226093/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://120.221.5.111:8089/PLTV/88888888/224/3221226093/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://ivi.bupt.edu.cn/hls/cctv17hd.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://39.134.65.162/PLTV/88888888/224/3221225708/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226841/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226869/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225765/index.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://112.50.243.8/PLTV/88888888/224/3221226986/1.m3u8
-#EXTINF:-1 ,CCTV-17HD
-http://112.50.243.8/PLTV/88888888/224/3221226990/1.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv5phd/2300000/d1.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://120.221.44.107:8089/PLTV/88888888/224/3221225781/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225781/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225781/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225781/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225603/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://39.134.65.162/PLTV/88888888/224/3221225690/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://183.207.248.71/cntv/live1/hdcctv05plus/hdcctv05plus
-#EXTINF:-1 ,CCTV-5+HD
-http://112.50.243.8/PLTV/88888888/224/3221225821/1.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225689/index.m3u8
-#EXTINF:-1 ,CCTV-5+HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226910/index.m3u8
-#EXTINF:-1 ,CCTV-4K超高清
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229683/index.m3u8
-#EXTINF:-1 ,CCTV-4K超高清
-http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zgjy1ott/2300000/d1.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://ivi.bupt.edu.cn/hls/cetv1hd.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225652/index.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://112.50.243.8/PLTV/88888888/224/3221225869/1.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://112.50.243.8/PLTV/88888888/224/3221226954/1.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://39.134.65.162/PLTV/88888888/224/3221225563/index.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226732/index.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://39.130.215.158:6610/gitv_live/G_CETV-1-HD/G_CETV-1-HD.m3u8
-#EXTINF:-1 ,中国教育1HD
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225549/1.m3u8
-#EXTINF:-1 ,CGTN
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ottcctvnews/1300000/d1.m3u8
-#EXTINF:-1 ,CGTN
-https://live.cgtn.com/1000/prog_index.m3u8
-#EXTINF:-1 ,CGTN
-http://120.221.5.107:8089/PLTV/88888888/224/3221225899/index.m3u8
-#EXTINF:-1 ,CGTN
-http://120.221.5.175:8089/PLTV/88888888/224/3221225899/index.m3u8
-#EXTINF:-1 ,CGTN
-http://120.221.44.107:8089/PLTV/88888888/224/3221225899/index.m3u8
-#EXTINF:-1 ,CGTN
-http://120.221.5.165:8089/PLTV/88888888/224/3221225899/index.m3u8
-#EXTINF:-1 ,CGTN
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225604/index.m3u8
-#EXTINF:-1 ,CGTN
-http://ivi.bupt.edu.cn/hls/cgtnhd.m3u8
-#EXTINF:-1 ,CGTN
-http://112.50.243.8/PLTV/88888888/224/3221225822/1.m3u8
-#EXTINF:-1 ,CGTN
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226172/index.m3u8
-#EXTINF:-1 ,CGTN
-http://39.134.65.162/PLTV/88888888/224/3221225510/index.m3u8
-#EXTINF:-1 ,CGTN
-http://ivi.bupt.edu.cn/hls/cctv16.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225602/index.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://ivi.bupt.edu.cn/hls/cgtndochd.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://112.50.243.8/PLTV/88888888/224/3221225813/1.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://39.134.65.162/PLTV/88888888/224/3221225509/index.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://39.130.215.158:6610/gitv_live/G_CGTVJL-HD/G_CGTVJL-HD.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://39.130.215.158:6610/gitv_live/G_CGTVJL/G_CGTVJL.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://117.169.120.98:8080/ysten-businessmobile/live/cctv-9/1.m3u8
-#EXTINF:-1 ,CGTN纪录
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225509/1.m3u8
-#EXTINF:-1 ,中国教育1
-https://hlscdn.liangtv.cn/live/49ca2ef8d65c43259c47156cfbede55e/0d5dff949c4648ddb5f2e2e9ebfd011b.m3u8
-#EXTINF:-1 ,中国教育1
-http://ivi.bupt.edu.cn/hls/cetv1.m3u8
-#EXTINF:-1 ,中国教育1
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226015/index.m3u8
-#EXTINF:-1 ,中国教育1
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226171/index.m3u8
-#EXTINF:-1 ,中国教育1
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226658/index.m3u8
-#EXTINF:-1 ,中国教育1
-http://183.207.248.71/gitv/live1/G_CETV-1/G_CETV-1
-#EXTINF:-1 ,中国教育2
-https://hlscdn.liangtv.cn/live/fe27f2056c0c41439a598b4fc6f1c580/705c05d0f8df4a42b6be8f0ae8a85d6a.m3u8
-#EXTINF:-1 ,中国教育2
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226170/index.m3u8
-#EXTINF:-1 ,中国教育2
-http://183.207.248.71/gitv/live1/G_CETV-2/G_CETV-2
-#EXTINF:-1 ,中国教育2
-http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8
-#EXTINF:-1 ,中国教育2
-http://39.130.215.158:6610/gitv_live/G_CETV-2/G_CETV-2.m3u8
-#EXTINF:-1 ,中国教育2
-http://111.20.105.60:6060/yinhe/2/ch00000090990000001064?virtualDomain=yinhe.live_hls.zte.com
-#EXTINF:-1 ,中国教育2
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225756/1.m3u8
-#EXTINF:-1 ,中国教育3
-http://ivi.bupt.edu.cn/hls/cetv3.m3u8
-#EXTINF:-1 ,中国教育3
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226950/index.m3u8
-#EXTINF:-1 ,中国教育3
-http://183.207.248.71/gitv/live1/G_CETV-3/G_CETV-3
-#EXTINF:-1 ,中国教育3
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8
-#EXTINF:-1 ,中国教育4
-https://hlscdn.liangtv.cn/live/343e872aba6d4096a14f2c675e698528/a65bdcf36db94eda8cb5ce02e1395f2a.m3u8
-#EXTINF:-1 ,中国教育4
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226846/index.m3u8
-#EXTINF:-1 ,中国教育4
-http://ivi.bupt.edu.cn/hls/cetv4.m3u8
-#EXTINF:-1 ,中国教育4
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226940/index.m3u8
-#EXTINF:-1 ,中国教育4
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226943/index.m3u8
-#EXTINF:-1 ,中国教育4
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226953/index.m3u8
-#EXTINF:-1 ,中国教育4
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225783/index.m3u8
-#EXTINF:-1 ,中国教育4
-http://112.50.243.8:80/PLTV/88888888/224/3221227050/1.m3u8
-#EXTINF:-1 ,中国教育4
-http://183.207.248.71/gitv/live1/G_CETV-4/G_CETV-4
-#EXTINF:-1 ,早期教育
-http://39.130.215.158:6610/gitv_live/G_CETV-ZQJY/G_CETV-ZQJY.m3u8
-#EXTINF:-1 ,新华中文
-http://livecdn1.news.cn/cnccn/manifest.m3u8
-#EXTINF:-1 ,新华中文
-http://117.169.120.98:8080/ysten-businessmobile/live/SD-1200K-720P-XHSZH/1.m3u8
-#EXTINF:-1 ,新华英语
-http://117.169.120.98:8080/ysten-businessmobile/live/SD-1200K-720P-XHSEN/1.m3u8
-#EXTINF:-1 ,书画频道
-http://112.73.66.58:9999/hls-live/livepkgr/_definst_/shtv/shtv.m3u8
-#EXTINF:-1 ,中国天气
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zgqx/1300000/d1.m3u8
-#EXTINF:-1 ,中国供销
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zggxpd/1300000/d1.m3u8
-#EXTINF:-1 ,环球购物
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225708/index.m3u8
-#EXTINF:-1 ,环球购物
-http://39.134.65.162/PLTV/88888888/224/3221225597/index.m3u8
-#EXTINF:-1 ,环球购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225857/1.m3u8
-#EXTINF:-1 ,环球购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226207/1.m3u8
-#EXTINF:-1 ,央广购物
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225709/index.m3u8
-#EXTINF:-1 ,央广购物
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226695/index.m3u8
-#EXTINF:-1 ,央广购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226032/1.m3u8
-#EXTINF:-1 ,CHC家庭影院
-http://117.156.28.119/270000001111/1110000010/index.m3u8
-#EXTINF:-1 ,CHC高清电影
-http://ivi.bupt.edu.cn/hls/chchd.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/2300000/d1.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225767/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225767/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225767/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225767/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225610/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://183.207.248.71/cntv/live1/hunanstv/hunanstv
-#EXTINF:-1 ,湖南卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225981/index.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225827/1.m3u8
-#EXTINF:-1 ,湖南卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226144/index.m3u8
-#EXTINF:-1 ,江苏卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/2300000/d1.m3u8
-#EXTINF:-1 ,江苏卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225613/index.m3u8
-#EXTINF:-1 ,江苏卫视HD
-http://183.207.248.71/cntv/live1/jiangsustv/jiangsustv
-#EXTINF:-1 ,江苏卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225644/index.m3u8
-#EXTINF:-1 ,江苏卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225989/index.m3u8
-#EXTINF:-1 ,江苏卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226902/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/2300000/d1.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://hw-m-l.cztv.com/channels/lantian/channel001/1080p.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://hw-m-l.cztv.com/channels/lantian/channel001/720p.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225585/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://120.221.5.107:8089/PLTV/88888888/224/3221225585/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225585/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225585/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://ivi.bupt.edu.cn/hls/zjhd.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225612/index.m3u8
-#EXTINF:-1 ,浙江卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225975/index.m3u8
-#EXTINF:-1 ,东方卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/2300000/d1.m3u8
-#EXTINF:-1 ,东方卫视HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225589/index.m3u8
-#EXTINF:-1 ,东方卫视HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225589/index.m3u8
-#EXTINF:-1 ,东方卫视HD
-http://120.221.5.175:8089/PLTV/88888888/224/3221225589/index.m3u8
-#EXTINF:-1 ,东方卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225672/index.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/2300000/d1.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221226213/index.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://183.207.248.71/cntv/live1/hdguangdongstv/hdguangdongstv
-#EXTINF:-1 ,广东卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225641/index.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225985/index.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225824/1.m3u8
-#EXTINF:-1 ,广东卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225699/index.m3u8
-#EXTINF:-1 ,深圳卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/2300000/d1.m3u8
-#EXTINF:-1 ,深圳卫视HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221226150/index.m3u8
-#EXTINF:-1 ,深圳卫视HD
-http://ivi.bupt.edu.cn/hls/szhd.m3u8
-#EXTINF:-1 ,深圳卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225982/index.m3u8
-#EXTINF:-1 ,深圳卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225645/index.m3u8
-#EXTINF:-1 ,北京卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/2300000/d1.m3u8
-#EXTINF:-1 ,北京卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225678/index.m3u8
-#EXTINF:-1 ,北京卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225689/index.m3u8
-#EXTINF:-1 ,北京卫视HD
-http://183.207.248.71/cntv/live1/beijingstv/beijingstv
-#EXTINF:-1 ,北京卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225651/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/tjwshd/2300000/d1.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://120.221.5.167:8089/PLTV/88888888/224/3221225791/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://120.221.5.109:8089/PLTV/88888888/224/3221225791/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://120.221.5.169:8089/PLTV/88888888/224/3221225791/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://120.221.5.103:8089/PLTV/88888888/224/3221225791/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://ivi.bupt.edu.cn/hls/tjhd.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225648/index.m3u8
-#EXTINF:-1 ,天津卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225830/1.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/2300000/d1.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://ivi.bupt.edu.cn/hls/sdhd.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225680/index.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225650/index.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225992/index.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225843/1.m3u8
-#EXTINF:-1 ,山东卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225737/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/2300000/d1.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://120.221.44.107:8089/PLTV/88888888/224/3221225769/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://120.221.44.109:8089/PLTV/88888888/224/3221225769/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://120.221.44.111:8089/PLTV/88888888/224/3221225769/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://120.221.5.171:8089/PLTV/88888888/224/3221225769/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225627/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225993/index.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225840/1.m3u8
-#EXTINF:-1 ,湖北卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225705/index.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/2300000/d1.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226749/index.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225640/index.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225980/index.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225658/index.m3u8
-#EXTINF:-1 ,黑龙江卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225862/1.m3u8
-#EXTINF:-1 ,河北卫视HD
-http://weblive.hebtv.com/live/hbws_bq/index.m3u8
-#EXTINF:-1 ,河北卫视HD
-http://live01.hebtv.com/channels/hebtv/video_channel_04/m3u8:2000k/live
-#EXTINF:-1 ,河北卫视HD
-http://live01.hebtv.com/channels/hebtv/video_channel_04/m3u8:1200k/live
-#EXTINF:-1 ,河北卫视HD
-http://120.221.5.103:8089/PLTV/88888888/224/3221225779/index.m3u8
-#EXTINF:-1 ,河北卫视HD
-http://live01.hebtv.com/channels/hebtv/video_channel_04/m3u8:800k/live
-#EXTINF:-1 ,河北卫视HD
-http://weblive.hebtv.com/live/hbws_lc/index.m3u8
-#EXTINF:-1 ,河北卫视HD
-http://ivi.bupt.edu.cn/hls/hebhd.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ahwshd/2300000/d1.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://120.221.5.103:8089/PLTV/88888888/224/3221225775/index.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226746/index.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225675/index.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225631/index.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://183.207.248.71/cntv/live1/anhuistv/anhuistv
-#EXTINF:-1 ,安徽卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225844/1.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226045/index.m3u8
-#EXTINF:-1 ,安徽卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225727/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lnwshd/2300000/d1.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://120.221.5.109:8089/PLTV/88888888/224/3221225789/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://120.221.5.169:8089/PLTV/88888888/224/3221225789/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://120.221.5.103:8089/PLTV/88888888/224/3221225789/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://120.221.5.173:8089/PLTV/88888888/224/3221225789/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225619/index.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://183.207.248.71/cntv/live1/liaoningstv/liaoningstv
-#EXTINF:-1 ,辽宁卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225832/1.m3u8
-#EXTINF:-1 ,辽宁卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226049/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dnwshd/2300000/d1.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://120.221.44.101:8089/PLTV/88888888/224/3221225649/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://120.221.5.169:8089/PLTV/88888888/224/3221225649/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://120.221.5.113:8089/PLTV/88888888/224/3221225649/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225620/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://ivi.bupt.edu.cn/hls/dnhd.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225833/1.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226046/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225500/index.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221226877/1.m3u8
-#EXTINF:-1 ,东南卫视HD
-http://39.134.168.76/PLTV/1/224/3221225580/index.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jxwshd/2300000/d1.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://live05.jxtvcn.com.cn/live-jxtvcn/jxtv01.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225615/index.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://ivi.bupt.edu.cn/hls/jxhd.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225834/1.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226044/index.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225868/1.m3u8
-#EXTINF:-1 ,江西卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225512/index.m3u8
-#EXTINF:-1 ,重庆卫视HD
-http://120.221.5.177:8089/PLTV/88888888/224/3221225952/index.m3u8
-#EXTINF:-1 ,重庆卫视HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225618/index.m3u8
-#EXTINF:-1 ,重庆卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225831/1.m3u8
-#EXTINF:-1 ,重庆卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225949/1.m3u8
-#EXTINF:-1 ,重庆卫视HD
-http://39.134.65.162/PLTV/88888888/224/3221225502/index.m3u8
-#EXTINF:-1 ,四川卫视HD
-http://scgctvshow.sctv.com/scgc/sctv1deu5453w/1.m3u8
-#EXTINF:-1 ,四川卫视HD
-http://ivi.bupt.edu.cn/hls/schd.m3u8
-#EXTINF:-1 ,四川卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221225835/1.m3u8
-#EXTINF:-1 ,四川卫视HD
-http://112.50.243.8:80/PLTV/88888888/224/3221227006/1.m3u8
-#EXTINF:-1 ,四川卫视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226728/index.m3u8
-#EXTINF:-1 ,广西卫视HD
-http://ivi.bupt.edu.cn/hls/gxhd.m3u8
-#EXTINF:-1 ,广西卫视HD
-http://39.130.215.158:6610/gitv_live/G_GUANGXI-HD/G_GUANGXI-HD.m3u8
-#EXTINF:-1 ,云南卫视HD
-http://39.130.215.158:6610/gitv_live/G_YUNNAN-HD/G_YUNNAN-HD.m3u8
-#EXTINF:-1 ,河南卫视HD
-http://ivi.bupt.edu.cn/hls/hnhd.m3u8
-#EXTINF:-1 ,贵州卫视HD
-http://ivi.bupt.edu.cn/hls/gzhd.m3u8
-#EXTINF:-1 ,贵州卫视HD
-http://112.50.243.8/PLTV/88888888/224/3221226827/1.m3u8
-#EXTINF:-1 ,贵州卫视HD
-http://39.130.215.158:6610/gitv_live/G_GUIZHOU-HD/G_GUIZHOU-HD.m3u8
-#EXTINF:-1 ,吉林卫视HD
-http://ivi.bupt.edu.cn/hls/jlhd.m3u8
-#EXTINF:-1 ,海南卫视HD
-http://ivi.bupt.edu.cn/hls/lyhd.m3u8
-#EXTINF:-1 ,湖南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/1300000/d1.m3u8
-#EXTINF:-1 ,湖南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hunanws/1300000/d1.m3u8
-#EXTINF:-1 ,湖南卫视
-http://play-dgv-xhncloud.voc.com.cn/live/5243_9Rr9CO.m3u8
-#EXTINF:-1 ,湖南卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225824/index.m3u8
-#EXTINF:-1 ,湖南卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225824/index.m3u8
-#EXTINF:-1 ,湖南卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225824/index.m3u8
-#EXTINF:-1 ,湖南卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225824/index.m3u8
-#EXTINF:-1 ,湖南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226772/index.m3u8
-#EXTINF:-1 ,湖南卫视
-http://play-dgv-xhncloud.voc.com.cn/live/5243_yBEkTx.m3u8
-#EXTINF:-1 ,湖南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226834/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/1300000/d1.m3u8
-#EXTINF:-1 ,江苏卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jsws/1300000/d1.m3u8
-#EXTINF:-1 ,江苏卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225923/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225923/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://120.221.44.101:8089/PLTV/88888888/224/3221225923/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://120.221.5.111:8089/PLTV/88888888/224/3221225923/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226781/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226932/index.m3u8
-#EXTINF:-1 ,江苏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226143/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/1300000/d1.m3u8
-#EXTINF:-1 ,浙江卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjws/1300000/d1.m3u8
-#EXTINF:-1 ,浙江卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221225926/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://120.221.5.175:8089/PLTV/88888888/224/3221225926/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225926/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225926/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://ivi.bupt.edu.cn/hls/zjtv.m3u8
-#EXTINF:-1 ,浙江卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226795/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://hw-m-l.cztv.com/channels/lantian/channel01/360p.m3u8
-#EXTINF:-1 ,浙江卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226854/index.m3u8
-#EXTINF:-1 ,浙江卫视
-http://ali-m-l.cztv.com/channels/lantian/channel01/540p.m3u8
-#EXTINF:-1 ,东方卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dfws/1300000/d1.m3u8
-#EXTINF:-1 ,东方卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225925/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://120.221.44.101:8089/PLTV/88888888/224/3221225925/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://120.221.5.111:8089/PLTV/88888888/224/3221225925/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://120.221.44.103:8089/PLTV/88888888/224/3221225925/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226872/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226938/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226168/index.m3u8
-#EXTINF:-1 ,东方卫视
-http://39.134.168.76/PLTV/1/224/3221225492/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/1300000/d1.m3u8
-#EXTINF:-1 ,广东卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gdws/1300000/d1.m3u8
-#EXTINF:-1 ,广东卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225966/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225966/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225966/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225966/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226878/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226935/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226165/index.m3u8
-#EXTINF:-1 ,广东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226635/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/1300000/d1.m3u8
-#EXTINF:-1 ,深圳卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/szws/1300000/d1.m3u8
-#EXTINF:-1 ,深圳卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221226043/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221226043/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221226043/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221226043/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://ivi.bupt.edu.cn/hls/sztv.m3u8
-#EXTINF:-1 ,深圳卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226807/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226831/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226152/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/1300000/d1.m3u8
-#EXTINF:-1 ,北京卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjws/1300000/d1.m3u8
-#EXTINF:-1 ,北京卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225848/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225848/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://120.221.44.101:8089/PLTV/88888888/224/3221225848/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://120.221.5.111:8089/PLTV/88888888/224/3221225848/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226823/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226837/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226185/index.m3u8
-#EXTINF:-1 ,北京卫视
-http://39.134.168.76/PLTV/1/224/3221225524/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/tjwshd/1300000/d1.m3u8
-#EXTINF:-1 ,天津卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/tjws/1300000/d1.m3u8
-#EXTINF:-1 ,天津卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225863/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://120.221.5.173:8089/PLTV/88888888/224/3221225863/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://ivi.bupt.edu.cn/hls/tjtv.m3u8
-#EXTINF:-1 ,天津卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226890/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226926/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226135/index.m3u8
-#EXTINF:-1 ,天津卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226641/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/1300000/d1.m3u8
-#EXTINF:-1 ,山东卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sdws/1300000/d1.m3u8
-#EXTINF:-1 ,山东卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221225921/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://120.221.5.175:8089/PLTV/88888888/224/3221225921/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225921/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225921/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://ivi.bupt.edu.cn/hls/sdtv.m3u8
-#EXTINF:-1 ,山东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226887/index.m3u8
-#EXTINF:-1 ,山东卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226138/index.m3u8
-#EXTINF:-1 ,湖北卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/1300000/d1.m3u8
-#EXTINF:-1 ,湖北卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hubeiws/1300000/d1.m3u8
-#EXTINF:-1 ,湖北卫视
-http://live.cjyun.org/hubeitv/s10008-live-hbws.m3u8
-#EXTINF:-1 ,湖北卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225808/index.m3u8
-#EXTINF:-1 ,湖北卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225808/index.m3u8
-#EXTINF:-1 ,湖北卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226877/index.m3u8
-#EXTINF:-1 ,湖北卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226162/index.m3u8
-#EXTINF:-1 ,河北卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbws/1300000/d1.m3u8
-#EXTINF:-1 ,河北卫视
-http://weblive.hebtv.com/live/hbwsbq_bq/index.m3u8
-#EXTINF:-1 ,河北卫视
-http://live5.plus.hebtv.com/hbws/sd/live.m3u8
-#EXTINF:-1 ,河北卫视
-http://live01.hebtv.com/channels/hebtv/video_channel_05/m3u8:2000k/live
-#EXTINF:-1 ,河北卫视
-http://live01.hebtv.com/channels/hebtv/video_channel_05/m3u8:500k/live
-#EXTINF:-1 ,河北卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225861/index.m3u8
-#EXTINF:-1 ,河北卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225861/index.m3u8
-#EXTINF:-1 ,河北卫视
-http://weblive.hebtv.com/live/hbwsbq_lc/index.m3u8
-#EXTINF:-1 ,河北卫视
-https://jwplay.hebyun.com.cn/live/hbwstv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北卫视
-https://jwplay.hebyun.com.cn/live/gbdhbtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226774/index.m3u8
-#EXTINF:-1 ,河北卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225623/index.m3u8
-#EXTINF:-1 ,贵州卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gzws/1300000/d1.m3u8
-#EXTINF:-1 ,贵州卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226025/index.m3u8
-#EXTINF:-1 ,贵州卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225626/index.m3u8
-#EXTINF:-1 ,贵州卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225998/index.m3u8
-#EXTINF:-1 ,贵州卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226874/index.m3u8
-#EXTINF:-1 ,贵州卫视
-http://112.50.243.8/PLTV/88888888/224/3221225838/1.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/1300000/d1.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hljws/1300000/d1.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225968/index.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225968/index.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225968/index.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225968/index.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226881/index.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://39.134.168.76/PLTV/1/224/3221225536/index.m3u8
-#EXTINF:-1 ,南方卫视
-http://183.207.248.71/gitv/live1/G_NANFANG/G_NANFANG
-#EXTINF:-1 ,南方卫视
-http://39.130.215.158:6610/gitv_live/G_NANFANG/G_NANFANG.m3u8
-#EXTINF:-1 ,南方卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226218/1.m3u8
-#EXTINF:-1 ,山西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/shanxiws/1300000/d1.m3u8
-#EXTINF:-1 ,山西卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225954/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225954/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://120.221.5.167:8089/PLTV/88888888/224/3221225954/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221225954/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://ivi.bupt.edu.cn/hls/sxrtv.m3u8
-#EXTINF:-1 ,山西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226778/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225624/index.m3u8
-#EXTINF:-1 ,山西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226032/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lnwshd/1300000/d1.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lnws/1300000/d1.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225540/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225540/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225540/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://120.221.5.167:8089/PLTV/88888888/224/3221225540/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226767/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226929/index.m3u8
-#EXTINF:-1 ,辽宁卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226141/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ahwshd/1300000/d1.m3u8
-#EXTINF:-1 ,安徽卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ahws/1300000/d1.m3u8
-#EXTINF:-1 ,安徽卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221225974/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225974/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225974/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://120.221.5.167:8089/PLTV/88888888/224/3221225974/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226856/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226931/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226196/index.m3u8
-#EXTINF:-1 ,安徽卫视
-http://183.207.248.71/gitv/live1/AHWS/AHWS
-#EXTINF:-1 ,东南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dnwshd/1300000/d1.m3u8
-#EXTINF:-1 ,东南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dnws/1300000/d1.m3u8
-#EXTINF:-1 ,东南卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225964/index.m3u8
-#EXTINF:-1 ,东南卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225964/index.m3u8
-#EXTINF:-1 ,东南卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225964/index.m3u8
-#EXTINF:-1 ,东南卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221225964/index.m3u8
-#EXTINF:-1 ,东南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226784/index.m3u8
-#EXTINF:-1 ,青海卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qhws/1300000/d1.m3u8
-#EXTINF:-1 ,青海卫视
-http://live.geermurmt.com/qhws/sd/live.m3u8
-#EXTINF:-1 ,青海卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221225958/index.m3u8
-#EXTINF:-1 ,青海卫视
-http://ivi.bupt.edu.cn/hls/qhtv.m3u8
-#EXTINF:-1 ,青海卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225628/index.m3u8
-#EXTINF:-1 ,青海卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226889/index.m3u8
-#EXTINF:-1 ,青海卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226016/index.m3u8
-#EXTINF:-1 ,云南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ynws/1300000/d1.m3u8
-#EXTINF:-1 ,云南卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226031/index.m3u8
-#EXTINF:-1 ,云南卫视
-http://ivi.bupt.edu.cn/hls/yntv.m3u8
-#EXTINF:-1 ,云南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226816/index.m3u8
-#EXTINF:-1 ,云南卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225636/index.m3u8
-#EXTINF:-1 ,云南卫视
-https://hwapi.yunshicloud.com/62hdvf/41hse3_sd.m3u8
-#EXTINF:-1 ,云南卫视
-https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8
-#EXTINF:-1 ,江西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jxwshd/1300000/d1.m3u8
-#EXTINF:-1 ,江西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jxws/1300000/d1.m3u8
-#EXTINF:-1 ,江西卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225939/index.m3u8
-#EXTINF:-1 ,江西卫视
-http://120.221.44.101:8089/PLTV/88888888/224/3221225939/index.m3u8
-#EXTINF:-1 ,江西卫视
-http://120.221.5.111:8089/PLTV/88888888/224/3221225939/index.m3u8
-#EXTINF:-1 ,江西卫视
-http://120.221.44.103:8089/PLTV/88888888/224/3221225939/index.m3u8
-#EXTINF:-1 ,江西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226788/index.m3u8
-#EXTINF:-1 ,江西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226142/index.m3u8
-#EXTINF:-1 ,河南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hnws/1300000/d1.m3u8
-#EXTINF:-1 ,河南卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226041/index.m3u8
-#EXTINF:-1 ,河南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226791/index.m3u8
-#EXTINF:-1 ,河南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226018/index.m3u8
-#EXTINF:-1 ,河南卫视
-http://112.50.243.8/PLTV/88888888/224/3221225842/1.m3u8
-#EXTINF:-1 ,河南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226146/index.m3u8
-#EXTINF:-1 ,陕西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/sxws/1300000/d1.m3u8
-#EXTINF:-1 ,陕西卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226035/index.m3u8
-#EXTINF:-1 ,陕西卫视
-http://ivi.bupt.edu.cn/hls/sxtv.m3u8
-#EXTINF:-1 ,陕西卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225625/index.m3u8
-#EXTINF:-1 ,陕西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226892/index.m3u8
-#EXTINF:-1 ,陕西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226021/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jlws/1300000/d1.m3u8
-#EXTINF:-1 ,吉林卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221225960/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225960/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://120.221.5.167:8089/PLTV/88888888/224/3221225960/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221225960/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226806/index.m3u8
-#EXTINF:-1 ,吉林卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225637/index.m3u8
-#EXTINF:-1 ,广西卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gxws/1300000/d1.m3u8
-#EXTINF:-1 ,广西卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226037/index.m3u8
-#EXTINF:-1 ,广西卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225622/index.m3u8
-#EXTINF:-1 ,广西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226830/index.m3u8
-#EXTINF:-1 ,广西卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226002/index.m3u8
-#EXTINF:-1 ,广西卫视
-http://112.50.243.8/PLTV/88888888/224/3221225836/1.m3u8
-#EXTINF:-1 ,西藏卫视
-http://keonline.shanghai.liveplay.qq.com:80/live/program/live/xzws/2500000/d1.m3u8
-#EXTINF:-1 ,西藏卫视
-http://120.221.5.101:8089/PLTV/88888888/224/3221225857/index.m3u8
-#EXTINF:-1 ,西藏卫视
-http://120.221.5.175:8089/PLTV/88888888/224/3221225857/index.m3u8
-#EXTINF:-1 ,西藏卫视
-http://ivi.bupt.edu.cn/hls/xztv.m3u8
-#EXTINF:-1 ,西藏卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225638/index.m3u8
-#EXTINF:-1 ,西藏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226896/index.m3u8
-#EXTINF:-1 ,西藏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226025/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/nmgws/1300000/d1.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://live.m2oplus.nmtv.cn/1/sd/live.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221226033/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225634/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226886/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226022/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://112.50.243.8/PLTV/88888888/224/3221225846/1.m3u8
-#EXTINF:-1 ,四川卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/scws/1300000/d1.m3u8
-#EXTINF:-1 ,四川卫视
-http://120.221.5.113:8089/PLTV/88888888/224/3221225956/index.m3u8
-#EXTINF:-1 ,四川卫视
-http://ivi.bupt.edu.cn/hls/sctv.m3u8
-#EXTINF:-1 ,四川卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225621/index.m3u8
-#EXTINF:-1 ,四川卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226810/index.m3u8
-#EXTINF:-1 ,四川卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226000/index.m3u8
-#EXTINF:-1 ,宁夏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226804/index.m3u8
-#EXTINF:-1 ,宁夏卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225632/index.m3u8
-#EXTINF:-1 ,宁夏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226034/index.m3u8
-#EXTINF:-1 ,宁夏卫视
-http://112.50.243.8/PLTV/88888888/224/3221225849/1.m3u8
-#EXTINF:-1 ,宁夏卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226154/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/gsws/1300000/d1.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221225994/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225994/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221225994/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://120.221.44.111:8089/PLTV/88888888/224/3221225994/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://stream.gstv.com.cn/gsws/sd/live.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225633/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226875/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226033/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/cqws/1300000/d1.m3u8
-#EXTINF:-1 ,重庆卫视
-http://120.221.44.111:8089/PLTV/88888888/224/3221225952/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://120.221.44.101:8089/PLTV/88888888/224/3221225952/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://120.221.5.111:8089/PLTV/88888888/224/3221225952/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://120.221.44.103:8089/PLTV/88888888/224/3221225952/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226868/index.m3u8
-#EXTINF:-1 ,重庆卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226005/index.m3u8
-#EXTINF:-1 ,重庆卫视
-https://onsitecdn.cbgcloud.com/76btqk/d6tb4v.m3u8
-#EXTINF:-1 ,新疆卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xjws/1300000/d1.m3u8
-#EXTINF:-1 ,新疆卫视
-http://120.221.5.105:8089/PLTV/88888888/224/3221226073/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221226073/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://120.221.5.167:8089/PLTV/88888888/224/3221226073/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://120.221.5.109:8089/PLTV/88888888/224/3221226073/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://ivi.bupt.edu.cn/hls/xjtv.m3u8
-#EXTINF:-1 ,新疆卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225635/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226893/index.m3u8
-#EXTINF:-1 ,新疆卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226026/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/lyws/1300000/d1.m3u8
-#EXTINF:-1 ,海南卫视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225872/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225872/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221225872/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221225872/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226801/index.m3u8
-#EXTINF:-1 ,海南卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225639/index.m3u8
-#EXTINF:-1 ,兵团卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/btws/1300000/d1.m3u8
-#EXTINF:-1 ,兵团卫视
-http://livewjq.chinamcache.com/live/wjq3.m3u8
-#EXTINF:-1 ,兵团卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226859/index.m3u8
-#EXTINF:-1 ,兵团卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226028/index.m3u8
-#EXTINF:-1 ,兵团卫视
-http://ivi.bupt.edu.cn/hls/bttv.m3u8
-#EXTINF:-1 ,兵团卫视
-http://112.50.243.8/PLTV/88888888/224/3221226950/1.m3u8
-#EXTINF:-1 ,厦门卫视
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamen_2/index.m3u8
-#EXTINF:-1 ,厦门卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xmws/1300000/d1.m3u8
-#EXTINF:-1 ,厦门卫视
-http://ivi.bupt.edu.cn/hls/xmtv.m3u8
-#EXTINF:-1 ,厦门卫视
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226803/index.m3u8
-#EXTINF:-1 ,厦门卫视
-http://112.50.243.8/PLTV/88888888/224/3221226781/1.m3u8
-#EXTINF:-1 ,厦门卫视
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamen4_2/index.m3u8
-#EXTINF:-1 ,厦门卫视
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamen3_2/index.m3u8
-#EXTINF:-1 ,厦门卫视
-http://cstvpull.live.wscdns.com/live/xiamen.flv
-#EXTINF:-1 ,厦门卫视
-http://cstvpull.live.wscdns.com/live/xiamen4.flv
-#EXTINF:-1 ,厦门卫视
-http://183.207.248.71/gitv/live1/G_XIAMEN/G_XIAMEN
-#EXTINF:-1 ,厦门卫视
-http://cstvpull.live.wscdns.com/live/xiamen3.flv
-#EXTINF:-1 ,厦门卫视
-http://39.134.168.76/PLTV/1/224/3221225640/index.m3u8
-#EXTINF:-1 ,三沙卫视
-http://ivi.bupt.edu.cn/hls/sstv.m3u8
-#EXTINF:-1 ,三沙卫视
-http://112.50.243.8:80/PLTV/88888888/224/3221227002/1.m3u8
-#EXTINF:-1 ,三沙卫视
-http://39.130.215.158:6610/gitv_live/G_SANSHA/G_SANSHA.m3u8
-#EXTINF:-1 ,延边卫视
-http://live.ybtvyun.com/video/s10006-44f040627ca1/index.m3u8
-#EXTINF:-1 ,延边卫视
-http://live.ybtvyun.com/video/s10016-6f0dfd97912f/index.m3u8
-#EXTINF:-1 ,延边卫视
-http://183.207.248.71/gitv/live1/G_YANBIAN/G_YANBIAN
-#EXTINF:-1 ,延边卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226220/1.m3u8
-#EXTINF:-1 ,康巴卫视
-http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8
-#EXTINF:-1 ,康巴卫视
-http://stream.kangbatv.com/test/playlist.m3u8
-#EXTINF:-1 ,康巴卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225660/index.m3u8
-#EXTINF:-1 ,康巴卫视
-http://112.50.243.8/PLTV/88888888/224/3221225856/1.m3u8
-#EXTINF:-1 ,康巴卫视
-http://scgctvshow.sctv.com/sdlive/kangba/1.m3u8
-#EXTINF:-1 ,康巴卫视
-http://39.134.65.162/PLTV/88888888/224/3221225527/index.m3u8
-#EXTINF:-1 ,康巴卫视
-http://183.207.248.71/gitv/live1/G_KANGBA/G_KANGBA
-#EXTINF:-1 ,康巴卫视
-http://39.130.215.158:6610/gitv_live/G_KANGBA/G_KANGBA.m3u8
-#EXTINF:-1 ,康巴卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8
-#EXTINF:-1 ,康巴卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226316/1.m3u8
-#EXTINF:-1 ,安徽影视
-http://zbbf2.ahtv.cn/live/756.m3u8
-#EXTINF:-1 ,北京影视
-http://ivi.bupt.edu.cn/hls/btv4hd.m3u8
-#EXTINF:-1 ,北京影视
-http://ivi.bupt.edu.cn/hls/btv4.m3u8
-#EXTINF:-1 ,福州影视
-http://live.zohi.tv/video/s10001-yspd-2/index.m3u8
-#EXTINF:-1 ,岭南戏曲
-http://szlive.grtn.cn/lnxq/sd/live.m3u8
-#EXTINF:-1 ,河北影视剧
-http://weblive.hebtv.com/live/hbys_bq/index.m3u8
-#EXTINF:-1 ,河北影视剧
-http://live5.plus.hebtv.com/hbys/sd/live.m3u8
-#EXTINF:-1 ,河北影视剧
-http://live01.hebtv.com/channels/hebtv/video_channel_06/m3u8:800k/live
-#EXTINF:-1 ,河北影视剧
-http://live01.hebtv.com/channels/hebtv/video_channel_06/m3u8:500k/live
-#EXTINF:-1 ,河北影视剧
-http://weblive.hebtv.com/live/hbys_lc/index.m3u8
-#EXTINF:-1 ,河北影视剧
-https://jwplay.hebyun.com.cn/live/hbystv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北影视剧
-http://hbry.chinashadt.com:1938/live/1011.stream_360p/playlist.m3u8
-#EXTINF:-1 ,哈尔滨影视
-http://39.134.65.162/PLTV/88888888/224/3221225700/index.m3u8
-#EXTINF:-1 ,哈尔滨影视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225760/index.m3u8
-#EXTINF:-1 ,湖北影视
-http://live.cjyun.org/hubeitv/s10008-live-hbys.m3u8
-#EXTINF:-1 ,武汉电视剧
-http://stream.appwuhan.com/2tzb/sd/live.m3u8
-#EXTINF:-1 ,长沙影视频道
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8
-#EXTINF:-1 ,长沙影视频道
-https://hls.quklive.com/live/1551749282880742/index.m3u8
-#EXTINF:-1 ,江苏影视
-http://183.207.248.71/gitv/live1/G_JSYS/G_JSYS
-#EXTINF:-1 ,辽宁影视剧
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226738/index.m3u8
-#EXTINF:-1 ,山东影视
-http://120.221.44.107:8089/PLTV/88888888/224/3221225802/index.m3u8
-#EXTINF:-1 ,山东影视
-http://120.221.5.165:8089/PLTV/88888888/224/3221225802/index.m3u8
-#EXTINF:-1 ,山东影视
-http://120.221.44.109:8089/PLTV/88888888/224/3221225802/index.m3u8
-#EXTINF:-1 ,山东影视
-http://120.221.44.109:8089/PLTV/88888888/224/3221226044/index.m3u8
-#EXTINF:-1 ,临沂图文频道
-https://36773.hlsplay.aodianyun.com/tv_radio_36773/tv_channel_1245.m3u8
-#EXTINF:-1 ,商河影视频道
-https://jsylivealone302.iqilu.com/live/shanghe_tv02/index.m3u8
-#EXTINF:-1 ,商河影视频道
-https://livealone302.iqilu.com/live/shanghe_tv02/index.m3u8
-#EXTINF:-1 ,都市剧场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjchd/2300000/d1.m3u8
-#EXTINF:-1 ,都市剧场HD
-http://39.134.176.148/PLTV/88888888/224/3221226825/index.m3u8
-#EXTINF:-1 ,欢笑剧场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hxjchd/2300000/d1.m3u8
-#EXTINF:-1 ,欢笑剧场HD
-http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8
-#EXTINF:-1 ,东方影视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpd/1300000/d1.m3u8
-#EXTINF:-1 ,都市剧场
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjc/1300000/d1.m3u8
-#EXTINF:-1 ,都市剧场
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226037/index.m3u8
-#EXTINF:-1 ,都市剧场
-http://39.134.168.76/PLTV/1/224/3221225616/index.m3u8
-#EXTINF:-1 ,欢笑剧场
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hxjc/1300000/d1.m3u8
-#EXTINF:-1 ,四川影视文艺
-http://scgctvshow.sctv.com/hdlive/sctv5/1.m3u8
-#EXTINF:-1 ,广元影视频道
-http://3g.dzsm.com/streamer/gy02/gy02-500.m3u8
-#EXTINF:-1 ,广元影视频道
-http://3g.dzsm.com/streamer/gy02.m3u8
-#EXTINF:-1 ,昆明影视综艺
-http://wshls.live.migucloud.com/live/KYLNJWFD_C0_2/playlist.m3u8
-#EXTINF:-1 ,昆明影视综艺
-http://39.130.215.158:6610/gitv_live/G_KMTV-5/G_KMTV-5.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://ali-m-l.cztv.com/channels/lantian/channel05/1080p.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://hw-m-l.cztv.com/channels/lantian/channel005/1080p.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://yd-m-l.cztv.com/channels/lantian/channel005/1080p.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://hw-m-l.cztv.com/channels/lantian/channel05/360p.m3u8
-#EXTINF:-1 ,杭州影视
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229377/index.m3u8
-#EXTINF:-1 ,CIBN军事
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221228143/index.m3u8
-#EXTINF:-1 ,四海钓鱼
-http://120.221.5.177:8089/PLTV/88888888/224/3221225976/index.m3u8
-#EXTINF:-1 ,四海钓鱼
-http://120.221.5.111:8089/PLTV/88888888/224/3221225976/index.m3u8
-#EXTINF:-1 ,四海钓鱼
-http://120.221.5.113:8089/PLTV/88888888/224/3221225976/index.m3u8
-#EXTINF:-1 ,四海钓鱼
-http://39.134.176.148/PLTV/88888888/224/3221226533/index.m3u8
-#EXTINF:-1 ,弈坛春秋
-http://183.207.248.71/gitv/live1/G_YITANCQ/G_YITANCQ
-#EXTINF:-1 ,弈坛春秋
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8
-#EXTINF:-1 ,高尔夫频道
-http://szlive.grtn.cn/grfpd/sd/live.m3u8
-#EXTINF:-1 ,高尔夫频道
-http://183.207.248.71/gitv/live1/G_GAOERFU/G_GAOERFU
-#EXTINF:-1 ,高尔夫频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8
-#EXTINF:-1 ,快乐垂钓
-http://112.50.243.8:80/PLTV/88888888/224/3221226940/1.m3u8
-#EXTINF:-1 ,快乐垂钓
-http://hnml.chinashadt.com:2036/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,快乐垂钓
-http://hnml.chinashadt.com:2036/live/2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,江苏体育休闲
-http://183.207.248.71/gitv/live1/G_JSTY/G_JSTY
-#EXTINF:-1 ,吉林篮球
-http://183.207.248.71/gitv/live1/G_KAOSHIZX/G_KAOSHIZX
-#EXTINF:-1 ,吉林篮球
-http://183.207.248.71/gitv/live1/G_LANQIU/G_LANQIU
-#EXTINF:-1 ,吉林篮球
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8
-#EXTINF:-1 ,辽宁体育
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226764/index.m3u8
-#EXTINF:-1 ,辽宁体育
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226783/index.m3u8
-#EXTINF:-1 ,电子体育
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226871/index.m3u8
-#EXTINF:-1 ,网络棋牌
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226770/index.m3u8
-#EXTINF:-1 ,游戏竞技
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226813/index.m3u8
-#EXTINF:-1 ,陕西体育休闲
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226363/1.m3u8
-#EXTINF:-1 ,山东体育
-http://120.221.5.113:8089/PLTV/88888888/224/3221226075/index.m3u8
-#EXTINF:-1 ,山东体育
-http://120.221.5.177:8089/PLTV/88888888/224/3221226003/index.m3u8
-#EXTINF:-1 ,山东体育
-http://120.221.44.109:8089/PLTV/88888888/224/3221226003/index.m3u8
-#EXTINF:-1 ,山东体育
-http://120.221.5.167:8089/PLTV/88888888/224/3221226075/index.m3u8
-#EXTINF:-1 ,五星体育HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/2300000/d1.m3u8
-#EXTINF:-1 ,游戏风云HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/yxfyhd/2300000/d1.m3u8
-#EXTINF:-1 ,游戏风云HD
-http://112.50.243.8:80/PLTV/88888888/224/3221226912/1.m3u8
-#EXTINF:-1 ,游戏风云HD
-http://39.134.176.148/PLTV/88888888/224/3221226726/index.m3u8
-#EXTINF:-1 ,劲爆体育HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jbtyhd/2300000/d1.m3u8
-#EXTINF:-1 ,魅力足球HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/mlyyhd/2300000/d1.m3u8
-#EXTINF:-1 ,新视觉HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xsjhd/2300000/d1.m3u8
-#EXTINF:-1 ,五星体育
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/1300000/d1.m3u8
-#EXTINF:-1 ,劲爆体育
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jbty/1300000/d1.m3u8
-#EXTINF:-1 ,游戏风云
-http://keonline.shanghai.liveplay.qq.com/live/program/live/yxfy/1300000/d1.m3u8
-#EXTINF:-1 ,游戏风云
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226003/index.m3u8
-#EXTINF:-1 ,游戏风云
-http://39.134.168.76/PLTV/1/224/3221225608/index.m3u8
-#EXTINF:-1 ,求索纪录HD
-http://39.134.65.162/PLTV/88888888/224/3221225713/index.m3u8
-#EXTINF:-1 ,求索纪录HD
-http://39.134.176.148/PLTV/88888888/224/3221226610/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225675/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://183.207.248.71/cntv/live1/wmyx/wmyx
-#EXTINF:-1 ,黑莓电竞
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225712/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225713/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://112.50.243.8/PLTV/88888888/224/3221225894/1.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://112.50.243.8/PLTV/88888888/224/3221226676/1.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://112.50.243.8/PLTV/88888888/224/3221226680/1.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://39.134.65.162/PLTV/88888888/224/3221225559/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://39.134.65.162/PLTV/88888888/224/3221225633/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://39.134.65.162/PLTV/88888888/224/3221225640/index.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://117.169.120.98:8080/ysten-businessmobile/live/wmyx/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225669/index.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://112.50.243.8/PLTV/88888888/224/3221225877/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://39.134.65.162/PLTV/88888888/224/3221225533/index.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://117.169.120.98:8080/ysten-businessmobile/live/aiqingxj/1.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://39.134.176.148/PLTV/88888888/224/3221226660/index.m3u8
-#EXTINF:-1 ,NewTV爱情喜剧
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225523/1.m3u8
-#EXTINF:-1 ,NewTV超级电影
-http://112.50.243.8/PLTV/88888888/224/3221225804/1.m3u8
-#EXTINF:-1 ,NewTV超级电影
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225717/index.m3u8
-#EXTINF:-1 ,NewTV超级电影
-http://112.50.243.8/PLTV/88888888/224/3221225926/1.m3u8
-#EXTINF:-1 ,NewTV超级电影
-http://39.134.65.162/PLTV/88888888/224/3221225644/index.m3u8
-#EXTINF:-1 ,NewTV超级电影
-http://117.169.120.98:8080/ysten-businessmobile/live/HD-8000k-1080P-NEWTV06/1.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://112.50.243.8/PLTV/88888888/224/3221225803/1.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225715/index.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://112.50.243.8/PLTV/88888888/224/3221225925/1.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://39.134.65.162/PLTV/88888888/224/3221225635/index.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://117.169.120.98:8080/ysten-businessmobile/live/HD-8000k-1080P-NEWTV05/1.m3u8
-#EXTINF:-1 ,NewTV超级体育
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225545/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://112.50.243.8/PLTV/88888888/224/3221225801/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225714/index.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://112.50.243.8/PLTV/88888888/224/3221225924/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://39.134.65.162/PLTV/88888888/224/3221225642/index.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://117.169.120.98:8080/ysten-businessmobile/live/HD-8000k-1080P-NEWTV03/1.m3u8
-#EXTINF:-1 ,NewTV超级综艺
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225546/1.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225685/index.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆
-http://112.50.243.8/PLTV/88888888/224/3221226107/1.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆
-http://39.134.65.162/PLTV/88888888/224/3221225542/index.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆
-http://39.134.176.148/PLTV/88888888/224/3221226666/index.m3u8
-#EXTINF:-1 ,NewTV潮妈辣婆
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225809/1.m3u8
-#EXTINF:-1 ,NewTV东北热剧
-http://39.134.65.162/PLTV/88888888/224/3221225679/index.m3u8
-#EXTINF:-1 ,NewTV东北热剧
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225741/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://39.134.65.162/PLTV/88888888/224/3221225683/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225662/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://183.207.248.71/cntv/live1/donghuawg/donghuawg
-#EXTINF:-1 ,黑莓动画
-http://112.50.243.8/PLTV/88888888/224/3221225878/1.m3u8
-#EXTINF:-1 ,黑莓动画
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225744/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://39.134.65.162/PLTV/88888888/224/3221225529/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://117.169.120.98:8080/ysten-businessmobile/live/donghuawg/1.m3u8
-#EXTINF:-1 ,黑莓动画
-http://39.134.176.148/PLTV/88888888/224/3221226654/index.m3u8
-#EXTINF:-1 ,黑莓动画
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225516/1.m3u8
-#EXTINF:-1 ,NewTV动作电影
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225661/index.m3u8
-#EXTINF:-1 ,NewTV动作电影
-http://112.50.243.8/PLTV/88888888/224/3221225879/1.m3u8
-#EXTINF:-1 ,NewTV动作电影
-http://39.134.65.162/PLTV/88888888/224/3221225555/index.m3u8
-#EXTINF:-1 ,NewTV动作电影
-http://117.169.120.98:8080/ysten-businessmobile/live/dongzuody/1.m3u8
-#EXTINF:-1 ,NewTV动作电影
-http://39.134.176.148/PLTV/88888888/224/3221226747/index.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225663/index.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://112.50.243.8/PLTV/88888888/224/3221225880/1.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://39.134.65.162/PLTV/88888888/224/3221225524/index.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://117.169.120.98:8080/ysten-businessmobile/live/guzhuangjc/1.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://39.134.176.148/PLTV/88888888/224/3221226753/index.m3u8
-#EXTINF:-1 ,NewTV古装剧场
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225521/1.m3u8
-#EXTINF:-1 ,NewTV欢乐剧场
-http://39.134.65.162/PLTV/88888888/224/3221225682/index.m3u8
-#EXTINF:-1 ,NewTV欢乐剧场
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225742/index.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225671/index.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://39.134.65.162/PLTV/88888888/224/3221225521/index.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://117.169.120.98:8080/ysten-businessmobile/live/xiqumd/1.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://39.134.176.148/PLTV/88888888/224/3221226662/index.m3u8
-#EXTINF:-1 ,NewTV海外剧场
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225519/1.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225673/index.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://112.50.243.8/PLTV/88888888/224/3221225883/1.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://39.134.65.162/PLTV/88888888/224/3221225571/index.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://117.169.120.98:8080/ysten-businessmobile/live/ljiankangyouyue/1.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://39.134.176.148/PLTV/88888888/224/3221226757/index.m3u8
-#EXTINF:-1 ,NewTV健康有约
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225531/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225676/index.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://112.50.243.8/PLTV/88888888/224/3221225887/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://39.134.65.162/PLTV/88888888/224/3221225560/index.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://117.169.120.98:8080/ysten-businessmobile/live/junlvjc/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://39.134.176.148/PLTV/88888888/224/3221226682/index.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225518/1.m3u8
-#EXTINF:-1 ,NewTV军旅剧场
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225529/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225670/index.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://112.50.243.8/PLTV/88888888/224/3221225889/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://39.134.65.162/PLTV/88888888/224/3221225536/index.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://117.169.120.98:8080/ysten-businessmobile/live/jdaju/1.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://39.134.176.148/PLTV/88888888/224/3221226668/index.m3u8
-#EXTINF:-1 ,NewTV精品大剧
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225533/1.m3u8
-#EXTINF:-1 ,黑莓电影
-http://39.134.65.162/PLTV/88888888/224/3221225681/index.m3u8
-#EXTINF:-1 ,黑莓电影
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225667/index.m3u8
-#EXTINF:-1 ,黑莓电影
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225743/index.m3u8
-#EXTINF:-1 ,黑莓电影
-http://112.50.243.8/PLTV/88888888/224/3221225891/1.m3u8
-#EXTINF:-1 ,黑莓电影
-http://39.134.65.162/PLTV/88888888/224/3221225523/index.m3u8
-#EXTINF:-1 ,黑莓电影
-http://117.169.120.98:8080/ysten-businessmobile/live/jdianying/1.m3u8
-#EXTINF:-1 ,黑莓电影
-http://39.134.176.148/PLTV/88888888/224/3221226755/index.m3u8
-#EXTINF:-1 ,黑莓电影
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226008/1.m3u8
-#EXTINF:-1 ,黑莓电影
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225530/1.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225672/index.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://112.50.243.8/PLTV/88888888/224/3221225888/1.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://39.134.65.162/PLTV/88888888/224/3221225545/index.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://117.169.120.98:8080/ysten-businessmobile/live/jingpinjl/1.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://39.134.176.148/PLTV/88888888/224/3221226735/index.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://39.134.176.148/PLTV/88888888/224/3221226763/index.m3u8
-#EXTINF:-1 ,NewTV精品纪录
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225514/1.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225674/index.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://112.50.243.8/PLTV/88888888/224/3221225886/1.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://39.134.65.162/PLTV/88888888/224/3221225526/index.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://117.169.120.98:8080/ysten-businessmobile/live/jtiyu/1.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://39.134.176.148/PLTV/88888888/224/3221226819/index.m3u8
-#EXTINF:-1 ,NewTV精品体育
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225566/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225666/index.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://112.50.243.8/PLTV/88888888/224/3221225884/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://39.134.65.162/PLTV/88888888/224/3221225525/index.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://117.169.120.98:8080/ysten-businessmobile/live/saishijx/1.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://39.134.176.148/PLTV/88888888/224/3221226749/index.m3u8
-#EXTINF:-1 ,NewTV金牌综艺
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225504/1.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225668/index.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://112.50.243.8/PLTV/88888888/224/3221225890/1.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://39.134.65.162/PLTV/88888888/224/3221225535/index.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://117.169.120.98:8080/ysten-businessmobile/live/junshipl/1.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://39.134.176.148/PLTV/88888888/224/3221226658/index.m3u8
-#EXTINF:-1 ,NewTV军事评论
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225512/1.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225665/index.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑
-http://39.134.65.162/PLTV/88888888/224/3221225553/index.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑
-http://117.169.120.98:8080/ysten-businessmobile/live/jingsongxy/1.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑
-http://39.134.176.148/PLTV/88888888/224/3221226656/index.m3u8
-#EXTINF:-1 ,NewTV惊悚悬疑
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225503/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225677/index.m3u8
-#EXTINF:-1 ,NewTV家庭剧场
-http://112.50.243.8/PLTV/88888888/224/3221225882/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场
-http://39.134.65.162/PLTV/88888888/224/3221225538/index.m3u8
-#EXTINF:-1 ,NewTV家庭剧场
-http://117.169.120.98:8080/ysten-businessmobile/live/jiatingjc/1.m3u8
-#EXTINF:-1 ,NewTV家庭剧场
-http://39.134.176.148/PLTV/88888888/224/3221226642/index.m3u8
-#EXTINF:-1 ,NewTV明星大片
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225664/index.m3u8
-#EXTINF:-1 ,NewTV明星大片
-http://39.134.65.162/PLTV/88888888/224/3221225550/index.m3u8
-#EXTINF:-1 ,NewTV明星大片
-http://117.169.120.98:8080/ysten-businessmobile/live/mingxingdp/1.m3u8
-#EXTINF:-1 ,NewTV明星大片
-http://39.134.176.148/PLTV/88888888/224/3221226751/index.m3u8
-#EXTINF:-1 ,NewTV农业致富
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225683/index.m3u8
-#EXTINF:-1 ,NewTV农业致富
-http://39.134.65.162/PLTV/88888888/224/3221225552/index.m3u8
-#EXTINF:-1 ,NewTV农业致富
-http://117.169.120.98:8080/ysten-businessmobile/live/nongyezf/1.m3u8
-#EXTINF:-1 ,NewTV农业致富
-http://39.134.176.148/PLTV/88888888/224/3221226664/index.m3u8
-#EXTINF:-1 ,NewTV农业致富
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225505/1.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225680/index.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://112.50.243.8/PLTV/88888888/224/3221225895/1.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://39.134.65.162/PLTV/88888888/224/3221225547/index.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://117.169.120.98:8080/ysten-businessmobile/live/SD-1500k-576P-bokesen/1.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://39.134.176.148/PLTV/88888888/224/3221226737/index.m3u8
-#EXTINF:-1 ,NewTV世界搏击
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225496/1.m3u8
-#EXTINF:-1 ,NewTV炫舞未来
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225719/index.m3u8
-#EXTINF:-1 ,NewTV炫舞未来
-http://112.50.243.8/PLTV/88888888/224/3221226699/1.m3u8
-#EXTINF:-1 ,NewTV炫舞未来
-http://39.134.65.162/PLTV/88888888/224/3221225646/index.m3u8
-#EXTINF:-1 ,NewTV炫舞未来
-http://39.134.176.148/PLTV/88888888/224/3221226817/index.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225681/index.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://112.50.243.8/PLTV/88888888/224/3221225896/1.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://39.134.65.162/PLTV/88888888/224/3221225604/index.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://117.169.120.98:8080/ysten-businessmobile/live/SD-1500k-576P-gzkongfu/1.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://39.134.176.148/PLTV/88888888/224/3221226759/index.m3u8
-#EXTINF:-1 ,NewTV中国功夫
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧
-http://112.50.243.8/PLTV/88888888/224/3221225806/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225716/index.m3u8
-#EXTINF:-1 ,NewTV超级电视剧
-http://112.50.243.8/PLTV/88888888/224/3221225928/1.m3u8
-#EXTINF:-1 ,NewTV超级电视剧
-http://39.134.65.162/PLTV/88888888/224/3221225637/index.m3u8
-#EXTINF:-1 ,NewTV超级电视剧
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225543/1.m3u8
-#EXTINF:-1 ,光影
-http://120.221.5.177:8089/PLTV/88888888/224/3221225854/index.m3u8
-#EXTINF:-1 ,光影
-http://120.221.5.113:8089/PLTV/88888888/224/3221225854/index.m3u8
-#EXTINF:-1 ,武术频道
-http://120.221.5.105:8089/PLTV/88888888/224/3221225996/index.m3u8
-#EXTINF:-1 ,武术频道
-http://120.221.44.107:8089/PLTV/88888888/224/3221225996/index.m3u8
-#EXTINF:-1 ,武术频道
-http://120.221.5.165:8089/PLTV/88888888/224/3221225996/index.m3u8
-#EXTINF:-1 ,武术频道
-http://120.221.5.107:8089/PLTV/88888888/224/3221225996/index.m3u8
-#EXTINF:-1 ,IPTV5+
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226342/1.m3u8
-#EXTINF:-1 ,IPTV5+
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226345/1.m3u8
-#EXTINF:-1 ,IPTV6+
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226343/1.m3u8
-#EXTINF:-1 ,IPTV8+
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226344/1.m3u8
-#EXTINF:-1 ,古装剧场
-http://120.221.5.177:8089/PLTV/88888888/224/3221226057/index.m3u8
-#EXTINF:-1 ,古装剧场
-http://120.221.5.111:8089/PLTV/88888888/224/3221226057/index.m3u8
-#EXTINF:-1 ,古装剧场
-http://120.221.5.113:8089/PLTV/88888888/224/3221226057/index.m3u8
-#EXTINF:-1 ,家庭影院
-http://120.221.5.177:8089/PLTV/88888888/224/3221226055/index.m3u8
-#EXTINF:-1 ,家庭影院
-http://120.221.5.111:8089/PLTV/88888888/224/3221226055/index.m3u8
-#EXTINF:-1 ,家庭影院
-http://120.221.5.113:8089/PLTV/88888888/224/3221226055/index.m3u8
-#EXTINF:-1 ,喜剧影院
-http://120.221.5.177:8089/PLTV/88888888/224/3221225927/index.m3u8
-#EXTINF:-1 ,喜剧影院
-http://120.221.5.113:8089/PLTV/88888888/224/3221225927/index.m3u8
-#EXTINF:-1 ,音乐现场
-http://120.221.5.111:8089/PLTV/88888888/224/3221226059/index.m3u8
-#EXTINF:-1 ,音乐现场
-http://120.221.5.113:8089/PLTV/88888888/224/3221226059/index.m3u8
-#EXTINF:-1 ,IPTV少儿动画
-http://120.221.5.113:8089/PLTV/88888888/224/3221225929/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://keonline.shanghai.liveplay.qq.com/live/program/live/kkkt/1300000/d1.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://120.221.5.177:8089/PLTV/88888888/224/3221225880/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://120.221.44.101:8089/PLTV/88888888/224/3221225880/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://120.221.44.111:8089/PLTV/88888888/224/3221225880/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://120.221.5.111:8089/PLTV/88888888/224/3221225880/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225654/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226010/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://112.50.243.8/PLTV/88888888/224/3221225871/1.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226157/index.m3u8
-#EXTINF:-1 ,北京卡酷少儿
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226620/index.m3u8
-#EXTINF:-1 ,福州少儿
-http://live.zohi.tv/video/s10001-sepd-4/index.m3u8
-#EXTINF:-1 ,甘肃少儿频道
-http://stream.gstv.com.cn/sepd/sd/live.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jjkt/1300000/d1.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226011/index.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://183.207.248.71/gitv/live1/G_JIAJIA/G_JIAJIA
-#EXTINF:-1 ,嘉佳卡通
-http://39.134.168.76/PLTV/1/224/3221225644/index.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226744/index.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://39.134.176.148/PLTV/88888888/224/3221226461/index.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://39.130.215.158:6610/gitv_live/G_JIAJIA/G_JIAJIA.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8
-#EXTINF:-1 ,河北少儿科教
-http://weblive.hebtv.com/live/hbse_bq/index.m3u8
-#EXTINF:-1 ,河北少儿科教
-http://live5.plus.hebtv.com/sekj/sd/live.m3u8
-#EXTINF:-1 ,河北少儿科教
-http://live01.hebtv.com/channels/hebtv/video_channel_07/m3u8:800k/live
-#EXTINF:-1 ,河北少儿科教
-http://live01.hebtv.com/channels/hebtv/video_channel_07/m3u8:500k/live
-#EXTINF:-1 ,河北少儿科教
-http://weblive.hebtv.com/live/hbse_lc/index.m3u8
-#EXTINF:-1 ,河北少儿科教
-https://jwplay.hebyun.com.cn/live/hbsrtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,武汉少儿频道
-http://stream.appwuhan.com/7tzb/sd/live.m3u8
-#EXTINF:-1 ,优漫卡通
-http://120.221.44.107:8089/PLTV/88888888/224/3221225970/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://120.221.5.165:8089/PLTV/88888888/224/3221225970/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://120.221.5.107:8089/PLTV/88888888/224/3221225970/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://120.221.5.177:8089/PLTV/88888888/224/3221225970/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226768/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225656/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://112.50.243.8/PLTV/88888888/224/3221225874/1.m3u8
-#EXTINF:-1 ,优漫卡通
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226149/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://39.134.65.162/PLTV/88888888/224/3221225556/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://183.207.248.71/gitv/live1/G_YOUMAN/G_YOUMAN
-#EXTINF:-1 ,优漫卡通
-http://111.63.117.13:6060/030000001000/G_YOUMAN/G_YOUMAN.m3u8
-#EXTINF:-1 ,优漫卡通
-http://117.169.120.98:8080/ysten-businessmobile/live/youmankaton/1.m3u8
-#EXTINF:-1 ,南京少儿
-http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,新动漫
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226818/index.m3u8
-#EXTINF:-1 ,内蒙古少儿频道
-http://live5.m2oplus.nmtv.cn/4/sd/live.m3u8
-#EXTINF:-1 ,山东少儿
-http://120.221.5.113:8089/PLTV/88888888/224/3221226195/index.m3u8
-#EXTINF:-1 ,山东少儿
-http://120.221.5.105:8089/PLTV/88888888/224/3221226001/index.m3u8
-#EXTINF:-1 ,山东少儿
-http://120.221.5.175:8089/PLTV/88888888/224/3221226001/index.m3u8
-#EXTINF:-1 ,山东少儿
-http://120.221.44.107:8089/PLTV/88888888/224/3221226001/index.m3u8
-#EXTINF:-1 ,动漫秀场HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dmxchd/2300000/d1.m3u8
-#EXTINF:-1 ,动漫秀场HD
-http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xdkt/1300000/d1.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://120.221.5.105:8089/PLTV/88888888/224/3221225972/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://120.221.44.107:8089/PLTV/88888888/224/3221225972/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://120.221.5.165:8089/PLTV/88888888/224/3221225972/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://120.221.5.107:8089/PLTV/88888888/224/3221225972/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225657/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://112.50.243.8/PLTV/88888888/224/3221225872/1.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://39.134.65.162/PLTV/88888888/224/3221225534/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://39.134.168.76/PLTV/1/224/3221225606/index.m3u8
-#EXTINF:-1 ,哈哈炫动
-http://183.207.248.71/gitv/live1/G_XUANDONG/G_XUANDONG
-#EXTINF:-1 ,哈哈炫动
-http://117.169.120.98:8080/ysten-businessmobile/live/xuandongkaton/1.m3u8
-#EXTINF:-1 ,动漫秀场
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dmxc/1300000/d1.m3u8
-#EXTINF:-1 ,动漫秀场
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221225996/index.m3u8
-#EXTINF:-1 ,动漫秀场
-http://39.134.168.76/PLTV/1/224/3221225596/index.m3u8
-#EXTINF:-1 ,浙江少儿
-http://ali-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8
-#EXTINF:-1 ,浙江少儿
-http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8
-#EXTINF:-1 ,浙江少儿
-http://yd-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8
-#EXTINF:-1 ,浙江少儿
-http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8
-#EXTINF:-1 ,浙江少儿
-http://hw-m-l.cztv.com/channels/lantian/channel08/360p.m3u8
-#EXTINF:-1 ,杭州少儿
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229316/index.m3u8
-#EXTINF:-1 ,北京文艺HD
-http://ivi.bupt.edu.cn/hls/btv2hd.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://39.134.65.162/PLTV/88888888/224/3221225670/index.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://39.134.65.162/PLTV/88888888/224/3221225693/index.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225729/index.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225756/index.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://ivi.bupt.edu.cn/hls/btv11hd.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226730/index.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://117.169.120.98:8080/ysten-businessmobile/live/HD-8000k-1080P-beijingjishi/1.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://39.130.215.143:6610/gitv_live/G_BEIJINGJS-HD/G_BEIJINGJS-HD.m3u8
-#EXTINF:-1 ,北京冬奥纪实HD
-http://39.134.176.148/PLTV/88888888/224/3221226746/index.m3u8
-#EXTINF:-1 ,北京文艺
-http://ivi.bupt.edu.cn/hls/btv2.m3u8
-#EXTINF:-1 ,北京科教
-http://ivi.bupt.edu.cn/hls/btv3.m3u8
-#EXTINF:-1 ,北京财经
-http://ivi.bupt.edu.cn/hls/btv5.m3u8
-#EXTINF:-1 ,北京生活
-http://ivi.bupt.edu.cn/hls/btv7.m3u8
-#EXTINF:-1 ,北京青年
-http://ivi.bupt.edu.cn/hls/btv8.m3u8
-#EXTINF:-1 ,北京新闻
-http://ivi.bupt.edu.cn/hls/btv9hd.m3u8
-#EXTINF:-1 ,北京新闻
-http://ivi.bupt.edu.cn/hls/btv9.m3u8
-#EXTINF:-1 ,中国交通北京
-http://tv.lanjingfm.com/cctbn/beijing.m3u8
-#EXTINF:-1 ,中国交通北京
-http://183.207.248.71/gitv/live1/G_ZHONGGUOJT/G_ZHONGGUOJT
-#EXTINF:-1 ,中国交通北京
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226248/1.m3u8
-#EXTINF:-1 ,新娱乐
-http://183.207.248.71/gitv/live1/G_XINYULE/G_XINYULE
-#EXTINF:-1 ,新娱乐
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8
-#EXTINF:-1 ,车迷频道
-http://39.134.176.148/PLTV/88888888/224/3221226837/index.m3u8
-#EXTINF:-1 ,优优宝贝
-http://39.134.176.148/PLTV/88888888/224/3221226829/index.m3u8
-#EXTINF:-1 ,爱家购物
-http://tvlive.siqiangame.com/ugotvlive/aijiatv.m3u8?auth_key=1860547259-0-0-77940e9d27746d1ae88f7d31e81191d0
-#EXTINF:-1 ,京视剧场
-http://183.207.248.71/gitv/live1/G_JINGJU/G_JINGJU
-#EXTINF:-1 ,京视剧场
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8
-#EXTINF:-1 ,中华特产
-http://play.zhtctv.cn/portal/btv.m3u8
-#EXTINF:-1 ,置业频道
-http://183.207.248.71/gitv/live1/G_ZHIYE/G_ZHIYE
-#EXTINF:-1 ,通州电视台
-http://pull.dayuntongzhou.com/live/tztv.m3u8
-#EXTINF:-1 ,房山无线频道
-http://live.funhillrm.com/2/sd/live.m3u8
-#EXTINF:-1 ,房山有线频道
-http://live.funhillrm.com/5/sd/live.m3u8
-#EXTINF:-1 ,朝阳有线
-http://cbnlive.cbchot.com/live/ChaoYangYouXian_1.m3u8
-#EXTINF:-1 ,顺义电视
-http://livesydst.chinamcache.com/sydst/zb02.m3u8?auth_key=1617760534-0-0-ef412cb540374882cba8c638a5487436
-#EXTINF:-1 ,清华大学电视台
-http://v.cic.tsinghua.edu.cn/hls/tsinghuatv.m3u8
-#EXTINF:-1 ,滨海新闻
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/tianjinbh_2/index.m3u8
-#EXTINF:-1 ,滨海新闻
-http://cstvpull.live.wscdns.com/live/tianjinbh.flv
-#EXTINF:-1 ,滨海新闻
-http://60.30.52.41:80/live/bhtv1/playlist.m3u8
-#EXTINF:-1 ,滨海综艺
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/tianjinbh2_2/index.m3u8
-#EXTINF:-1 ,滨海综艺
-http://cstvpull.live.wscdns.com/live/tianjinbh2.flv
-#EXTINF:-1 ,滨海综艺
-http://60.30.52.41:80/live/bhtv2/playlist.m3u8
-#EXTINF:-1 ,蓟州新闻综合
-http://pili-live-rtmp.181.i2863.com/i2863-181/dspdzb1.m3u8
-#EXTINF:-1 ,宁河新闻频道
-http://wshls.live.migucloud.com:80/live/RQXD0636_C0/playlist.m3u8
-#EXTINF:-1 ,西青新闻综合
-http://221.238.209.44:81/hls/live1.m3u8
-#EXTINF:-1 ,南开综合频道
-http://live.nankai.tjrmtzx.com/live/nankai.m3u8
-#EXTINF:-1 ,东丽综合频道
-http://live.dongli.tjrmtzx.com/live/dltv.m3u8
-#EXTINF:-1 ,山东齐鲁
-http://120.221.5.165:8089/PLTV/88888888/224/3221225868/index.m3u8
-#EXTINF:-1 ,山东齐鲁
-http://120.221.5.107:8089/PLTV/88888888/224/3221225868/index.m3u8
-#EXTINF:-1 ,山东齐鲁
-http://120.221.5.177:8089/PLTV/88888888/224/3221225868/index.m3u8
-#EXTINF:-1 ,山东齐鲁
-http://120.221.5.165:8089/PLTV/88888888/224/3221226045/index.m3u8
-#EXTINF:-1 ,山东农科
-http://120.221.5.175:8089/PLTV/88888888/224/3221226018/index.m3u8
-#EXTINF:-1 ,山东农科
-http://120.221.5.165:8089/PLTV/88888888/224/3221225870/index.m3u8
-#EXTINF:-1 ,山东农科
-http://120.221.44.107:8089/PLTV/88888888/224/3221226018/index.m3u8
-#EXTINF:-1 ,山东农科
-http://120.221.5.177:8089/PLTV/88888888/224/3221225870/index.m3u8
-#EXTINF:-1 ,山东公共
-http://120.221.5.113:8089/PLTV/88888888/224/3221226077/index.m3u8
-#EXTINF:-1 ,山东公共
-http://120.221.5.175:8089/PLTV/88888888/224/3221226077/index.m3u8
-#EXTINF:-1 ,山东公共
-http://120.221.44.107:8089/PLTV/88888888/224/3221226077/index.m3u8
-#EXTINF:-1 ,山东公共
-http://120.221.5.107:8089/PLTV/88888888/224/3221225962/index.m3u8
-#EXTINF:-1 ,山东综艺
-http://120.221.5.113:8089/PLTV/88888888/224/3221226101/index.m3u8
-#EXTINF:-1 ,山东综艺
-http://120.221.44.107:8089/PLTV/88888888/224/3221225855/index.m3u8
-#EXTINF:-1 ,山东综艺
-http://120.221.5.107:8089/PLTV/88888888/224/3221225855/index.m3u8
-#EXTINF:-1 ,山东综艺
-http://120.221.5.177:8089/PLTV/88888888/224/3221225855/index.m3u8
-#EXTINF:-1 ,山东生活
-http://120.221.5.177:8089/PLTV/88888888/224/3221226040/index.m3u8
-#EXTINF:-1 ,山东生活
-http://120.221.44.101:8089/PLTV/88888888/224/3221226040/index.m3u8
-#EXTINF:-1 ,山东生活
-http://120.221.5.101:8089/PLTV/88888888/224/3221225841/index.m3u8
-#EXTINF:-1 ,山东生活
-http://120.221.5.113:8089/PLTV/88888888/224/3221226040/index.m3u8
-#EXTINF:-1 ,山东国际
-http://120.221.44.107:8089/PLTV/88888888/224/3221226047/index.m3u8
-#EXTINF:-1 ,山东国际
-http://120.221.5.165:8089/PLTV/88888888/224/3221226047/index.m3u8
-#EXTINF:-1 ,山东国际
-http://120.221.5.107:8089/PLTV/88888888/224/3221226047/index.m3u8
-#EXTINF:-1 ,山东国际
-http://120.221.5.177:8089/PLTV/88888888/224/3221226047/index.m3u8
-#EXTINF:-1 ,山东居家购物
-http://120.221.5.105:8089/PLTV/88888888/224/3221226051/index.m3u8
-#EXTINF:-1 ,山东居家购物
-http://120.221.44.107:8089/PLTV/88888888/224/3221226051/index.m3u8
-#EXTINF:-1 ,山东居家购物
-http://120.221.5.165:8089/PLTV/88888888/224/3221226051/index.m3u8
-#EXTINF:-1 ,山东居家购物
-http://120.221.5.107:8089/PLTV/88888888/224/3221226051/index.m3u8
-#EXTINF:-1 ,山东居家购物
-http://vod.51lepai.com/live/live.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://120.221.5.165:8089/PLTV/88888888/224/3221226049/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://120.221.5.107:8089/PLTV/88888888/224/3221226049/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://120.221.5.177:8089/PLTV/88888888/224/3221226049/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://120.221.44.109:8089/PLTV/88888888/224/3221226049/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://ivi.bupt.edu.cn/hls/sdetv.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225655/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://112.50.243.8/PLTV/88888888/224/3221225873/1.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://39.134.65.162/PLTV/88888888/224/3221225558/index.m3u8
-#EXTINF:-1 ,山东教育卫视
-http://183.207.248.71/gitv/live1/G_SDETV/G_SDETV
-#EXTINF:-1 ,山东教育卫视
-http://117.169.120.98:8080/ysten-businessmobile/live/shandongjy/1.m3u8
-#EXTINF:-1 ,中华美食
-http://183.207.248.71/gitv/live1/G_ZHONGHUAMS/G_ZHONGHUAMS
-#EXTINF:-1 ,中国交通潍坊
-http://tv.lanjingfm.com/cctbn/weifang.m3u8
-#EXTINF:-1 ,海看4K
-http://120.221.5.105:8089/PLTV/88888888/224/3221225833/index.m3u8
-#EXTINF:-1 ,海看4K
-http://120.221.5.175:8089/PLTV/88888888/224/3221225833/index.m3u8
-#EXTINF:-1 ,海看爱宠
-http://120.221.5.105:8089/PLTV/88888888/224/3221226071/index.m3u8
-#EXTINF:-1 ,海看爱宠
-http://120.221.44.107:8089/PLTV/88888888/224/3221226071/index.m3u8
-#EXTINF:-1 ,海看爱宠
-http://120.221.44.109:8089/PLTV/88888888/224/3221226071/index.m3u8
-#EXTINF:-1 ,海看爱宠
-http://120.221.5.109:8089/PLTV/88888888/224/3221226071/index.m3u8
-#EXTINF:-1 ,海看电竞
-http://120.221.5.165:8089/PLTV/88888888/224/3221225629/index.m3u8
-#EXTINF:-1 ,海看电竞
-http://120.221.5.177:8089/PLTV/88888888/224/3221225629/index.m3u8
-#EXTINF:-1 ,海看电竞
-http://120.221.5.173:8089/PLTV/88888888/224/3221225629/index.m3u8
-#EXTINF:-1 ,海看大片
-http://120.221.5.165:8089/PLTV/88888888/224/3221225632/index.m3u8
-#EXTINF:-1 ,海看大片
-http://120.221.5.177:8089/PLTV/88888888/224/3221225632/index.m3u8
-#EXTINF:-1 ,海看大片
-http://120.221.5.113:8089/PLTV/88888888/224/3221225632/index.m3u8
-#EXTINF:-1 ,海看大片
-http://120.221.5.103:8089/PLTV/88888888/224/3221225632/index.m3u8
-#EXTINF:-1 ,海看剧场
-http://120.221.44.107:8089/PLTV/88888888/224/3221226053/index.m3u8
-#EXTINF:-1 ,海看剧场
-http://120.221.5.165:8089/PLTV/88888888/224/3221226053/index.m3u8
-#EXTINF:-1 ,海看剧场
-http://120.221.5.107:8089/PLTV/88888888/224/3221226053/index.m3u8
-#EXTINF:-1 ,海看剧场
-http://120.221.5.177:8089/PLTV/88888888/224/3221226053/index.m3u8
-#EXTINF:-1 ,海看健康
-http://120.221.5.113:8089/PLTV/88888888/224/3221226039/index.m3u8
-#EXTINF:-1 ,海看教育
-http://120.221.5.113:8089/PLTV/88888888/224/3221225852/index.m3u8
-#EXTINF:-1 ,海看热播
-http://120.221.5.165:8089/PLTV/88888888/224/3221225878/index.m3u8
-#EXTINF:-1 ,海看热播
-http://120.221.5.107:8089/PLTV/88888888/224/3221225878/index.m3u8
-#EXTINF:-1 ,海看热播
-http://120.221.5.177:8089/PLTV/88888888/224/3221225878/index.m3u8
-#EXTINF:-1 ,海看热播
-http://120.221.44.109:8089/PLTV/88888888/224/3221225878/index.m3u8
-#EXTINF:-1 ,海看少儿
-http://120.221.5.175:8089/PLTV/88888888/224/3221225943/index.m3u8
-#EXTINF:-1 ,海看少儿
-http://120.221.44.107:8089/PLTV/88888888/224/3221225943/index.m3u8
-#EXTINF:-1 ,海看少儿
-http://120.221.5.165:8089/PLTV/88888888/224/3221225943/index.m3u8
-#EXTINF:-1 ,海看少儿
-http://120.221.5.107:8089/PLTV/88888888/224/3221225943/index.m3u8
-#EXTINF:-1 ,海看演艺
-http://120.221.5.113:8089/PLTV/88888888/224/3221226027/index.m3u8
-#EXTINF:-1 ,济南新闻
-http://livejntv.chinamcache.com/live/zb01.m3u8
-#EXTINF:-1 ,济南都市
-http://livejntv.chinamcache.com/live/zb02.m3u8
-#EXTINF:-1 ,青岛李沧频道
-http://live.lcqtv.com:88/live/lcqtv.m3u8
-#EXTINF:-1 ,青岛城阳频道
-http://pili-live-rtmp.56.i2863.com/i2863-56/live_56_307317.m3u8
-#EXTINF:-1 ,日照新闻综合
-http://stream.rzw.com.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,日照公共频道
-http://stream.rzw.com.cn/kzpd/sd/live.m3u8
-#EXTINF:-1 ,日照科教频道
-http://stream.rzw.com.cn/ggpd/sd/live.m3u8
-#EXTINF:-1 ,日照导视频道
-http://stream.rzw.com.cn/fcpd/sd/live.m3u8
-#EXTINF:-1 ,临沂新闻综合
-https://36773.hlsplay.aodianyun.com/tv_radio_36773/tv_channel_564.m3u8
-#EXTINF:-1 ,临沂农科频道
-https://36773.hlsplay.aodianyun.com/tv_radio_36773/tv_channel_1244.m3u8
-#EXTINF:-1 ,临沂公共频道
-https://36773.hlsplay.aodianyun.com/tv_radio_36773/tv_channel_1243.m3u8
-#EXTINF:-1 ,枣庄新闻综合
-http://stream.zzgd.tv/1/sd/live.m3u8
-#EXTINF:-1 ,枣庄教育频道
-http://stream.zzgd.tv/2/sd/live.m3u8
-#EXTINF:-1 ,枣庄公共频道
-http://stream.zzgd.tv/3/sd/live.m3u8
-#EXTINF:-1 ,东营综合频道
-http://stream.hhek.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,东营公共频道
-http://stream.hhek.cn/ggpd/sd/live.m3u8
-#EXTINF:-1 ,东营科教频道
-http://stream.hhek.cn/dyjy/sd/live.m3u8
-#EXTINF:-1 ,东营图文频道
-http://stream.hhek.cn/twpd/sd/live.m3u8
-#EXTINF:-1 ,潍坊新闻综合
-http://stream.wfcmw.cn/1/sd/live.m3u8
-#EXTINF:-1 ,潍坊农业频道
-http://stream.wfcmw.cn/2/sd/live.m3u8
-#EXTINF:-1 ,潍坊公共频道
-http://stream.wfcmw.cn/3/sd/live.m3u8
-#EXTINF:-1 ,潍坊科教频道
-http://stream.wfcmw.cn/4/sd/live.m3u8
-#EXTINF:-1 ,潍坊图文频道
-http://stream.wfcmw.cn/wftw/sd/live.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/xwzh_sj/playlist.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/dspd_gq/playlist.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/dspd_sj/playlist.m3u8
-#EXTINF:-1 ,德州公共频道
-http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8
-#EXTINF:-1 ,德州公共频道
-http://video.dztv.tv:1935/live/dzgg_bq/playlist.m3u8
-#EXTINF:-1 ,德州公共频道
-http://video.dztv.tv:1935/live/dzgg_sj/playlist.m3u8
-#EXTINF:-1 ,德州图文频道
-http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8
-#EXTINF:-1 ,德州图文频道
-http://video.dztv.tv:1935/live/dztw_bq/playlist.m3u8
-#EXTINF:-1 ,德州图文频道
-http://video.dztv.tv:1935/live/dztw_sj/playlist.m3u8
-#EXTINF:-1 ,威海综合频道
-https://jsylivealone302.iqilu.com/live/weihai_tv01/index.m3u8
-#EXTINF:-1 ,威海综合频道
-https://livealone302.iqilu.com/live/weihai_tv01/index.m3u8
-#EXTINF:-1 ,威海综合频道
-http://l3.weihai.tv:8081/hls/test.m3u8
-#EXTINF:-1 ,威海公共频道
-http://l3.weihai.tv:8081/hls/nZ93xKu5Ld.m3u8
-#EXTINF:-1 ,威海海洋频道
-https://jsylivealone302.iqilu.com/live/weihai_tv03/index.m3u8
-#EXTINF:-1 ,威海海洋频道
-https://livealone302.iqilu.com/live/weihai_tv03/index.m3u8
-#EXTINF:-1 ,威海海洋频道
-http://l2.weihai.tv:8081/hls/haiyangpd.m3u8
-#EXTINF:-1 ,滨州新闻综合
-http://stream.bzcm.net/2/sd/live.m3u8
-#EXTINF:-1 ,滨州公共电视剧
-http://stream.bzcm.net/1/sd/live.m3u8
-#EXTINF:-1 ,淄博新闻频道
-http://120.221.5.111:8089/PLTV/88888888/224/3221225986/index.m3u8
-#EXTINF:-1 ,淄博新闻频道
-http://120.221.5.113:8089/PLTV/88888888/224/3221225986/index.m3u8
-#EXTINF:-1 ,淄博都市频道
-http://120.221.5.107:8089/PLTV/88888888/224/3221226061/index.m3u8
-#EXTINF:-1 ,淄博都市频道
-http://120.221.5.111:8089/PLTV/88888888/224/3221226061/index.m3u8
-#EXTINF:-1 ,淄博公共频道
-http://120.221.5.165:8089/PLTV/88888888/224/3221226014/index.m3u8
-#EXTINF:-1 ,淄博公共频道
-http://120.221.5.167:8089/PLTV/88888888/224/3221226014/index.m3u8
-#EXTINF:-1 ,淄博公共频道
-http://120.221.44.101:8089/PLTV/88888888/224/3221226014/index.m3u8
-#EXTINF:-1 ,淄博公共频道
-http://120.221.5.111:8089/PLTV/88888888/224/3221226014/index.m3u8
-#EXTINF:-1 ,长清新闻综合
-https://jsylivealone302.iqilu.com/live/changqing_tv01/index.m3u8
-#EXTINF:-1 ,长清新闻综合
-https://livealone302.iqilu.com/live/changqing_tv01/index.m3u8
-#EXTINF:-1 ,长清生活频道
-https://jsylivealone302.iqilu.com/live/changqing_tv02/index.m3u8
-#EXTINF:-1 ,长清生活频道
-https://livealone302.iqilu.com/live/changqing_tv02/index.m3u8
-#EXTINF:-1 ,商河综合频道
-https://jsylivealone302.iqilu.com/live/shanghe_tv01/index.m3u8
-#EXTINF:-1 ,商河综合频道
-https://livealone302.iqilu.com/live/shanghe_tv01/index.m3u8
-#EXTINF:-1 ,章丘综合频道
-https://jsylivealone302.iqilu.com/live/zhangqiu_tv01/index.m3u8
-#EXTINF:-1 ,章丘综合频道
-https://livealone302.iqilu.com/live/zhangqiu_tv01/index.m3u8
-#EXTINF:-1 ,章丘公共频道
-https://jsylivealone302.iqilu.com/live/zhangqiu_tv02/index.m3u8
-#EXTINF:-1 ,章丘公共频道
-https://livealone302.iqilu.com/live/zhangqiu_tv02/index.m3u8
-#EXTINF:-1 ,黄岛新闻综合
-http://qdxmtlive.qwmedia.cn/hdratv-live/xha-xwpd.flv
-#EXTINF:-1 ,黄岛生活财经
-http://qdxmtlive.qwmedia.cn/hdratv-live/xha-fcpd.flv
-#EXTINF:-1 ,即墨新闻综合
-https://jsylivealone302.iqilu.com/live/jimo_tv01/index.m3u8
-#EXTINF:-1 ,即墨新闻综合
-https://livealone302.iqilu.com/live/jimo_tv01/index.m3u8
-#EXTINF:-1 ,即墨生活服务
-https://jsylivealone302.iqilu.com/live/jimo_tv02/index.m3u8
-#EXTINF:-1 ,即墨生活服务
-https://livealone302.iqilu.com/live/jimo_tv02/index.m3u8
-#EXTINF:-1 ,莒县电视一套
-http://61.162.225.122:8181/live/test1.m3u8
-#EXTINF:-1 ,莒县电视二套
-http://61.162.225.122:8181/live/test2.m3u8
-#EXTINF:-1 ,长岛综合频道
-https://jsylivealone302.iqilu.com/live/changdao_tv01/index.m3u8
-#EXTINF:-1 ,长岛综合频道
-https://livealone302.iqilu.com/live/changdao_tv01/index.m3u8
-#EXTINF:-1 ,福山综合频道
-https://jsylivealone302.iqilu.com/live/fushan_tv01/index.m3u8
-#EXTINF:-1 ,福山综合频道
-https://livealone302.iqilu.com/live/fushan_tv01/index.m3u8
-#EXTINF:-1 ,龙口新闻综合
-https://livealone302.iqilu.com/live/longkou_tv01/index.m3u8
-#EXTINF:-1 ,龙口新闻综合
-http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8
-#EXTINF:-1 ,龙口党建频道
-https://jsylivealone302.iqilu.com/live/longkou_tv02/index.m3u8
-#EXTINF:-1 ,龙口生活频道
-https://livealone302.iqilu.com/live/longkou_tv02/index.m3u8
-#EXTINF:-1 ,龙口生活频道
-http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8
-#EXTINF:-1 ,龙口生活频道
-http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8
-#EXTINF:-1 ,莱州综合频道
-https://jsylivealone302.iqilu.com/live/laizhou_tv01/index.m3u8
-#EXTINF:-1 ,莱州综合频道
-https://livealone302.iqilu.com/live/laizhou_tv01/index.m3u8
-#EXTINF:-1 ,莱州商务频道
-https://jsylivealone302.iqilu.com/live/laizhou_tv02/index.m3u8
-#EXTINF:-1 ,莱州商务频道
-https://livealone302.iqilu.com/live/laizhou_tv02/index.m3u8
-#EXTINF:-1 ,蓬莱新闻频道
-https://jsylivealone302.iqilu.com/live/penglai_tv01/index.m3u8
-#EXTINF:-1 ,蓬莱新闻频道
-http://livealone302.iqilu.com/live/penglai_tv01/index.m3u8
-#EXTINF:-1 ,蓬莱综合频道
-https://jsylivealone302.iqilu.com/live/penglai_tv02/index.m3u8
-#EXTINF:-1 ,栖霞市新闻频道
-https://jsylivealone302.iqilu.com/live/qixia_tv01/index.m3u8
-#EXTINF:-1 ,栖霞市新闻频道
-https://livealone302.iqilu.com/live/qixia_tv01/index.m3u8
-#EXTINF:-1 ,栖霞苹果频道
-https://jsylivealone302.iqilu.com/live/qixia_tv02/index.m3u8
-#EXTINF:-1 ,栖霞苹果频道
-https://livealone302.iqilu.com/live/qixia_tv02/index.m3u8
-#EXTINF:-1 ,招远综合频道
-https://livealone302.iqilu.com/zhaoyuan/zhaoyuan_tv01/playlist.m3u8
-#EXTINF:-1 ,招远综艺频道
-https://livealone302.iqilu.com/zhaoyuan/zhaoyuan_tv02/playlist.m3u8
-#EXTINF:-1 ,费县综合频道
-https://jsylivealone302.iqilu.com/live/feixian_tv01/index.m3u8
-#EXTINF:-1 ,费县综合频道
-https://livealone302.iqilu.com/live/feixian_tv01/index.m3u8
-#EXTINF:-1 ,费县生活频道
-https://jsylivealone302.iqilu.com/live/feixian_tv02/index.m3u8
-#EXTINF:-1 ,费县生活频道
-https://livealone302.iqilu.com/live/feixian_tv02/index.m3u8
-#EXTINF:-1 ,河东综合频道
-https://jsylivealone302.iqilu.com/live/hedong_tv02/index.m3u8
-#EXTINF:-1 ,河东综合频道
-https://livealone302.iqilu.com/live/hedong_tv02/index.m3u8
-#EXTINF:-1 ,河东影视频道
-https://jsylivealone302.iqilu.com/live/hedong_tv01/index.m3u8
-#EXTINF:-1 ,河东影视频道
-https://livealone302.iqilu.com/live/hedong_tv01/index.m3u8
-#EXTINF:-1 ,兰陵综合频道
-https://jsylivealone302.iqilu.com/live/lanling_tv01/index.m3u8
-#EXTINF:-1 ,兰陵综合频道
-https://livealone302.iqilu.com/live/lanling_tv01/playlist.m3u8
-#EXTINF:-1 ,兰陵公共频道
-https://jsylivealone302.iqilu.com/live/lanling_tv02/index.m3u8
-#EXTINF:-1 ,兰陵公共频道
-https://livealone302.iqilu.com/live/lanling_tv02/playlist.m3u8
-#EXTINF:-1 ,临沭新闻频道
-https://jsylivealone302.iqilu.com/live/linshu_tv01/index.m3u8
-#EXTINF:-1 ,临沭新闻频道
-https://livealone302.iqilu.com/live/linshu_tv01/index.m3u8
-#EXTINF:-1 ,罗庄新闻综合
-https://jsylivealone302.iqilu.com/live/luozhuang_tv01/index.m3u8
-#EXTINF:-1 ,罗庄新闻综合
-https://livealone302.iqilu.com/live/luozhuang_tv01/playlist.m3u8
-#EXTINF:-1 ,蒙阴综合
-https://jsylivealone302.iqilu.com/live/mengyin_tv01/index.m3u8
-#EXTINF:-1 ,蒙阴综合
-https://livealone302.iqilu.com/live/mengyin_tv01/index.m3u8
-#EXTINF:-1 ,蒙阴二套
-https://jsylivealone302.iqilu.com/live/mengyin_tv02/index.m3u8
-#EXTINF:-1 ,蒙阴二套
-https://livealone302.iqilu.com/live/mengyin_tv02/index.m3u8
-#EXTINF:-1 ,郯城综合频道
-https://jsylivealone302.iqilu.com/live/tancheng_tv01/index.m3u8
-#EXTINF:-1 ,郯城综合频道
-http://livealone302.iqilu.com/live/tancheng_tv01/index.m3u8
-#EXTINF:-1 ,郯城电视二套
-https://jsylivealone302.iqilu.com/live/tancheng_tv02/index.m3u8
-#EXTINF:-1 ,郯城电视二套
-http://livealone302.iqilu.com/live/tancheng_tv02/index.m3u8
-#EXTINF:-1 ,沂南综合频道
-https://jsylivealone302.iqilu.com/live/yinan_tv01/index.m3u8
-#EXTINF:-1 ,沂南综合频道
-https://livealone302.iqilu.com/live/yinan_tv01/index.m3u8
-#EXTINF:-1 ,沂南温泉旅游
-https://jsylivealone302.iqilu.com/live/yinan_tv02/index.m3u8
-#EXTINF:-1 ,沂南温泉旅游
-https://livealone302.iqilu.com/live/yinan_tv02/index.m3u8
-#EXTINF:-1 ,沂水电视一套
-https://jsylivealone302.iqilu.com/live/yishui_tv01/index.m3u8
-#EXTINF:-1 ,沂水电视一套
-https://livealone302.iqilu.com/live/yishui_tv01/index.m3u8
-#EXTINF:-1 ,沂水电视二套
-https://jsylivealone302.iqilu.com/live/yishui_tv02/index.m3u8
-#EXTINF:-1 ,沂水电视二套
-https://livealone302.iqilu.com/live/yishui_tv02/index.m3u8
-#EXTINF:-1 ,济宁高新电视
-http://live.jnhnmcc.com.cn/channel1/sd/live.m3u8
-#EXTINF:-1 ,金乡新闻频道
-http://sdjx.chinashadt.com:2035/live/di2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,金乡新闻频道
-http://sdjx.chinashadt.com:2035/live/di2.stream/playlist.m3u8
-#EXTINF:-1 ,金乡生活频道
-http://sdjx.chinashadt.com:2035/live/di1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,金乡生活频道
-http://sdjx.chinashadt.com:2035/live/di1.stream/playlist.m3u8
-#EXTINF:-1 ,梁山新闻综合
-http://sdls.chinashadt.com:2036/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,任城新闻生活
-https://livealone302.iqilu.com/rencheng/rencheng_tv01/playlist.m3u8
-#EXTINF:-1 ,任城影视娱乐
-https://livealone302.iqilu.com/rencheng/rencheng_tv02/playlist.m3u8
-#EXTINF:-1 ,泗水新闻综合
-https://jsylivealone302.iqilu.com/live/sishui_tv01/index.m3u8
-#EXTINF:-1 ,泗水新闻综合
-https://livealone302.iqilu.com/live/sishui_tv01/index.m3u8
-#EXTINF:-1 ,泗水文化生活
-https://jsylivealone302.iqilu.com/live/sishui_tv02/index.m3u8
-#EXTINF:-1 ,泗水文化生活
-https://livealone302.iqilu.com/live/sishui_tv02/index.m3u8
-#EXTINF:-1 ,微山电视一套
-https://jsylivealone302.iqilu.com/live/weishan_tv02/index.m3u8
-#EXTINF:-1 ,微山电视一套
-https://livealone302.iqilu.com/live/weishan_tv02/playlist.m3u8
-#EXTINF:-1 ,微山电视二套
-https://jsylivealone302.iqilu.com/live/weishan_tv01/index.m3u8
-#EXTINF:-1 ,微山电视二套
-https://livealone302.iqilu.com/live/weishan_tv01/playlist.m3u8
-#EXTINF:-1 ,鱼台综合频道
-https://jsylivealone302.iqilu.com/live/yutai_tv02/index.m3u8
-#EXTINF:-1 ,鱼台综合频道
-http://livealone302.iqilu.com/live/yutai_tv02/index.m3u8
-#EXTINF:-1 ,鱼台生活频道
-https://jsylivealone302.iqilu.com/live/yutai_tv01/index.m3u8
-#EXTINF:-1 ,鱼台生活频道
-http://livealone302.iqilu.com/live/yutai_tv01/index.m3u8
-#EXTINF:-1 ,兖州新闻频道
-https://livealone302.iqilu.com/live/yanzhou_tv01/index.m3u8
-#EXTINF:-1 ,兖州生活频道
-https://jsylivealone302.iqilu.com/live/yanzhou_tv02/index.m3u8
-#EXTINF:-1 ,兖州生活频道
-https://livealone302.iqilu.com/live/yanzhou_tv02/index.m3u8
-#EXTINF:-1 ,邹城新闻综合
-https://jsylivealone302.iqilu.com/live/zoucheng_tv01/index.m3u8
-#EXTINF:-1 ,邹城新闻综合
-https://livealone302.iqilu.com/live/zoucheng_tv01/index.m3u8
-#EXTINF:-1 ,邹城文化生活
-https://jsylivealone302.iqilu.com/live/zoucheng_tv02/index.m3u8
-#EXTINF:-1 ,邹城文化生活
-https://livealone302.iqilu.com/live/zoucheng_tv02/index.m3u8
-#EXTINF:-1 ,成武综合频道
-https://jsylivealone302.iqilu.com/live/chengwu_tv01/index.m3u8
-#EXTINF:-1 ,成武综合频道
-http://livealone302.iqilu.com/live/chengwu_tv01/index.m3u8
-#EXTINF:-1 ,成武综艺频道
-https://jsylivealone302.iqilu.com/live/chengwu_tv02/index.m3u8
-#EXTINF:-1 ,成武综艺频道
-http://livealone302.iqilu.com/live/chengwu_tv02/index.m3u8
-#EXTINF:-1 ,曹县新闻综合
-https://jsylivealone302.iqilu.com/live/caoxian_tv01/index.m3u8
-#EXTINF:-1 ,曹县新闻综合
-http://livealone302.iqilu.com/live/caoxian_tv01/index.m3u8
-#EXTINF:-1 ,东明新闻综合
-https://jsylivealone302.iqilu.com/live/dongming_tv01/index.m3u8
-#EXTINF:-1 ,东明新闻综合
-https://livealone302.iqilu.com/live/dongming_tv01/index.m3u8
-#EXTINF:-1 ,定陶新闻频道
-https://jsylivealone302.iqilu.com/live/dingtao_tv01/index.m3u8
-#EXTINF:-1 ,定陶新闻频道
-https://livealone302.iqilu.com/live/dingtao_tv01/index.m3u8
-#EXTINF:-1 ,定陶综艺频道
-https://jsylivealone302.iqilu.com/live/dingtao_tv02/index.m3u8
-#EXTINF:-1 ,定陶综艺频道
-https://livealone302.iqilu.com/live/dingtao_tv02/index.m3u8
-#EXTINF:-1 ,鄄城综合频道
-https://jsylivealone302.iqilu.com/live/juancheng_tv01/index.m3u8
-#EXTINF:-1 ,鄄城综合频道
-https://livealone302.iqilu.com/live/juancheng_tv01/index.m3u8
-#EXTINF:-1 ,鄄城综艺频道
-https://jsylivealone302.iqilu.com/live/juancheng_tv02/index.m3u8
-#EXTINF:-1 ,鄄城综艺频道
-https://livealone302.iqilu.com/live/juancheng_tv02/index.m3u8
-#EXTINF:-1 ,单县综合频道
-https://jsylivealone302.iqilu.com/live/shanxian_tv01/index.m3u8
-#EXTINF:-1 ,郓城新闻综合
-https://jsylivealone302.iqilu.com/live/yuncheng_tv01/index.m3u8
-#EXTINF:-1 ,郓城新闻综合
-http://livealone302.iqilu.com/live/yuncheng_tv01/index.m3u8
-#EXTINF:-1 ,郓城民生综艺
-https://jsylivealone302.iqilu.com/live/yuncheng_tv02/index.m3u8
-#EXTINF:-1 ,郓城民生综艺
-http://livealone302.iqilu.com/live/yuncheng_tv02/index.m3u8
-#EXTINF:-1 ,滕州综合频道
-https://jsylivealone302.iqilu.com/live/tengzhou_tv01/index.m3u8
-#EXTINF:-1 ,滕州综合频道
-https://livealone302.iqilu.com/live/tengzhou_tv01/index.m3u8
-#EXTINF:-1 ,滕州民生频道
-https://jsylivealone302.iqilu.com/live/tengzhou_tv02/index.m3u8
-#EXTINF:-1 ,滕州民生频道
-https://livealone302.iqilu.com/live/tengzhou_tv02/index.m3u8
-#EXTINF:-1 ,峄城综合频道
-https://jsylivealone302.iqilu.com/live/yicheng_tv01/index.m3u8
-#EXTINF:-1 ,峄城综合频道
-https://livealone302.iqilu.com/live/yicheng_tv01/index.m3u8
-#EXTINF:-1 ,台儿庄新闻综合
-https://jsylivealone302.iqilu.com/live/taierzhuang_tv01/index.m3u8
-#EXTINF:-1 ,台儿庄新闻综合
-https://livealone302.iqilu.com/live/taierzhuang_tv01/index.m3u8
-#EXTINF:-1 ,垦利新闻频道
-http://pili-live-rtmp.43.i2863.com/i2863-43/live_43_541890.m3u8
-#EXTINF:-1 ,利津新闻频道
-http://sdlj.chinashadt.com:2036/live/lijin.stream/playlist.m3u8
-#EXTINF:-1 ,利津文化生活
-http://sdlj.chinashadt.com:2036/live/shenghuo.stream/playlist.m3u8
-#EXTINF:-1 ,潍坊滨海新闻综合
-https://livealone302.iqilu.com/binhai/binhai_tv.m3u8
-#EXTINF:-1 ,昌乐新闻综合
-https://livealone302.iqilu.com/changle/changle_tv01/playlist.m3u8
-#EXTINF:-1 ,昌邑新闻综合
-https://jsylivealone302.iqilu.com/live/changyi_tv01/index.m3u8
-#EXTINF:-1 ,昌邑新闻综合
-https://livealone302.iqilu.com/live/changyi_tv01/index.m3u8
-#EXTINF:-1 ,昌邑经济生活
-https://jsylivealone302.iqilu.com/live/changyi_tv02/index.m3u8
-#EXTINF:-1 ,高密新闻频道
-https://livealone302.iqilu.com/gaomi/gaomi_tv01/playlist.m3u8
-#EXTINF:-1 ,高密党建农科
-https://livealone302.iqilu.com/gaomi/gaomi_tv02/playlist.m3u8
-#EXTINF:-1 ,寒亭综合频道
-https://jsylivealone302.iqilu.com/live/hanting_tv01/index.m3u8
-#EXTINF:-1 ,寒亭综合频道
-http://livealone302.iqilu.com/live/hanting_tv01/index.m3u8
-#EXTINF:-1 ,奎文综合频道
-https://jsylivealone302.iqilu.com/live/kuiwen_tv01/index.m3u8
-#EXTINF:-1 ,奎文综合频道
-http://livealone302.iqilu.com/live/kuiwen_tv01/index.m3u8
-#EXTINF:-1 ,临朐新闻频道
-https://jsylivealone302.iqilu.com/live/linqu_tv01/index.m3u8
-#EXTINF:-1 ,临朐新闻频道
-https://livealone302.iqilu.com/live/linqu_tv01/index.m3u8
-#EXTINF:-1 ,临朐经济生活
-https://jsylivealone302.iqilu.com/live/linqu_tv02/index.m3u8
-#EXTINF:-1 ,临朐经济生活
-https://livealone302.iqilu.com/live/linqu_tv02/index.m3u8
-#EXTINF:-1 ,青州综合频道
-http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8
-#EXTINF:-1 ,青州文化旅游
-http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8
-#EXTINF:-1 ,潍城综合频道
-https://livealone302.iqilu.com/weicheng/weicheng_tv01/playlist.m3u8
-#EXTINF:-1 ,诸城新闻综合
-https://jsyaudiolive302.iqilu.com/live/zhucheng_tv01/index.m3u8
-#EXTINF:-1 ,诸城新闻综合
-http://livealone302.iqilu.com/live/zhucheng_tv01/index.m3u8
-#EXTINF:-1 ,诸城生活娱乐
-https://jsylivealone302.iqilu.com/live/zhucheng_tv02/index.m3u8
-#EXTINF:-1 ,诸城生活娱乐
-http://livealone302.iqilu.com/live/zhucheng_tv02/index.m3u8
-#EXTINF:-1 ,安丘新闻综合
-https://jsylivealone302.iqilu.com/live/anqiu_tv01/index.m3u8
-#EXTINF:-1 ,安丘新闻综合
-https://livealone302.iqilu.com/live/anqiu_tv01/playlist.m3u8
-#EXTINF:-1 ,安丘民生频道
-https://jsylivealone302.iqilu.com/live/anqiu_tv02/index.m3u8
-#EXTINF:-1 ,安丘民生频道
-https://livealone302.iqilu.com/live/anqiu_tv02/playlist.m3u8
-#EXTINF:-1 ,陵城新闻频道
-https://jsylivealone302.iqilu.com/live/lingcheng_tv01/index.m3u8
-#EXTINF:-1 ,陵城新闻频道
-https://livealone302.iqilu.com/live/lingcheng_tv01/index.m3u8
-#EXTINF:-1 ,宁津新闻综合
-https://jsylivealone302.iqilu.com/live/ningjin_tv01/index.m3u8
-#EXTINF:-1 ,宁津新闻综合
-https://livealone302.iqilu.com/live/ningjin_tv01/index.m3u8
-#EXTINF:-1 ,平原新闻频道
-https://livealone302.iqilu.com/pingyuan/pingyuan_tv01/playlist.m3u8
-#EXTINF:-1 ,武城新闻综合
-https://jsylivealone302.iqilu.com/live/wucheng_tv01/index.m3u8
-#EXTINF:-1 ,武城新闻综合
-https://livealone302.iqilu.com/live/wucheng_tv01/index.m3u8
-#EXTINF:-1 ,武城综艺影视
-https://jsylivealone302.iqilu.com/live/wucheng_tv02/index.m3u8
-#EXTINF:-1 ,武城综艺影视
-https://livealone302.iqilu.com/live/wucheng_tv02/index.m3u8
-#EXTINF:-1 ,乳山新闻综合
-https://jsylivealone302.iqilu.com/live/rushan_tv01/index.m3u8
-#EXTINF:-1 ,乳山新闻综合
-http://livealone302.iqilu.com/live/rushan_tv01/index.m3u8
-#EXTINF:-1 ,乳山生活频道
-https://jsylivealone302.iqilu.com/live/rushan_tv02/index.m3u8
-#EXTINF:-1 ,乳山生活频道
-http://livealone302.iqilu.com/live/rushan_tv02/index.m3u8
-#EXTINF:-1 ,文登电视一套
-https://jsylivealone302.iqilu.com/live/wendeng_tv01/index.m3u8
-#EXTINF:-1 ,文登电视一套
-http://livealone302.iqilu.com/live/wendeng_tv01/index.m3u8
-#EXTINF:-1 ,文登电视二套
-https://jsylivealone302.iqilu.com/live/wendeng_tv02/index.m3u8
-#EXTINF:-1 ,文登电视二套
-http://livealone302.iqilu.com/live/wendeng_tv02/index.m3u8
-#EXTINF:-1 ,滨城综合频道
-http://sdbz.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,博兴新闻
-https://jsylivealone302.iqilu.com/live/boxing_tv01/index.m3u8
-#EXTINF:-1 ,博兴新闻
-https://livealone302.iqilu.com/live/boxing_tv01/index.m3u8
-#EXTINF:-1 ,博兴综艺
-https://livealone302.iqilu.com/live/boxing_tv02/index.m3u8
-#EXTINF:-1 ,博兴生活
-https://jsylivealone302.iqilu.com/live/boxing_tv02/index.m3u8
-#EXTINF:-1 ,惠民综合
-https://jsylivealone302.iqilu.com/live/huimin_tv01/index.m3u8
-#EXTINF:-1 ,惠民综合
-https://livealone302.iqilu.com/live/huimin_tv01/index.m3u8
-#EXTINF:-1 ,惠民影视
-https://jsylivealone302.iqilu.com/live/huimin_tv02/index.m3u8
-#EXTINF:-1 ,惠民影视
-https://livealone302.iqilu.com/live/huimin_tv02/index.m3u8
-#EXTINF:-1 ,无棣综合频道
-http://sdwd.chinashadt.com:1935/live/wdzh.stream/playlist.m3u8
-#EXTINF:-1 ,无棣综艺频道
-http://sdwd.chinashadt.com:1935/live/wdzy.stream/playlist.m3u8
-#EXTINF:-1 ,邹平新闻频道
-https://livealone302.iqilu.com/zouping/zouping_tv01/playlist.m3u8
-#EXTINF:-1 ,邹平民生频道
-https://livealone302.iqilu.com/zouping/zouping_tv02/playlist.m3u8
-#EXTINF:-1 ,高青综合频道
-https://livealone302.iqilu.com/gaoqing/gaoqing_tv01/playlist.m3u8
-#EXTINF:-1 ,高青综合频道
-http://120.221.5.105:8089/PLTV/88888888/224/3221225905/index.m3u8
-#EXTINF:-1 ,高青综合频道
-http://120.221.5.175:8089/PLTV/88888888/224/3221225905/index.m3u8
-#EXTINF:-1 ,高青综合频道
-http://120.221.5.165:8089/PLTV/88888888/224/3221225905/index.m3u8
-#EXTINF:-1 ,高青综合频道
-http://120.221.44.109:8089/PLTV/88888888/224/3221225905/index.m3u8
-#EXTINF:-1 ,高青影视频道
-https://livealone302.iqilu.com/gaoqing/gaoqing_tv02/playlist.m3u8
-#EXTINF:-1 ,桓台新闻频道
-https://livealone302.iqilu.com/huantai/huantai_tv01/playlist.m3u8
-#EXTINF:-1 ,桓台影视频道
-https://livealone302.iqilu.com/huantai/huantai_tv02/playlist.m3u8
-#EXTINF:-1 ,临淄新闻综合
-https://jsylivealone302.iqilu.com/live/linzi_tv01/index.m3u8
-#EXTINF:-1 ,临淄新闻综合
-http://livealone302.iqilu.com/live/linzi_tv01/index.m3u8
-#EXTINF:-1 ,临淄生活服务
-https://jsylivealone302.iqilu.com/live/linzi_tv02/index.m3u8
-#EXTINF:-1 ,临淄生活服务
-http://livealone302.iqilu.com/live/linzi_tv02/index.m3u8
-#EXTINF:-1 ,沂源新闻频道
-https://jsylivealone302.iqilu.com/live/yiyuan_tv01/index.m3u8
-#EXTINF:-1 ,沂源新闻频道
-https://livealone302.iqilu.com/live/yiyuan_tv01/index.m3u8
-#EXTINF:-1 ,沂源生活频道
-https://jsylivealone302.iqilu.com/live/yiyuan_tv02/index.m3u8
-#EXTINF:-1 ,沂源生活频道
-https://livealone302.iqilu.com/live/yiyuan_tv02/index.m3u8
-#EXTINF:-1 ,茌平综合频道
-https://jsylivealone302.iqilu.com/live/chiping_tv01/index.m3u8
-#EXTINF:-1 ,茌平综合频道
-https://livealone302.iqilu.com/live/chiping_tv01/index.m3u8
-#EXTINF:-1 ,茌平生活频道
-https://jsylivealone302.iqilu.com/live/chiping_tv02/index.m3u8
-#EXTINF:-1 ,茌平生活频道
-https://livealone302.iqilu.com/live/chiping_tv02/index.m3u8
-#EXTINF:-1 ,东昌综合频道
-http://sddc.chinashadt.com:1936/live/gonggong.stream/playlist.m3u8
-#EXTINF:-1 ,临清综合频道
-https://livealone302.iqilu.com/linqing/linqing_tv01/playlist.m3u8
-#EXTINF:-1 ,临清经济信息
-https://jsylivealone302.iqilu.com/live/linqing_tv02/index.m3u8
-#EXTINF:-1 ,临清经济信息
-http://livealone302.iqilu.com/live/linqing_tv02/index.m3u8
-#EXTINF:-1 ,岱岳综合频道
-http://222.132.191.115:8083/videos/live/10/33/3hQrd4b1jKuEk/3hQrd4b1jKuEk.M3U8
-#EXTINF:-1 ,宁阳综合频道
-https://jsylivealone302.iqilu.com/live/ningyang_tv01/index.m3u8
-#EXTINF:-1 ,宁阳综合频道
-http://livealone302.iqilu.com/live/ningyang_tv01/index.m3u8
-#EXTINF:-1 ,宁阳电视二套
-https://jsylivealone302.iqilu.com/live/ningyang_tv02/index.m3u8
-#EXTINF:-1 ,宁阳电视二套
-http://livealone302.iqilu.com/live/ningyang_tv02/index.m3u8
-#EXTINF:-1 ,新泰综合频道
-http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8
-#EXTINF:-1 ,新泰综合频道
-http://111.17.214.12:1935/live/xtzh/playlist.m3u8
-#EXTINF:-1 ,新泰综合频道
-http://119.184.188.117:1935/live/xtzh/playlist.m3u8
-#EXTINF:-1 ,新泰乡村频道
-http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8
-#EXTINF:-1 ,新泰乡村频道
-http://111.17.214.12:1935/live/xtxc/playlist.m3u8
-#EXTINF:-1 ,哈尔滨新闻综合
-http://39.134.65.162/PLTV/88888888/224/3221225684/index.m3u8
-#EXTINF:-1 ,哈尔滨新闻综合
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225745/index.m3u8
-#EXTINF:-1 ,哈尔滨资讯
-http://39.134.65.162/PLTV/88888888/224/3221225697/index.m3u8
-#EXTINF:-1 ,哈尔滨资讯
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225761/index.m3u8
-#EXTINF:-1 ,哈尔滨生活
-http://39.134.65.162/PLTV/88888888/224/3221225698/index.m3u8
-#EXTINF:-1 ,哈尔滨生活
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225762/index.m3u8
-#EXTINF:-1 ,哈尔滨娱乐
-http://39.134.65.162/PLTV/88888888/224/3221225699/index.m3u8
-#EXTINF:-1 ,哈尔滨娱乐
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225759/index.m3u8
-#EXTINF:-1 ,大庆新闻综合
-https://34532.hlsplay.aodianyun.com/tv_radio_34532/tv_channel_1190.m3u8
-#EXTINF:-1 ,大庆新闻综合
-http://39.134.65.162/PLTV/88888888/224/3221225736/index.m3u8
-#EXTINF:-1 ,大庆新闻综合
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225768/index.m3u8
-#EXTINF:-1 ,大庆公共
-https://34532.hlsplay.aodianyun.com/tv_radio_34532/tv_channel_1224.m3u8
-#EXTINF:-1 ,大庆公共
-http://39.134.65.162/PLTV/88888888/224/3221225734/index.m3u8
-#EXTINF:-1 ,大庆公共
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225767/index.m3u8
-#EXTINF:-1 ,大庆教育
-https://34532.hlsplay.aodianyun.com/tv_radio_34532/tv_channel_1517.m3u8
-#EXTINF:-1 ,大庆教育
-http://39.134.65.162/PLTV/88888888/224/3221225731/index.m3u8
-#EXTINF:-1 ,大庆教育
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225784/index.m3u8
-#EXTINF:-1 ,牡丹江新闻
-http://42098.hlsplay.aodianyun.com/tv_radio_42098/tv_channel_1315.m3u8
-#EXTINF:-1 ,牡丹江公共
-http://42098.hlsplay.aodianyun.com/tv_radio_42098/tv_channel_1547.m3u8
-#EXTINF:-1 ,牡丹江教育
-http://42098.hlsplay.aodianyun.com/tv_radio_42098/tv_channel_1546.m3u8
-#EXTINF:-1 ,鹤岗新闻综合
-http://218.10.43.24:81/live/157ba509813644ea400e7c552b934d93/high/live.m3u8
-#EXTINF:-1 ,鹤岗公共频道
-http://218.10.43.24:81/live/bdac590a43b11a837c716a5ad606e95f/high/live.m3u8
-#EXTINF:-1 ,七台河矿区电视台
-http://wshls.live.migucloud.com/live/ZTAHOF05_C0/playlist.m3u8
-#EXTINF:-1 ,中国交通吉林
-http://tv.lanjingfm.com/cctbn/jilin.m3u8
-#EXTINF:-1 ,长春综合
-http://hls.quklive.com/live/1533884104787794/index.m3u8
-#EXTINF:-1 ,长春综合
-http://stream.chinactv.com/ctv1/sd/live.m3u8
-#EXTINF:-1 ,长春综合
-http://stream2.jlntv.cn/jlcc/sd/live.m3u8
-#EXTINF:-1 ,长春娱乐
-http://stream.chinactv.com/ctv2/sd/live.m3u8
-#EXTINF:-1 ,长春市民
-http://stream.chinactv.com/ctv3/sd/live.m3u8
-#EXTINF:-1 ,长春经济
-http://stream.chinactv.com/ctv4/sd/live.m3u8
-#EXTINF:-1 ,长春汽车
-http://stream.chinactv.com/ctv5/sd/live.m3u8
-#EXTINF:-1 ,延边朝鲜语综合
-http://live.ybtvyun.com/video/s10006-b571c289a478/index.m3u8
-#EXTINF:-1 ,延边朝鲜语综合
-http://live.ybtvyun.com/video/s10016-19a16c47eb99/index.m3u8
-#EXTINF:-1 ,延边汉语综合
-http://live.ybtvyun.com/video/s10006-04819ee234a7/index.m3u8
-#EXTINF:-1 ,延边汉语综合
-http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8
-#EXTINF:-1 ,通化新闻
-http://stream2.jlntv.cn/tonghua1/sd/live.m3u8
-#EXTINF:-1 ,吉林市新闻综合
-http://living.muzhifm.com/jilinshi/jl_v_zonghe.m3u8?auth_key=1683944014-0-0-727c3c424b12e5c4484b0e7cecfef774
-#EXTINF:-1 ,吉林市新闻综合
-http://stream2.jlntv.cn/jilin1/sd/live.m3u8
-#EXTINF:-1 ,吉林市公共频道
-http://living.muzhifm.com/jilinshi/jl_v_kejiao.m3u8?auth_key=1683944014-0-0-5ad77c5c1580cbf942639e90352d520b
-#EXTINF:-1 ,吉林市科教频道
-http://living.muzhifm.com/jilinshi/jl_v_gonggong.m3u8?auth_key=1683944014-0-0-d715901b852b7cb2dc1f9e14018deadb
-#EXTINF:-1 ,四平新闻综合
-http://stream2.jlntv.cn/sptv/sd/live.m3u8
-#EXTINF:-1 ,辽源新闻综合
-http://stream2.jlntv.cn/liaoyuan1/sd/live.m3u8
-#EXTINF:-1 ,松原新闻综合
-http://stream2.jlntv.cn/sytv/sd/live.m3u8
-#EXTINF:-1 ,松原公共频道
-http://stream8.jlntv.cn/sytv2/sd/live.m3u8
-#EXTINF:-1 ,延吉新闻综合
-http://tplay.mlink.tv/live/fjlx3BIQ.m3u8
-#EXTINF:-1 ,榆树综合频道
-http://stream.zhystv.com/yset/sd/live.m3u8
-#EXTINF:-1 ,榆树综艺频道
-http://stream.zhystv.com/ysyt/sd/live.m3u8
-#EXTINF:-1 ,敦化一套
-http://live.dhtv.tv/channel1/sd/live.m3u8
-#EXTINF:-1 ,敦化二套
-http://live.dhtv.tv/channel2/sd/live.m3u8
-#EXTINF:-1 ,珲春新闻综合
-http://tplay.mlink.tv/live/fhsy3KNU.m3u8
-#EXTINF:-1 ,梅河口综合
-http://stream4.jlntv.cn/mhk/sd/live.m3u8
-#EXTINF:-1 ,农安新闻综合
-http://stream2.jlntv.cn/naxw/sd/live.m3u8
-#EXTINF:-1 ,磐石综合
-http://stream5.jlntv.cn/ps/sd/live.m3u8
-#EXTINF:-1 ,东丰综合
-http://stream5.jlntv.cn/df/sd/live.m3u8
-#EXTINF:-1 ,双辽综合
-http://stream5.jlntv.cn/sl/sd/live.m3u8
-#EXTINF:-1 ,集安综合频道
-http://stream2.jlntv.cn/ja/sd/live.m3u8
-#EXTINF:-1 ,柳河综合
-http://stream5.jlntv.cn/lh/sd/live.m3u8
-#EXTINF:-1 ,辽宁经济
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226863/index.m3u8
-#EXTINF:-1 ,辽宁经济
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226735/index.m3u8
-#EXTINF:-1 ,辽宁都市
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226760/index.m3u8
-#EXTINF:-1 ,辽宁都市
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226860/index.m3u8
-#EXTINF:-1 ,辽宁宜佳购物
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226884/index.m3u8
-#EXTINF:-1 ,辽宁教育青少
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226763/index.m3u8
-#EXTINF:-1 ,辽宁教育青少
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226847/index.m3u8
-#EXTINF:-1 ,辽宁生活
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226761/index.m3u8
-#EXTINF:-1 ,辽宁生活
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226850/index.m3u8
-#EXTINF:-1 ,辽宁生活
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226678/index.m3u8
-#EXTINF:-1 ,辽宁公共
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226766/index.m3u8
-#EXTINF:-1 ,辽宁北方
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226755/index.m3u8
-#EXTINF:-1 ,辽宁大众影视HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888888/224/3221226752/index.m3u8
-#EXTINF:-1 ,辽宁家庭剧场HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226740/index.m3u8
-#EXTINF:-1 ,辽宁家庭影院HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226723/index.m3u8
-#EXTINF:-1 ,辽宁卡通剧场HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226717/index.m3u8
-#EXTINF:-1 ,辽宁纪录片
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226798/index.m3u8
-#EXTINF:-1 ,辽宁译制片
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226901/index.m3u8
-#EXTINF:-1 ,辽宁古装剧场
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226790/index.m3u8
-#EXTINF:-1 ,辽宁怀旧电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226857/index.m3u8
-#EXTINF:-1 ,辽宁户外旅游
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226880/index.m3u8
-#EXTINF:-1 ,辽宁劲爆电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226756/index.m3u8
-#EXTINF:-1 ,辽宁经典剧场
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226833/index.m3u8
-#EXTINF:-1 ,辽宁家庭影院
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226883/index.m3u8
-#EXTINF:-1 ,辽宁热播电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226827/index.m3u8
-#EXTINF:-1 ,辽宁喜剧电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226762/index.m3u8
-#EXTINF:-1 ,辽宁原声电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226904/index.m3u8
-#EXTINF:-1 ,辽宁亚洲电影
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226898/index.m3u8
-#EXTINF:-1 ,家庭理财
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226754/index.m3u8
-#EXTINF:-1 ,家庭理财
-http://183.207.248.71/gitv/live1/G_JIATINGLC/G_JIATINGLC
-#EXTINF:-1 ,家庭理财
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226244/1.m3u8
-#EXTINF:-1 ,鞍山新闻综合
-http://live2.asbctv.com:8134/hls-live/livepkgr/_definst_/liveevent/as1WWgkg7BUAuviwiBSRerOdiivJig0wcmE3Un0XSVLav-Tr1.m3u8
-#EXTINF:-1 ,鞍山图文频道
-http://live2.asbctv.com:8134/hls-live/livepkgr/_definst_/liveevent/3GtPeVD2t6OWb3SFZxUQL6FW0X7ojmndKJS9fdRjpdhgB71.m3u8
-#EXTINF:-1 ,铁岭综合频道
-https://hwapi.yunshicloud.com/4783fv/m071a7.m3u8
-#EXTINF:-1 ,辽阳新闻频道
-http://lssplay.tcgqxx.com:280/qxdq/5a604500e9111.m3u8?auth_key=1831618560-2875f891cf7b1ca600b902263d3af6b0
-#EXTINF:-1 ,辽阳公共频道
-http://lssplay.tcgqxx.com:280/qxdq/5a60491a9e371.m3u8?auth_key=1831619610-379e3954000750d9285d87f20337b613
-#EXTINF:-1 ,辽阳教科频道
-http://lssplay.tcgqxx.com:280/qxdq/5a6049403b86c.m3u8?auth_key=1831619648-e8ffb6a1e5cb544f03bf3aba746638da
-#EXTINF:-1 ,营口新闻频道
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226849/index.m3u8
-#EXTINF:-1 ,绥中综合频道
-http://pl1.cloud.dayang.com.cn/live/10062_j75NZc.m3u8
-#EXTINF:-1 ,昌图综合频道
-https://live.changtutv.com/channel/synthesize.m3u8?auth_key=1897879451-0-0-c0c18e975682afc054d0ae0f861a9e8f
-#EXTINF:-1 ,昌图经济生活
-http://live.changtutv.com/channel/life.m3u8?auth_key=1543426196-f3b159145ed356ed8cd6ea40514eb7e7-0-76f97f7f8c448385eb1daea95485cef1
-#EXTINF:-1 ,金普新闻综合
-https://33684.hlsplay.aodianyun.com/tv_radio_33684/tv_channel_1066.m3u8
-#EXTINF:-1 ,海城一套
-http://123.246.201.81:9000/live/wl0.m3u8
-#EXTINF:-1 ,海城二套
-http://123.246.201.81:9000/live/wl1.m3u8
-#EXTINF:-1 ,海城三套
-http://123.246.201.81:9000/live/wl2.m3u8
-#EXTINF:-1 ,海城四套
-http://123.246.201.81:9000/live/wl3.m3u8
-#EXTINF:-1 ,农林卫视
-http://183.207.248.71/gitv/live1/G_NONGLIN/G_NONGLIN
-#EXTINF:-1 ,农林卫视
-http://39.130.215.158:6610/gitv_live/G_NONGLIN/G_NONGLIN.m3u8
-#EXTINF:-1 ,农林卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8
-#EXTINF:-1 ,农林卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226317/1.m3u8
-#EXTINF:-1 ,陕西新闻资讯
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226357/1.m3u8
-#EXTINF:-1 ,陕西都市青春
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226358/1.m3u8
-#EXTINF:-1 ,陕西生活频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226359/1.m3u8
-#EXTINF:-1 ,陕西影视频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226360/1.m3u8
-#EXTINF:-1 ,陕西乐家购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226362/1.m3u8
-#EXTINF:-1 ,陕西西部电影
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226364/1.m3u8
-#EXTINF:-1 ,西安新闻综合
-http://stream2.xiancity.cn/xatv1/sd/live.m3u8
-#EXTINF:-1 ,西安白鸽都市
-http://stream2.xiancity.cn/xatv2/sd/live.m3u8
-#EXTINF:-1 ,西安白鸽都市
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226367/1.m3u8
-#EXTINF:-1 ,西安商务资讯
-http://stream2.xiancity.cn/xatv3/sd/live.m3u8
-#EXTINF:-1 ,西安商务资讯
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226368/1.m3u8
-#EXTINF:-1 ,西安文化影视
-http://stream2.xiancity.cn/xatv4/sd/live.m3u8
-#EXTINF:-1 ,西安文化影视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226369/1.m3u8
-#EXTINF:-1 ,西安丝路频道
-http://stream2.xiancity.cn/xatv5/sd/live.m3u8
-#EXTINF:-1 ,西安音乐综艺
-http://stream2.xiancity.cn/xatv6/sd/live.m3u8
-#EXTINF:-1 ,西安移动电视
-http://stream2.xiancity.cn/xatv7/sd/live.m3u8
-#EXTINF:-1 ,西安教育频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226371/1.m3u8
-#EXTINF:-1 ,渭南新闻综合
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226376/1.m3u8
-#EXTINF:-1 ,安康新闻频道
-http://pili-live-hls.hsyapp.sobeylingyun.com/xjhsyapp2019/sxakzhpd.m3u8
-#EXTINF:-1 ,安康新闻频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226385/1.m3u8
-#EXTINF:-1 ,安康公共频道
-http://pili-live-hls.hsyapp.sobeylingyun.com/xjhsyapp2019/sxakggpd.m3u8
-#EXTINF:-1 ,安康教育频道
-http://pili-live-hls.hsyapp.sobeylingyun.com/xjhsyapp2019/sxakjypd.m3u8
-#EXTINF:-1 ,宝鸡新闻综合
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226381/1.m3u8
-#EXTINF:-1 ,宝鸡新闻综合
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226383/1.m3u8
-#EXTINF:-1 ,宝鸡经济资讯
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226382/1.m3u8
-#EXTINF:-1 ,宝鸡经济资讯
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226384/1.m3u8
-#EXTINF:-1 ,咸阳新闻频道
-http://player.juyun.tv/tv/29377114.m3u8
-#EXTINF:-1 ,咸阳电视二套
-http://player.juyun.tv/tv/29378164.m3u8
-#EXTINF:-1 ,延安新闻综合
-http://live.cloud.yanews.cn/video/s10001-YATV-1/index.m3u8
-#EXTINF:-1 ,延安新闻综合
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226374/1.m3u8
-#EXTINF:-1 ,延安公共频道
-http://live.cloud.yanews.cn/video/s10001-YATV-2/index.m3u8
-#EXTINF:-1 ,延安公共频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226375/1.m3u8
-#EXTINF:-1 ,延安公共频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226387/1.m3u8
-#EXTINF:-1 ,汉中综合频道
-http://live.hzrtvs.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,汉中综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226327/1.m3u8
-#EXTINF:-1 ,汉中综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226331/1.m3u8
-#EXTINF:-1 ,汉中公共频道
-http://111.20.105.60:6060/yinhe/2/ch00000090990000001262?virtualDomain=yinhe.live_hls.zte.com
-#EXTINF:-1 ,汉中公共频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226001/1.m3u8
-#EXTINF:-1 ,汉中教育频道
-http://111.20.105.60:6060/yinhe/2/ch00000090990000001263?virtualDomain=yinhe.live_hls.zte.com
-#EXTINF:-1 ,商洛综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226378/1.m3u8
-#EXTINF:-1 ,铜川新闻综合
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226379/1.m3u8
-#EXTINF:-1 ,铜川文化娱乐
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226380/1.m3u8
-#EXTINF:-1 ,高陵综合频道
-http://119.3.248.8/xatv7/sd/live.m3u8
-#EXTINF:-1 ,横山综合频道
-http://stream.hsqtv.cn/2/sd/live.m3u8
-#EXTINF:-1 ,留坝综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226000/1.m3u8
-#EXTINF:-1 ,略阳综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226322/1.m3u8
-#EXTINF:-1 ,略阳综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226328/1.m3u8
-#EXTINF:-1 ,安塞综合频道
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226388/1.m3u8
-#EXTINF:-1 ,山西科教
-http://sxxx.chinashadt.com:2037/live/4.stream/playlist.m3u8
-#EXTINF:-1 ,黄河电视台
-http://sxxx.chinashadt.com:2037/live/5.stream/playlist.m3u8
-#EXTINF:-1 ,优购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226356/1.m3u8
-#EXTINF:-1 ,晋城新闻
-http://live.jinnews.com.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,晋城公共
-http://live.jinnews.com.cn/ggpd/sd/live.m3u8
-#EXTINF:-1 ,吕梁新闻频道
-http://sxllvideo.chinashadt.com:1935/live/ll1/playlist.m3u8
-#EXTINF:-1 ,吕梁公共频道
-http://sxllvideo.chinashadt.com:1935/live/ll2/playlist.m3u8
-#EXTINF:-1 ,临汾综合频道
-http://sxxx.chinashadt.com:2037/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,晋中新闻频道
-http://jzdb.jztvnews.com:83/live/mount_for_ts/jzzh.m3u8
-#EXTINF:-1 ,晋中公共频道
-http://jzdb.jztvnews.com:83/live/mount_for_ts/jzgg.m3u8
-#EXTINF:-1 ,交城电视台
-http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8
-#EXTINF:-1 ,柳林综合
-http://pili-live-rtmp.212.i2863.com/i2863-212/live_212_988681.m3u8
-#EXTINF:-1 ,石楼综合频道
-http://sxllvideo.chinashadt.com:1935/live/sldst/playlist.m3u8
-#EXTINF:-1 ,文水新闻综合
-http://sxws.chinashadt.com:1938/live/tv10.stream_360p/playlist.m3u8
-#EXTINF:-1 ,文水时尚秀
-http://sxws.chinashadt.com:1938/live/tv11.stream_360p/playlist.m3u8
-#EXTINF:-1 ,孝义新闻综合
-http://app.xygdcm.com:2036/live/stream:xy1.stream/playlist.m3u8
-#EXTINF:-1 ,长子综合频道
-http://zzlive.zzc-media.com:8092/live/xwzh.m3u8
-#EXTINF:-1 ,侯马新闻频道
-https://32664.hlsplay.aodianyun.com/tv_radio_32664/tv_channel_1313.m3u8
-#EXTINF:-1 ,吉县新闻综合
-http://jxlive.jxrmtzx.com:8091/live/xwzh.m3u8
-#EXTINF:-1 ,曲沃综合频道
-https://41428.hlsplay.aodianyun.com/tv_radio_41428/tv_channel_1203.m3u8
-#EXTINF:-1 ,隰县新闻综合
-http://sxxx.chinashadt.com:2037/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,绛县综合频道
-http://push.vyuan8.com/vyuan/28739115379384191.m3u8?auth_key=1735660800-0-0-7c8c609fcbecfdd228c5d4525d748b77
-#EXTINF:-1 ,临猗综合频道
-http://pili-live-hls.lyzx.live.chinacici.cn/lyrmt/ceshi-ly.m3u8
-#EXTINF:-1 ,万荣综合频道
-http://60.222.246.220:19433/hls1
-#EXTINF:-1 ,甘肃经济频道
-http://stream.gstv.com.cn/jjpd/sd/live.m3u8
-#EXTINF:-1 ,甘肃都市频道
-http://stream.gstv.com.cn/dspd/sd/live.m3u8
-#EXTINF:-1 ,甘肃公共应急
-http://stream.gstv.com.cn/ggpd/sd/live.m3u8
-#EXTINF:-1 ,甘肃文化影视
-http://stream.gstv.com.cn/whys/sd/live.m3u8
-#EXTINF:-1 ,甘肃移动电视
-http://stream.gstv.com.cn/ydds/sd/live.m3u8
-#EXTINF:-1 ,甘肃品质生活
-http://stream.gstv.com.cn/pzsh/sd/live.m3u8
-#EXTINF:-1 ,庆阳综合频道
-http://117.156.28.119/270000001111/1110000167/index.m3u8
-#EXTINF:-1 ,庆阳公共频道
-http://117.156.28.119/270000001111/1110000168/index.m3u8
-#EXTINF:-1 ,平凉新闻综合
-http://117.156.28.119/270000001111/1110000021/index.m3u8
-#EXTINF:-1 ,平凉公共频道
-http://117.156.28.119/270000001111/1110000020/index.m3u8
-#EXTINF:-1 ,酒泉综合频道
-http://stream.gsjqtv.com/pd1/sd/live.m3u8
-#EXTINF:-1 ,酒泉综合频道
-http://117.156.28.119/270000001111/1110000001/index.m3u8
-#EXTINF:-1 ,酒泉公共频道
-http://stream.gsjqtv.com/pd2/sd/live.m3u8
-#EXTINF:-1 ,酒泉公共频道
-http://117.156.28.119/270000001111/1110000002/index.m3u8
-#EXTINF:-1 ,敦煌综合频道
-http://live.todaydunhuang.com:1935/live/live100/500K/tzwj_video.m3u8
-#EXTINF:-1 ,敦煌综合频道
-http://117.156.28.119/270000001111/1110000028/index.m3u8
-#EXTINF:-1 ,张掖新闻综合
-http://117.156.28.119/270000001111/1110000025/index.m3u8
-#EXTINF:-1 ,张掖公共频道
-http://117.156.28.119/270000001111/1110000026/index.m3u8
-#EXTINF:-1 ,天水新闻综合
-http://117.156.28.119/270000001111/1110000185/index.m3u8
-#EXTINF:-1 ,天水公共频道
-http://117.156.28.119/270000001111/1110000186/index.m3u8
-#EXTINF:-1 ,金昌综合频道
-http://stream4.liveyun.hoge.cn/ch02/sd/live.m3u8
-#EXTINF:-1 ,金昌公共频道
-http://stream4.liveyun.hoge.cn/ch01/sd/live.m3u8
-#EXTINF:-1 ,陇南新闻综合
-http://117.156.28.119/270000001111/1110000013/index.m3u8
-#EXTINF:-1 ,陇南公共频道
-http://117.156.28.119/270000001111/1110000014/index.m3u8
-#EXTINF:-1 ,临夏州综合频道
-http://lxzh1cdn.dingtoo.com/AppName/StreamName.m3u8
-#EXTINF:-1 ,临夏州公共频道
-http://lxgg2cdn.dingtoo.com/AppName/StreamName.m3u8
-#EXTINF:-1 ,武威新闻综合
-http://117.156.28.119/270000001111/1110000174/index.m3u8
-#EXTINF:-1 ,武威公共频道
-http://117.156.28.119/270000001111/1110000175/index.m3u8
-#EXTINF:-1 ,武威公共频道
-http://117.156.28.119/270000001111/1110000176/index.m3u8
-#EXTINF:-1 ,武威凉州频道
-http://117.156.28.119/270000001111/1110000173/index.m3u8
-#EXTINF:-1 ,定西综合频道
-http://pili-live-hls.dingxiyun.com/dingxitv/dxgg.m3u8
-#EXTINF:-1 ,定西公共频道
-http://pili-live-hls.dingxiyun.com/dingxitv/zhpd.m3u8
-#EXTINF:-1 ,靖远综合频道
-http://117.156.28.119/270000001111/1110000183/index.m3u8
-#EXTINF:-1 ,成县综合频道
-http://playlive.shineoncloud.com/cxgbdst/1238.m3u8
-#EXTINF:-1 ,成县综合频道
-http://117.156.28.119/270000001111/1110000019/index.m3u8
-#EXTINF:-1 ,临洮综合频道
-http://r.gslb.lecloud.com/live/hls/2019102230mLD004y13/desc.m3u8
-#EXTINF:-1 ,临洮综合频道
-http://117.156.28.119/270000001111/1110000139/index.m3u8
-#EXTINF:-1 ,景泰综合频道
-http://pl1.cloud.dayang.com.cn/live/10062_PKFWSO.m3u8
-#EXTINF:-1 ,景泰综合频道
-http://117.156.28.119/270000001111/1110000132/index.m3u8
-#EXTINF:-1 ,山丹综合频道
-https://p2.weizan.cn/14485/132034229161654654/live.m3u8
-#EXTINF:-1 ,金川综合频道
-http://117.156.28.119/270000001111/1110000181/index.m3u8
-#EXTINF:-1 ,永昌综合频道
-http://117.156.28.119/270000001111/1110000178/index.m3u8
-#EXTINF:-1 ,庆城综合频道
-http://117.156.28.119/270000001111/1110000156/index.m3u8
-#EXTINF:-1 ,兰州石化电视
-http://117.156.28.119/270000001111/1110000024/index.m3u8
-#EXTINF:-1 ,安定综合频道
-http://117.156.28.119/270000001111/1110000133/index.m3u8
-#EXTINF:-1 ,陇西综合频道
-http://117.156.28.119/270000001111/1110000177/index.m3u8
-#EXTINF:-1 ,岷县综合频道
-http://117.156.28.119/270000001111/1110000130/index.m3u8
-#EXTINF:-1 ,通渭综合频道
-http://117.156.28.119/270000001111/1110000159/index.m3u8
-#EXTINF:-1 ,迭部综合频道
-http://117.156.28.119/270000001111/1110000154/index.m3u8
-#EXTINF:-1 ,玛曲综合频道
-http://117.156.28.119/270000001111/1110000165/index.m3u8
-#EXTINF:-1 ,舟曲新闻综合
-http://117.156.28.119/270000001111/1110000169/index.m3u8
-#EXTINF:-1 ,瓜州综合频道
-http://117.156.28.119/270000001111/1110000027/index.m3u8
-#EXTINF:-1 ,金塔综合频道
-http://117.156.28.119/270000001111/1110000124/index.m3u8
-#EXTINF:-1 ,徽县综合频道
-http://117.156.28.119/270000001111/1110000015/index.m3u8
-#EXTINF:-1 ,礼县综合频道
-http://117.156.28.119/270000001111/1110000153/index.m3u8
-#EXTINF:-1 ,武都综合频道
-http://117.156.28.119/270000001111/1110000012/index.m3u8
-#EXTINF:-1 ,西和综合频道
-http://117.156.28.119/270000001111/1110000137/index.m3u8
-#EXTINF:-1 ,西和公共频道
-http://117.156.28.119/270000001111/1110000136/index.m3u8
-#EXTINF:-1 ,东乡综合频道
-http://117.156.28.119/270000001111/1110000131/index.m3u8
-#EXTINF:-1 ,和政综合频道
-http://117.156.28.119/270000001111/1110000149/index.m3u8
-#EXTINF:-1 ,康乐综合频道
-http://117.156.28.119/270000001111/1110000164/index.m3u8
-#EXTINF:-1 ,临夏市电视台
-http://117.156.28.119/270000001111/1110000190/index.m3u8
-#EXTINF:-1 ,永靖综合频道
-http://117.156.28.119/270000001111/1110000151/index.m3u8
-#EXTINF:-1 ,崇信综合频道
-http://117.156.28.119/270000001111/1110000179/index.m3u8
-#EXTINF:-1 ,华亭综合频道
-http://117.156.28.119/270000001111/1110000148/index.m3u8
-#EXTINF:-1 ,泾川综合频道
-http://117.156.28.119/270000001111/1110000143/index.m3u8
-#EXTINF:-1 ,静宁综合频道
-http://117.156.28.119/270000001111/1110000147/index.m3u8
-#EXTINF:-1 ,崆峒综合频道
-http://125.74.200.110:10080/hls/001/001_live.m3u8
-#EXTINF:-1 ,崆峒综合频道
-http://117.156.28.119/270000001111/1110000140/index.m3u8
-#EXTINF:-1 ,灵台综合频道
-http://117.156.28.119/270000001111/1110000145/index.m3u8
-#EXTINF:-1 ,华池综合频道
-http://117.156.28.119/270000001111/1110000158/index.m3u8
-#EXTINF:-1 ,合水综合频道
-http://117.156.28.119/270000001111/1110000166/index.m3u8
-#EXTINF:-1 ,环县综合频道
-http://117.156.28.119/270000001111/1110000180/index.m3u8
-#EXTINF:-1 ,宁县综合频道
-http://117.156.28.119/270000001111/1110000157/index.m3u8
-#EXTINF:-1 ,西峰综合频道
-http://117.156.28.119/270000001111/1110000160/index.m3u8
-#EXTINF:-1 ,正宁综合频道
-http://117.156.28.119/270000001111/1110000184/index.m3u8
-#EXTINF:-1 ,镇原综合频道
-http://117.156.28.119/270000001111/1110000161/index.m3u8
-#EXTINF:-1 ,秦安综合频道
-http://117.156.28.119/270000001111/1110000189/index.m3u8
-#EXTINF:-1 ,武山综合频道
-http://117.156.28.119/270000001111/1110000170/index.m3u8
-#EXTINF:-1 ,民勤综合频道
-http://117.156.28.119/270000001111/1110000150/index.m3u8
-#EXTINF:-1 ,天祝综合频道
-http://117.156.28.119/270000001111/1110000144/index.m3u8
-#EXTINF:-1 ,高台综合频道
-http://117.156.28.119/270000001111/1110000146/index.m3u8
-#EXTINF:-1 ,阿克塞综合频道
-http://117.156.28.119/270000001111/1110000018/index.m3u8
-#EXTINF:-1 ,积石山综合频道
-http://117.156.28.119/270000001111/1110000152/index.m3u8
-#EXTINF:-1 ,张家川综合
-http://117.156.28.119/270000001111/1110000187/index.m3u8
-#EXTINF:-1 ,河北都市
-http://weblive.hebtv.com/live/hbds_bq/index.m3u8
-#EXTINF:-1 ,河北都市
-http://live1.plus.hebtv.com/hbds/sd/live.m3u8
-#EXTINF:-1 ,河北都市
-http://live01.hebtv.com/channels/hebtv/video_channel_01/m3u8:2000k/live
-#EXTINF:-1 ,河北都市
-http://live01.hebtv.com/channels/hebtv/video_channel_01/m3u8:800k/live
-#EXTINF:-1 ,河北都市
-http://live01.hebtv.com/channels/hebtv/video_channel_01/m3u8:500k/live
-#EXTINF:-1 ,河北都市
-http://weblive.hebtv.com/live/hbds_lc/index.m3u8
-#EXTINF:-1 ,河北都市
-https://jwplay.hebyun.com.cn/live/hbdstv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北经济生活
-http://weblive.hebtv.com/live/hbjj_bq/index.m3u8
-#EXTINF:-1 ,河北经济生活
-http://live4.plus.hebtv.com/hbjj/sd/live.m3u8
-#EXTINF:-1 ,河北经济生活
-http://live01.hebtv.com/channels/hebtv/video_channel_02/m3u8:2000k/live
-#EXTINF:-1 ,河北经济生活
-http://live01.hebtv.com/channels/hebtv/video_channel_02/m3u8:800k/live
-#EXTINF:-1 ,河北经济生活
-http://live01.hebtv.com/channels/hebtv/video_channel_02/m3u8:500k/live
-#EXTINF:-1 ,河北经济生活
-http://weblive.hebtv.com/live/hbjj_lc/index.m3u8
-#EXTINF:-1 ,河北经济生活
-https://jwplay.hebyun.com.cn/live/hbjjtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北公共
-http://weblive.hebtv.com/live/hbgg_bq/index.m3u8
-#EXTINF:-1 ,河北公共
-http://live1.plus.hebtv.com/hbgg/sd/live.m3u8
-#EXTINF:-1 ,河北公共
-http://live01.hebtv.com/channels/hebtv/video_channel_08/m3u8:800k/live
-#EXTINF:-1 ,河北公共
-http://live01.hebtv.com/channels/hebtv/video_channel_08/m3u8:500k/live
-#EXTINF:-1 ,河北公共
-http://weblive.hebtv.com/live/hbgg_lc/index.m3u8
-#EXTINF:-1 ,河北三佳购物
-http://weblive.hebtv.com/live/sjgw_bq/index.m3u8
-#EXTINF:-1 ,河北三佳购物
-http://live5.plus.hebtv.com/sjgw/sd/live.m3u8
-#EXTINF:-1 ,河北三佳购物
-http://live01.hebtv.com/channels/hebtv/video_channel_03/m3u8:800k/live
-#EXTINF:-1 ,河北三佳购物
-http://live01.hebtv.com/channels/hebtv/video_channel_03/m3u8:500k/live
-#EXTINF:-1 ,河北三佳购物
-http://weblive.hebtv.com/live/sjgw_lc/index.m3u8
-#EXTINF:-1 ,河北农民
-http://weblive.hebtv.com/live/nmpd_bq/index.m3u8
-#EXTINF:-1 ,河北农民
-http://live4.plus.hebtv.com/hbnm/sd/live.m3u8
-#EXTINF:-1 ,河北农民
-http://live01.hebtv.com/channels/hebtv/video_channel_09/m3u8:800k/live
-#EXTINF:-1 ,河北农民
-http://live01.hebtv.com/channels/hebtv/video_channel_09/m3u8:500k/live
-#EXTINF:-1 ,河北农民
-http://weblive.hebtv.com/live/nmpd_lc/index.m3u8
-#EXTINF:-1 ,河北农民
-https://jwplay.hebyun.com.cn/live/hbnmtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,河北农民
-http://zhjz.chinashadt.com:2036/live/5.stream/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://zhjz.chinashadt.com:2036/live/5.stream_360p/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://hbry.chinashadt.com:1938/live/1009.stream_360p/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://hbdg.chinashadt.com:1936/live/stream:cctv7.stream/playlist.m3u8
-#EXTINF:-1 ,河北农民
-http://hbfc.chinashadt.com:2036/live/1003.stream/playlist.m3u8
-#EXTINF:-1 ,中国交通河北
-http://liveplay.hbgajg.com/live/zgjt_hb_stream.m3u8
-#EXTINF:-1 ,石家庄新闻综合
-https://jwplay.hebyun.com.cn/live/sjzxwzhtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,石家庄新闻综合
-http://zhjz.chinashadt.com:2036/live/7.stream/playlist.m3u8
-#EXTINF:-1 ,石家庄新闻综合
-http://zhjz.chinashadt.com:2036/live/7.stream_360p/playlist.m3u8
-#EXTINF:-1 ,石家庄都市
-http://zhjz.chinashadt.com:2036/live/6.stream/playlist.m3u8
-#EXTINF:-1 ,石家庄都市
-http://zhjz.chinashadt.com:2036/live/6.stream_360p/playlist.m3u8
-#EXTINF:-1 ,邯郸新闻综合
-http://live.hd.hdbs.cn/video/s10001-hdxwpd/index.m3u8
-#EXTINF:-1 ,邯郸新闻综合
-http://hls.quklive.com/live/1577670781705947/index.m3u8
-#EXTINF:-1 ,邯郸公共频道
-http://live.hd.hdbs.cn/video/s10001-hdggpd/index.m3u8
-#EXTINF:-1 ,邯郸公共频道
-http://hls.quklive.com/live/1577759320319924/index.m3u8
-#EXTINF:-1 ,邯郸科技教育
-http://live.hd.hdbs.cn/video/s10001-hdkjpd/index.m3u8
-#EXTINF:-1 ,邯郸科技教育
-http://hls.quklive.com/live/1577759346099941/index.m3u8
-#EXTINF:-1 ,衡水新闻综合
-http://hls.hsrtv.cn/hls/hstv1.m3u8
-#EXTINF:-1 ,衡水影视娱乐
-http://hls.hsrtv.cn/hls/hstv2.m3u8
-#EXTINF:-1 ,衡水公共频道
-http://hls.hsrtv.cn/hls/hstv3.m3u8
-#EXTINF:-1 ,邢台综合频道
-http://a.xttv.top/xttv/5ebe09cb3d1a0f3f3d062e99c78175a0.m3u8?auth_key=1861891200-0-0-d10ef6800441f798030705f4ab7e3a4b
-#EXTINF:-1 ,邢台公共频道
-http://a.xttv.top/xttv/d0586743dc68918f808f28b8bc90c737.m3u8?auth_key=1861891200-0-0-ac3742e661687f63ac72cd6cb2c784be
-#EXTINF:-1 ,张家口二套
-http://nlive.zjkgdcs.com:8091/live/zjktv2.m3u8
-#EXTINF:-1 ,张家口手机台
-http://nlive.zjkgdcs.com:8091/live/zjksjt.m3u8
-#EXTINF:-1 ,沧州新闻综合
-http://czlive.czgd.tv:85/live/xnyt.m3u8
-#EXTINF:-1 ,沧州公共频道
-http://czlive.czgd.tv:85/live/xnet.m3u8
-#EXTINF:-1 ,沧州影视娱乐
-http://czlive.czgd.tv:85/live/xnst.m3u8
-#EXTINF:-1 ,承德新闻综合
-https://jwplay.hebyun.com.cn/live/cdsxwzhtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,承德新闻综合
-https://jwplay.hebyun.com.cn/live/cdslywh/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,承德公共生活
-https://jwplay.hebyun.com.cn/live/cdsggshtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,承德公共生活
-https://jwplay.hebyun.com.cn/live/zdcdshtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,高邑综合
-https://jwplay.hebyun.com.cn/live/gaoyiyitao/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,晋州新闻频道
-http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,晋州新闻频道
-http://zhjz.chinashadt.com:2036/live/1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,晋州资讯频道
-http://zhjz.chinashadt.com:2036/live/8.stream/playlist.m3u8
-#EXTINF:-1 ,晋州资讯频道
-http://zhjz.chinashadt.com:2036/live/8.stream_360p/playlist.m3u8
-#EXTINF:-1 ,鹿泉一套
-https://36904.hlsplay.aodianyun.com/tv_radio_36904/tv_channel_998.m3u8
-#EXTINF:-1 ,鹿泉一套
-http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8
-#EXTINF:-1 ,鹿泉二套
-https://36904.hlsplay.aodianyun.com/tv_radio_36904/tv_channel_999.m3u8
-#EXTINF:-1 ,鹿泉二套
-http://hblq.chinashadt.com:2036/live/stream:luquan2.stream/playlist.m3u8
-#EXTINF:-1 ,辛集新闻频道
-https://jwplay.hebyun.com.cn/live/xjxwtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,辛集新闻频道
-http://umslive.hebyun.com.cn/live/xinjitv1/2000k/tzwj_video.m3u8
-#EXTINF:-1 ,辛集新闻频道
-http://zsxj.chinashadt.com:1935/live/xjxw.stream/playlist.m3u8
-#EXTINF:-1 ,辛集新闻频道
-http://zsxj.chinashadt.com:1935/zhibo/xjxw.stream/playlist.m3u8
-#EXTINF:-1 ,辛集新闻频道
-http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8
-#EXTINF:-1 ,辛集生活频道
-https://jwplay.hebyun.com.cn/live/xjshtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,辛集生活频道
-http://umslive.hebyun.com.cn/live/xinjitv2/2000k/tzwj_video.m3u8
-#EXTINF:-1 ,辛集生活频道
-http://zsxj.chinashadt.com:1935/live/xjsh.stream/playlist.m3u8
-#EXTINF:-1 ,辛集生活频道
-http://zsxj.chinashadt.com:1935/zhibo/xjsh.stream/playlist.m3u8
-#EXTINF:-1 ,辛集生活频道
-http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8
-#EXTINF:-1 ,赞皇综合
-http://hbzz.chinashadt.com:2036/zhibo/4.stream/playlist.m3u8
-#EXTINF:-1 ,赞皇综合
-http://hbzz.chinashadt.com:2036/live/4.stream/playlist.m3u8
-#EXTINF:-1 ,赵县电视一套
-http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream/playlist.m3u8
-#EXTINF:-1 ,赵县电视一套
-http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,成安综合
-http://live.hd.hdbs.cn/video/s10007-cazhpd/index.m3u8
-#EXTINF:-1 ,成安经济民生
-http://live.hd.hdbs.cn/video/s10007-cajjms/index.m3u8
-#EXTINF:-1 ,成安综艺
-http://live.hd.hdbs.cn/video/s10007-cazy/index.m3u8
-#EXTINF:-1 ,成安少儿戏曲
-http://live.hd.hdbs.cn/video/s10007-casexq/index.m3u8
-#EXTINF:-1 ,鸡泽新闻综合
-https://jwplay.hebyun.com.cn/live/jiyunjize/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,临漳综合频道
-http://hblz.chinashadt.com:1538/live/di3.stream/playlist.m3u8
-#EXTINF:-1 ,邱县综合频道
-http://live.hd.hdbs.cn/video/s10013-qxds1/index.m3u8
-#EXTINF:-1 ,邱县电视二套
-http://live.hd.hdbs.cn/video/s10013-qxds2/index.m3u8
-#EXTINF:-1 ,涉县新闻综合
-http://live.hd.hdbs.cn/video/s10006-sxxwpd/index.m3u8
-#EXTINF:-1 ,武安新闻综合
-http://live.hd.hdbs.cn/video/s10015-waxwzh/index.m3u8
-#EXTINF:-1 ,永年综合频道
-http://hbyn.chinashadt.com:1936/live/stream:ynzh.stream_360p/playlist.m3u8
-#EXTINF:-1 ,永年民生频道
-http://hbyn.chinashadt.com:1936/live/stream:ynms.stream_360p/playlist.m3u8
-#EXTINF:-1 ,永年健康频道
-http://hbyn.chinashadt.com:1936/live/stream:ynjk.stream_360p/playlist.m3u8
-#EXTINF:-1 ,阜城综合频道
-http://hbfc.chinashadt.com:2036/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,阜城经济频道
-http://hbfc.chinashadt.com:2036/live/5.stream/playlist.m3u8
-#EXTINF:-1 ,景县电视一套
-http://hbjx.chinashadt.com:1935/live/stream:jx1.stream/playlist.m3u8
-#EXTINF:-1 ,景县电视一套
-http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,景县电视二套
-http://hbjx.chinashadt.com:1935/live/stream:jx2.stream/playlist.m3u8
-#EXTINF:-1 ,景县电视二套
-http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,饶阳一套
-http://hbry.chinashadt.com:1938/live/1004.stream_360p/playlist.m3u8
-#EXTINF:-1 ,饶阳二套
-http://hbry.chinashadt.com:1938/live/1003.stream_360p/playlist.m3u8
-#EXTINF:-1 ,深州综合频道
-http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8
-#EXTINF:-1 ,深州综合频道
-http://hbsz.chinashadt.com:2036/live/stream:sztv.stream_360p/playlist.m3u8
-#EXTINF:-1 ,深州影视频道
-http://hbsz.chinashadt.com:2036/live/stream:szys.stream/playlist.m3u8
-#EXTINF:-1 ,深州影视频道
-http://hbsz.chinashadt.com:2036/live/stream:szys.stream_360p/playlist.m3u8
-#EXTINF:-1 ,武强综合
-http://hbwq.chinashadt.com:2035/live/stream:wqt.stream/playlist.m3u8
-#EXTINF:-1 ,武强影视
-http://hbwq.chinashadt.com:2035/live/stream:wqys.stream/playlist.m3u8
-#EXTINF:-1 ,枣强综合
-http://hbzq.chinashadt.com:1937/live/1007.stream_360p/playlist.m3u8
-#EXTINF:-1 ,滦南新闻综合
-https://tv.lnshw.com.cn:8123/lntv1/live.m3u8
-#EXTINF:-1 ,滦南影视娱乐
-https://tv.lnshw.com.cn:8123/lntv2/live.m3u8
-#EXTINF:-1 ,乐亭新闻综合
-http://tv.lnshw.com.cn:3100/hls/cfyxlgdz/index.m3u8
-#EXTINF:-1 ,乐亭综艺服务
-http://tv.lnshw.com.cn:3100/hls/eyclaefi/index.m3u8
-#EXTINF:-1 ,滦州综合频道
-http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8
-#EXTINF:-1 ,滦州综艺频道
-http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8
-#EXTINF:-1 ,迁安新闻综合
-http://app.qatv.cn:1936/live/stream:xwzh.stream_720p/playlist.m3u8
-#EXTINF:-1 ,迁安生活影视
-http://app.qatv.cn:1937/live/stream:shfw.stream_720p/playlist.m3u8
-#EXTINF:-1 ,迁安快乐3频道
-http://app.qatv.cn:1936/live/stream:kl3pd.stream_720p/playlist.m3u8
-#EXTINF:-1 ,霸州新闻频道
-http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8
-#EXTINF:-1 ,霸州文化频道
-http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8
-#EXTINF:-1 ,霸州公共频道
-http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8
-#EXTINF:-1 ,霸州少儿频道
-http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8
-#EXTINF:-1 ,固安综合
-http://hbga.chinashadt.com:1935/live/stream:gazh.stream/playlist.m3u8
-#EXTINF:-1 ,固安娱乐
-http://hbga.chinashadt.com:1935/live/stream:gayl.stream/playlist.m3u8
-#EXTINF:-1 ,固安影视
-http://hbga.chinashadt.com:1935/live/stream:gays.stream/playlist.m3u8
-#EXTINF:-1 ,文安综合频道
-http://hbwa.chinashadt.com:1935/live/wenan1.stream/playlist.m3u8
-#EXTINF:-1 ,文安公共频道
-http://hbwa.chinashadt.com:1935/live/wenan3.stream/playlist.m3u8
-#EXTINF:-1 ,香河综合频道
-http://hbxh.chinashadt.com:2038/live/stream:xhzh.stream/playlist.m3u8
-#EXTINF:-1 ,香河影视频道
-http://hbxh.chinashadt.com:2038/live/stream:xhys.stream/playlist.m3u8
-#EXTINF:-1 ,柏乡综合频道
-http://hbbx.chinashadt.com:2035/live/8.stream/playlist.m3u8
-#EXTINF:-1 ,平乡综合频道
-http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8
-#EXTINF:-1 ,清河新闻综合
-https://jwplay.hebyun.com.cn/live/qinghe/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,清河经济综艺
-https://jwplay.hebyun.com.cn/live/qinghe1/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,赤城综合频道
-http://pili-live-hls.ccrm.tianma3600.com/ccrm/ccds.m3u8
-#EXTINF:-1 ,赤城综合频道
-http://pili-live-hdl.ccrm.tianma3600.com/ccrm/ccds.flv
-#EXTINF:-1 ,沽源综合频道
-http://gylive.zjkgdcs.com:85/live/gytv.m3u8
-#EXTINF:-1 ,怀来综合频道
-https://36656.hlsplay.aodianyun.com/tv_radio_36656/tv_channel_1222.m3u8
-#EXTINF:-1 ,沧县电视综合
-http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8
-#EXTINF:-1 ,沧县电视二套
-http://hebcx.chinashadt.com:2036/live/10002.stream/playlist.m3u8
-#EXTINF:-1 ,东光一套
-http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8
-#EXTINF:-1 ,东光二套
-http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8
-#EXTINF:-1 ,东光综艺
-http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅一套
-http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅二套
-http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅影视
-http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅互动
-http://hbhh.chinashadt.com:2111/live/hdtv.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅渤海新区
-http://hbhh.chinashadt.com:2111/live/bhtv.stream/playlist.m3u8
-#EXTINF:-1 ,河间一套
-http://hbhj.chinashadt.com:1935/bjm/stream:hj1.stream/playlist.m3u8
-#EXTINF:-1 ,河间一套
-http://hbhj.chinashadt.com:1935/bjm/stream:hj1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,河间二套
-http://hbhj.chinashadt.com:1935/bjm/stream:hj2.stream/playlist.m3u8
-#EXTINF:-1 ,河间二套
-http://hbhj.chinashadt.com:1935/bjm/stream:hj2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,任丘综合频道
-https://jwplay.hebyun.com.cn/live/rqtv1/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,任丘文娱频道
-https://jwplay.hebyun.com.cn/live/rqtv2/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,献县一套
-http://hbxx.chinashadt.com:3299/live/stream:di7.stream/playlist.m3u8
-#EXTINF:-1 ,献县二套
-http://hbxx.chinashadt.com:3299/live/stream:di8.stream/playlist.m3u8
-#EXTINF:-1 ,涿州新闻频道
-http://121.18.115.162:8082/live/ch3.m3u8
-#EXTINF:-1 ,涿州生活频道
-http://121.18.115.162:8082/live/ch4.m3u8
-#EXTINF:-1 ,涿州都市频道
-http://121.18.115.162:8082/live/ch5.m3u8
-#EXTINF:-1 ,高碑店新闻
-https://jwplay.hebyun.com.cn/live/zdgbdxwzhtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,高碑店新闻
-https://jwplay.hebyun.com.cn/live/gbdxwzhtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,高碑店新闻
-http://34540.hlsplay.aodianyun.com/guangdianyun_34540/tv_channel_206.m3u8
-#EXTINF:-1 ,承德县新闻
-https://jwplay.hebyun.com.cn/live/cdxxwzhtv/1500k/tzwj_video.m3u8
-#EXTINF:-1 ,承德县新闻
-http://umslive.hebyun.com.cn/live/chengdexiantv1/2000k/tzwj_video.m3u8
-#EXTINF:-1 ,隆化综合频道
-http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8
-#EXTINF:-1 ,隆化影视频道
-http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8
-#EXTINF:-1 ,滦平新闻频道
-http://zhibo.wanhesoft.com/live/wh.m3u8
-#EXTINF:-1 ,双滦新闻频道
-http://hls-w.quklive.com/live/w1550730856106787/playlist.m3u8
-#EXTINF:-1 ,双滦影视频道
-http://hls-w.quklive.com/live/w1550736830932722/playlist.m3u8
-#EXTINF:-1 ,河南民生
-http://117.158.206.60:9080/live/live29_tzwj_500k.m3u8
-#EXTINF:-1 ,河南睛彩中原
-http://117.158.206.60:9080/live/live30_tzwj_500k.m3u8
-#EXTINF:-1 ,河南移动戏曲
-http://117.158.206.60:9080/live/live31_tzwj_500k.m3u8
-#EXTINF:-1 ,河南移动戏曲宝
-http://117.158.206.60:9080/live/xqb.m3u8
-#EXTINF:-1 ,武术世界
-http://117.158.206.60:9080/live/wssj.m3u8
-#EXTINF:-1 ,梨园频道
-http://117.158.206.60:9080/live/lypd.m3u8
-#EXTINF:-1 ,文物宝库
-http://117.158.206.60:9080/live/wwbk.m3u8
-#EXTINF:-1 ,国学频道
-http://183.207.248.71/gitv/live1/G_GUOXUE/G_GUOXUE
-#EXTINF:-1 ,河南人文地理
-http://117.158.206.60:9080/live/renwendili.m3u8
-#EXTINF:-1 ,郑州商都频道
-http://stream4.liveyun.hoge.cn/zztv2/sd/live.m3u8
-#EXTINF:-1 ,郑州文体频道
-http://stream4.liveyun.hoge.cn/zztv3/sd/live.m3u8
-#EXTINF:-1 ,安阳公共频道
-http://live.dxhmt.cn:9080/18625858176/b53f118c3ffc4a5c82b6f14b8301fd17.m3u8
-#EXTINF:-1 ,安阳科教频道
-http://live.dxhmt.cn:9080/18625858176/f392f86c91c74101b1873bdf7f40b8bc.m3u8
-#EXTINF:-1 ,南阳新闻频道
-https://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8
-#EXTINF:-1 ,南阳公共频道
-https://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8
-#EXTINF:-1 ,南阳科教频道
-https://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8
-#EXTINF:-1 ,许昌综合频道
-http://live.s23.net:2015/live/smil:xczh.smil/playlist.m3u8?DVR
-#EXTINF:-1 ,许昌公共频道
-http://live.s23.net:2015/live/smil:xcgg.smil/playlist.m3u8?DVR
-#EXTINF:-1 ,许昌农业科教
-http://live.s23.net:2015/live/smil:nykj.smil/playlist.m3u8?DVR
-#EXTINF:-1 ,睛彩许昌频道
-http://live.s23.net:2015/live/smil:jcxc.smil/playlist.m3u8?DVR
-#EXTINF:-1 ,开封新闻综合
-http://www.kftv.net.cn/live/kftv1/index.m3u8
-#EXTINF:-1 ,开封公共频道
-http://www.kftv.net.cn/live/kftv3/index.m3u8
-#EXTINF:-1 ,周口新闻综合
-http://tv.zkxww.com:1935/live1/mp4:ch1-500k/playlist.m3u8?DVR
-#EXTINF:-1 ,周口经济生活
-http://tv.zkxww.com:1935/live2/mp4:ch2-500k/playlist.m3u8?DVR
-#EXTINF:-1 ,周口科教文化
-http://tv.zkxww.com:1935/live3/mp4:ch3-500k/playlist.m3u8?DVR
-#EXTINF:-1 ,周口图文信息
-http://tv.zkxww.com:1935/live4/mp4:ch4-500k/playlist.m3u8?DVR
-#EXTINF:-1 ,信阳平桥电视
-http://hnpjj.chinashadt.com:1935/live/stream:pq.stream/playlist.m3u8
-#EXTINF:-1 ,漯河新闻综合
-http://pili-live-rtmp.195.i2863.com/i2863-195/live_195_027737.m3u8
-#EXTINF:-1 ,漯河公共频道
-http://pili-live-rtmp.195.i2863.com/i2863-195/live_195_925431.m3u8
-#EXTINF:-1 ,济源电视一套
-http://live.dxhmt.cn:9081/tv/19001-1.m3u8
-#EXTINF:-1 ,鹤壁综合频道
-http://pili-live-hls.hebitv.com/hebi/hebi.m3u8
-#EXTINF:-1 ,驻马店新闻综合
-http://61.158.232.252/live/stream3/index.m3u8
-#EXTINF:-1 ,驻马店公共频道
-http://61.158.232.252/live/stream4/index.m3u8
-#EXTINF:-1 ,驻马店科教频道
-http://61.158.232.252/live/stream5/index.m3u8
-#EXTINF:-1 ,民权新闻综合
-http://hnmq.chinashadt.com:2037/live/stream:mqxw.stream/playlist.m3u8
-#EXTINF:-1 ,民权商务信息
-http://hnmq.chinashadt.com:2037/live/stream:mqsw.stream/playlist.m3u8
-#EXTINF:-1 ,夏邑新闻频道
-http://live.dxhmt.cn:9081/tv/11426-1.m3u8
-#EXTINF:-1 ,永城新闻
-http://live.dxhmt.cn:9081/tv/11481-1.m3u8
-#EXTINF:-1 ,永城民生
-http://live.dxhmt.cn:9081/tv/11481-2.m3u8
-#EXTINF:-1 ,登封综合频道
-http://live.dxhmt.cn:9081/tv/10185-1.m3u8
-#EXTINF:-1 ,新密新闻频道
-http://live.dxhmt.cn:9081/tv/10183-2.m3u8
-#EXTINF:-1 ,荥阳综合
-http://live.dxhmt.cn:9081/tv/10182-1.m3u8
-#EXTINF:-1 ,新郑综合频道
-http://live.dxhmt.cn:9081/tv/10184-1.m3u8
-#EXTINF:-1 ,中牟综合频道
-http://live.dxhmt.cn:9081/tv/10122-1.m3u8
-#EXTINF:-1 ,中牟综合频道
-http://218.206.193.210:9850/playServer/acquirePlayService?type=live&resourceId=1000000000000001&protocol=hls0&drmType=none&deviceGroup=TV(STB)&op=sovp&playType=catchup&redirect=m3u8&nsukey=&kdsplayer=media
-#EXTINF:-1 ,中牟文娱频道
-http://218.206.193.210:9850/playServer/acquirePlayService?type=live&resourceId=1000000000000003&protocol=hls0&drmType=none&deviceGroup=TV(STB)&op=sovp&playType=catchup&redirect=m3u8&nsukey=
-#EXTINF:-1 ,宝丰综合频道
-http://live.dxhmt.cn:9081/tv/10421-1.m3u8
-#EXTINF:-1 ,郏县综合频道
-http://live.dxhmt.cn:9081/tv/10425-1.m3u8
-#EXTINF:-1 ,鲁山综合频道
-http://live.dxhmt.cn:9081/tv/10423-1.m3u8
-#EXTINF:-1 ,汝州新闻频道
-http://live.dxhmt.cn:9081/tv/10482-1.m3u8
-#EXTINF:-1 ,舞钢新闻综合
-http://live.dxhmt.cn:9081/tv/10481-1.m3u8
-#EXTINF:-1 ,叶县一套
-http://live.dxhmt.cn:9081/tv/10422-1.m3u8
-#EXTINF:-1 ,栾川新闻频道
-http://live.dxhmt.cn:9081/tv/10324-1.m3u8
-#EXTINF:-1 ,汝阳综合频道
-http://live.dxhmt.cn:9081/tv/10326-1.m3u8
-#EXTINF:-1 ,新安新闻综合
-http://live.dxhmt.cn:9081/tv/10323-1.m3u8
-#EXTINF:-1 ,伊川电视台
-http://live.dxhmt.cn:9081/tv/10329-1.m3u8
-#EXTINF:-1 ,孟州综合
-http://live.dxhmt.cn:9081/tv/10883-1.m3u8
-#EXTINF:-1 ,沁阳新闻综合
-http://live.dxhmt.cn:9081/tv/10882-1.m3u8
-#EXTINF:-1 ,温县综合
-http://live.dxhmt.cn:9081/tv/10825-1.m3u8
-#EXTINF:-1 ,武陟新闻综合
-http://live.dxhmt.cn:9081/tv/10823-1.m3u8
-#EXTINF:-1 ,邓州新闻
-http://live.dxhmt.cn:9081/tv/11381-1.m3u8
-#EXTINF:-1 ,方城一套
-http://live.dxhmt.cn:9081/tv/11322-1.m3u8
-#EXTINF:-1 ,社旗综合
-http://live.dxhmt.cn:9081/tv/11327-1.m3u8
-#EXTINF:-1 ,桐柏新闻综合
-http://live.dxhmt.cn:9081/tv/11330-1.m3u8
-#EXTINF:-1 ,唐河一套
-http://live.dxhmt.cn:9081/tv/11328-1.m3u8
-#EXTINF:-1 ,新野综合
-http://live.dxhmt.cn:9081/tv/11329-1.m3u8
-#EXTINF:-1 ,新野综合
-http://www.xytv998.com/live/sdi3/index.m3u8
-#EXTINF:-1 ,镇平新闻综合
-http://live.dxhmt.cn:9081/tv/11324-1.m3u8
-#EXTINF:-1 ,郸城新闻综合
-http://live.dxhmt.cn:9081/tv/11625-1.m3u8
-#EXTINF:-1 ,郸城新闻综合
-http://hndc.chinashadt.com:2036/live/stream:dctv-1.stream/playlist.m3u8
-#EXTINF:-1 ,沈丘新闻综合
-http://live.dxhmt.cn:9081/tv/11624-1.m3u8
-#EXTINF:-1 ,项城新闻
-http://live.dxhmt.cn:9081/tv/11681-1.m3u8
-#EXTINF:-1 ,西华综合频道
-http://live.dxhmt.cn:9081/tv/11622-1.m3u8
-#EXTINF:-1 ,兰考新闻频道
-http://live.dxhmt.cn:9081/tv/10225-1.m3u8
-#EXTINF:-1 ,杞县新闻综合
-http://live.dxhmt.cn:9081/tv/10221-1.m3u8
-#EXTINF:-1 ,通许综合频道
-http://live.dxhmt.cn:9081/tv/10222-1.m3u8
-#EXTINF:-1 ,尉氏综合频道
-http://live.dxhmt.cn:9081/tv/10223-1.m3u8
-#EXTINF:-1 ,舞阳新闻综合
-http://live.dxhmt.cn:9081/tv/11121-1.m3u8
-#EXTINF:-1 ,泌阳新闻综合
-http://live.dxhmt.cn:9081/tv/11726-1.m3u8
-#EXTINF:-1 ,平舆综合
-http://live.dxhmt.cn:9081/tv/11723-1.m3u8
-#EXTINF:-1 ,确山综合
-http://live.dxhmt.cn:9081/tv/11725-1.m3u8
-#EXTINF:-1 ,上蔡综合
-http://live.dxhmt.cn:9081/tv/11722-1.m3u8
-#EXTINF:-1 ,西平综合
-http://live.dxhmt.cn:9081/tv/11721-1.m3u8
-#EXTINF:-1 ,长垣综合频道
-http://live.dxhmt.cn:9081/tv/10728-1.m3u8
-#EXTINF:-1 ,封丘新闻综合
-http://live.dxhmt.cn:9081/tv/10727-1.m3u8
-#EXTINF:-1 ,辉县新闻综合
-http://live.dxhmt.cn:9081/tv/10782-1.m3u8
-#EXTINF:-1 ,原阳新闻综合
-http://live.dxhmt.cn:9081/tv/10725-1.m3u8
-#EXTINF:-1 ,灵宝新闻综合
-http://live.dxhmt.cn:9081/tv/11282-1.m3u8
-#EXTINF:-1 ,渑池新闻综合
-http://live.dxhmt.cn:9081/tv/11221-1.m3u8
-#EXTINF:-1 ,义马新闻综合
-http://live.dxhmt.cn:9081/tv/11281-1.m3u8
-#EXTINF:-1 ,滑县新闻
-http://live.dxhmt.cn:9081/tv/10526-1.m3u8
-#EXTINF:-1 ,滑县民生
-http://live.dxhmt.cn:9081/tv/10526-2.m3u8
-#EXTINF:-1 ,林州综合
-http://live.dxhmt.cn:9081/tv/10581-1.m3u8
-#EXTINF:-1 ,内黄综合频道
-http://live.dxhmt.cn:9081/tv/10527-1.m3u8
-#EXTINF:-1 ,汤阴综合
-http://live.dxhmt.cn:9081/tv/10523-1.m3u8
-#EXTINF:-1 ,淇县电视台
-http://live.dxhmt.cn:9081/tv/10622-1.m3u8
-#EXTINF:-1 ,浚县一套
-http://live.dxhmt.cn:9081/tv/10621-1.m3u8
-#EXTINF:-1 ,范县新闻综合
-http://live.dxhmt.cn:9080/13603832636/13abd3089d9c47058fe34c49a6182981.m3u8
-#EXTINF:-1 ,清丰综合频道
-http://live.dxhmt.cn:9081/tv/10922-1.m3u8
-#EXTINF:-1 ,清丰综合频道
-http://hnqf.chinashadt.com:2036/live/5.stream/playlist.m3u8
-#EXTINF:-1 ,光山综合频道
-http://live.dxhmt.cn:9081/tv/11522-1.m3u8
-#EXTINF:-1 ,淮滨综合频道
-http://live.dxhmt.cn:9081/tv/11527-1.m3u8
-#EXTINF:-1 ,潢川综合频道
-http://live.dxhmt.cn:9081/tv/11526-1.m3u8
-#EXTINF:-1 ,罗山综合频道
-http://live.dxhmt.cn:9081/tv/11521-1.m3u8
-#EXTINF:-1 ,新县综合频道
-http://live.dxhmt.cn:9081/tv/11523-1.m3u8
-#EXTINF:-1 ,建安综合频道
-http://live.dxhmt.cn:9081/tv/11003-1.m3u8
-#EXTINF:-1 ,鄢陵新闻频道
-http://live.dxhmt.cn:9081/tv/11024-1.m3u8
-#EXTINF:-1 ,禹州综合频道
-http://live.dxhmt.cn:9081/tv/11081-1.m3u8
-#EXTINF:-1 ,上海新闻HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzhhd/2300000/d1.m3u8
-#EXTINF:-1 ,东方影视HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpdhd/2300000/d1.m3u8
-#EXTINF:-1 ,东方影视HD
-http://39.134.168.76/PLTV/1/224/3221225612/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jspdhd/2300000/d1.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://39.134.65.162/PLTV/88888888/224/3221225673/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://39.134.65.162/PLTV/88888888/224/3221225694/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://ivi.bupt.edu.cn/hls/docuchina.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225738/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225748/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://39.134.168.76/PLTV/1/224/3221225488/index.m3u8
-#EXTINF:-1 ,上海纪实人文HD
-http://112.50.243.8/PLTV/88888888/224/3221226958/1.m3u8
-#EXTINF:-1 ,上海外语HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/wypdhd/2300000/d1.m3u8
-#EXTINF:-1 ,上海外语HD
-http://39.134.168.76/PLTV/1/224/3221225486/index.m3u8
-#EXTINF:-1 ,上海都市HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpdhd/2300000/d1.m3u8
-#EXTINF:-1 ,上海都市HD
-http://39.134.168.76/PLTV/1/224/3221225610/index.m3u8
-#EXTINF:-1 ,生活时尚HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/shsshd/2300000/d1.m3u8
-#EXTINF:-1 ,生活时尚HD
-http://39.134.168.76/PLTV/1/224/3221225498/index.m3u8
-#EXTINF:-1 ,第一财经HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dycjhd/2300000/d1.m3u8
-#EXTINF:-1 ,第一财经HD
-http://39.134.168.76/PLTV/1/224/3221225494/index.m3u8
-#EXTINF:-1 ,极速汽车HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jsqchd/2300000/d1.m3u8
-#EXTINF:-1 ,极速汽车HD
-http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8
-#EXTINF:-1 ,全纪实HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qjshd/2300000/d1.m3u8
-#EXTINF:-1 ,幸福彩HD
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xfchd/2300000/d1.m3u8
-#EXTINF:-1 ,上海新闻综合
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzh/1300000/d1.m3u8
-#EXTINF:-1 ,上海纪实人文
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jspd/1300000/d1.m3u8
-#EXTINF:-1 ,艺术人文
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ysrw/1300000/d1.m3u8
-#EXTINF:-1 ,上海外语
-http://keonline.shanghai.liveplay.qq.com/live/program/live/wypd/1300000/d1.m3u8
-#EXTINF:-1 ,第一财经
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dycj/1300000/d1.m3u8
-#EXTINF:-1 ,第一财经
-http://w1.livecdn.yicai.com/hls/live/CBN_sd/live.m3u8
-#EXTINF:-1 ,东方财经浦东
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dfcj/1300000/d1.m3u8
-#EXTINF:-1 ,东方财经浦东
-http://w1.livecdn.yicai.com/hls/live/dftv_sd/live.m3u8
-#EXTINF:-1 ,东方财经浦东
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226004/index.m3u8
-#EXTINF:-1 ,东方财经浦东
-http://39.134.168.76/PLTV/1/224/3221225578/index.m3u8
-#EXTINF:-1 ,上海都市
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpd/1300000/d1.m3u8
-#EXTINF:-1 ,上海教育
-http://live.setv.sh.cn/slive/shedu02_1200k.m3u8
-#EXTINF:-1 ,上海教育
-http://live.setv.sh.cn/slive/shedu02_800k.m3u8
-#EXTINF:-1 ,上海教育
-http://live.setv.sh.cn/slive/shedu02_450k.m3u8
-#EXTINF:-1 ,七彩戏剧
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qcxj/1300000/d1.m3u8
-#EXTINF:-1 ,七彩戏剧
-http://39.134.168.76/PLTV/1/224/3221225604/index.m3u8
-#EXTINF:-1 ,极速汽车
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jsqc/1300000/d1.m3u8
-#EXTINF:-1 ,极速汽车
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226009/index.m3u8
-#EXTINF:-1 ,极速汽车
-http://39.134.168.76/PLTV/1/224/3221225600/index.m3u8
-#EXTINF:-1 ,法治天地
-http://keonline.shanghai.liveplay.qq.com/live/program/live/fztd/1300000/d1.m3u8
-#EXTINF:-1 ,法治天地
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226036/index.m3u8
-#EXTINF:-1 ,法治天地
-http://112.50.243.8/PLTV/88888888/224/3221226143/1.m3u8
-#EXTINF:-1 ,法治天地
-http://39.134.168.76/PLTV/1/224/3221225614/index.m3u8
-#EXTINF:-1 ,全纪实
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226014/index.m3u8
-#EXTINF:-1 ,金色频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/jingsepd/1300000/d1.m3u8
-#EXTINF:-1 ,幸福彩
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xfc/1300000/d1.m3u8
-#EXTINF:-1 ,东方购物
-http://ocj2.kksmg.com/ocj1/ocj1.m3u8
-#EXTINF:-1 ,东方购物
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229588/index.m3u8
-#EXTINF:-1 ,金山电视台
-http://live.mudu.tv/watch/4zbn2f.m3u8
-#EXTINF:-1 ,江苏综艺
-http://183.207.248.71/gitv/live1/G_JSZY/G_JSZY
-#EXTINF:-1 ,江苏城市
-http://183.207.248.71/gitv/live1/G_JSCS/G_JSCS
-#EXTINF:-1 ,江苏公共
-http://183.207.248.71/gitv/live1/G_JSGG/G_JSGG
-#EXTINF:-1 ,江苏教育
-http://183.207.248.71/gitv/live1/G_JSJY/G_JSJY
-#EXTINF:-1 ,财富天下
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226350/1.m3u8
-#EXTINF:-1 ,好享购物
-http://39.134.65.162/PLTV/88888888/224/3221225695/index.m3u8
-#EXTINF:-1 ,好享购物
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225757/index.m3u8
-#EXTINF:-1 ,好享购物
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226663/index.m3u8
-#EXTINF:-1 ,好享购物
-http://183.207.248.71/gitv/live1/G_HAOXIANG/G_HAOXIANG
-#EXTINF:-1 ,好享购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226018/1.m3u8
-#EXTINF:-1 ,好享购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226035/1.m3u8
-#EXTINF:-1 ,南京新闻综合
-http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京新闻综合
-http://183.207.248.71/gitv/live1/G_NJXW/G_NJXW
-#EXTINF:-1 ,南京教科
-http://live.nbs.cn/channels/njtv/jkpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京教科
-http://183.207.248.71/gitv/live1/G_NJJK/G_NJJK
-#EXTINF:-1 ,南京生活
-http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京娱乐
-http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京十八
-http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京十八
-http://183.207.248.71/gitv/live1/G_NJSB/G_NJSB
-#EXTINF:-1 ,南京信息
-http://live.nbs.cn/channels/njtv/xxpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,苏州新闻综合
-http://221.6.85.150:9000/live/szxwzh_800/szxwzh_800.m3u8
-#EXTINF:-1 ,徐州新闻综合
-http://stream1.huaihai.tv/xwzh/sd/live.m3u8
-#EXTINF:-1 ,徐州新闻综合
-http://183.207.248.71/cntv/live1/xzxwzh/xzxwzh
-#EXTINF:-1 ,徐州经济生活
-http://stream1.huaihai.tv/jjsh/sd/live.m3u8
-#EXTINF:-1 ,徐州经济生活
-http://183.207.248.71/cntv/live1/xzjjsh/xzjjsh
-#EXTINF:-1 ,徐州文艺影视
-http://stream1.huaihai.tv/wyys/sd/live.m3u8
-#EXTINF:-1 ,徐州文艺影视
-http://183.207.248.71/cntv/live1/xzjjsh/xzwyys
-#EXTINF:-1 ,徐州公共频道
-http://stream1.huaihai.tv/ggpd/sd/live.m3u8
-#EXTINF:-1 ,徐州公共频道
-http://183.207.248.71/cntv/live1/xzgg/xzgg
-#EXTINF:-1 ,无锡新闻综合
-http://live-wx.wifiwx.com/wxtv1/sd/live.m3u8
-#EXTINF:-1 ,无锡娱乐
-http://live-wx.wifiwx.com/wxtv2/sd/live.m3u8
-#EXTINF:-1 ,无锡都市资讯
-http://live-wx.wifiwx.com/wxtv3/sd/live.m3u8
-#EXTINF:-1 ,无锡生活
-http://live-wx.wifiwx.com/wxtv4/sd/live.m3u8
-#EXTINF:-1 ,无锡经济
-http://live-wx.wifiwx.com/wxtv5/sd/live.m3u8
-#EXTINF:-1 ,镇江新闻时政
-http://live.zjmc.tv/1/sd/live.m3u8
-#EXTINF:-1 ,镇江民生频道
-http://live.zjmc.tv/2/sd/live.m3u8
-#EXTINF:-1 ,镇江民生频道
-http://183.207.248.71/gitv/live1/G_ZHENJIANGTV-2/G_ZHENJIANGTV-2
-#EXTINF:-1 ,镇江城市资讯
-http://live.zjmc.tv/3/sd/live.m3u8
-#EXTINF:-1 ,宿迁新闻综合
-http://play.tvlive.sqsjt.net/live/sqzhpd.m3u8
-#EXTINF:-1 ,宿迁新闻综合
-http://183.207.248.71/gitv/live1/G_SQZH/G_SQZH
-#EXTINF:-1 ,宿迁公共频道
-http://play.tvlive.sqsjt.net/live/sqggpd.m3u8
-#EXTINF:-1 ,宿迁公共频道
-http://183.207.248.71/gitv/live1/G_SQGG/G_SQGG
-#EXTINF:-1 ,连云港新闻综合
-http://live.lyg1.com/zhpd/sd/live.m3u8
-#EXTINF:-1 ,连云港公共频道
-http://live.lyg1.com/ggpd/sd/live.m3u8
-#EXTINF:-1 ,张家港新闻综合
-http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8
-#EXTINF:-1 ,张家港民生频道
-http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8
-#EXTINF:-1 ,滨海新闻综合
-http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8
-#EXTINF:-1 ,东台综合频道
-http://dongtai-hls-tv-yf.cm.jstv.com/live/dttv1/online.m3u8
-#EXTINF:-1 ,射阳新闻综合
-http://sheyang-hls-tv-yf.cm.jstv.com/live/syzh/online.m3u8
-#EXTINF:-1 ,如东新闻综合
-http://rudong-hls-tv-yf.cm.jstv.com/live/rdxwzh/online.m3u8
-#EXTINF:-1 ,如东生活服务
-http://rudong-hls-tv-yf.cm.jstv.com/live/rdshfw/online.m3u8
-#EXTINF:-1 ,如东影视娱乐
-http://rudong-hls-tv-yf.cm.jstv.com/live/rdysyl/online.m3u8
-#EXTINF:-1 ,江宁新闻频道
-http://jiangning-hls-tv-yf.cm.jstv.com/live/jnxwzh/online.m3u8
-#EXTINF:-1 ,六合新闻综合
-http://v.www.njlhtv.com/LiveVideoServer/streams/s12/lhtv1/live.m3u8
-#EXTINF:-1 ,六合影视生活
-http://v.www.njlhtv.com/LiveVideoServer/streams/s12/lhtv2/live.m3u8
-#EXTINF:-1 ,溧水新闻综合
-http://live.lsrmw.cn/zhpd/sd/live.m3u8
-#EXTINF:-1 ,溧水影视娱乐
-http://live.lsrmw.cn/ysyl/sd/live.m3u8
-#EXTINF:-1 ,栖霞区新闻频道
-http://pili-live-rtmp.140.i2863.com/i2863-140/live_140_236499.m3u8
-#EXTINF:-1 ,栖霞区新闻频道
-http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8
-#EXTINF:-1 ,铜山综合频道
-http://stream.tstvxmt.com/tstv1/sd/live.m3u8
-#EXTINF:-1 ,铜山三农频道
-http://stream.tstvxmt.com/ts2/sd/live.m3u8
-#EXTINF:-1 ,宜兴新闻频道
-http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8
-#EXTINF:-1 ,宜兴紫砂频道
-http://live-dft-hls-yf.jstv.com/live/yixing_zs/online.m3u8
-#EXTINF:-1 ,武进新闻频道
-https://live.wjyanghu.com/live/CH1.m3u8
-#EXTINF:-1 ,武进生活频道
-https://live.wjyanghu.com/live/CH2.m3u8
-#EXTINF:-1 ,海安新闻综合
-http://haian-hls-tv-yf.cm.jstv.com/live/haaxwzh/online.m3u8
-#EXTINF:-1 ,新沂新闻频道
-http://live.xysrmt.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,新沂生活频道
-http://live.xysrmt.cn/shpd/sd/live.m3u8
-#EXTINF:-1 ,邳州综合频道
-http://stream.pznews.com/pztv2/sd/live.m3u8
-#EXTINF:-1 ,邳州综艺频道
-http://stream.pznews.com/pztv1/sd/live.m3u8
-#EXTINF:-1 ,丰县新闻综合
-http://fengxian-hls-tv-yf.cm.jstv.com/live/fxxwzh/online.m3u8
-#EXTINF:-1 ,丰县生活娱乐
-http://fengxian-hls-tv-yf.cm.jstv.com/live/fxshyl/online.m3u8
-#EXTINF:-1 ,丰县新农村
-http://fengxian-hls-tv-yf.cm.jstv.com/live/fxxnc/online.m3u8
-#EXTINF:-1 ,句容新闻综合
-http://218.3.92.100:1937/live/jrxwzh/playlist.m3u8
-#EXTINF:-1 ,句容生活频道
-http://218.3.92.100:1937/live/shenghuo/playlist.m3u8
-#EXTINF:-1 ,句容影视频道
-http://218.3.92.100:1937/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,句容党建频道
-http://218.3.92.100:1937/live/dangjian/playlist.m3u8
-#EXTINF:-1 ,睢宁综合频道
-http://suining-hls-tv-yf.cm.jstv.com/live/suiningzh/online.m3u8
-#EXTINF:-1 ,睢宁综合频道
-http://tv.jrsncn.com:9001/hls/live/live1/stream.m3u8
-#EXTINF:-1 ,睢宁生活教育
-http://suining-hls-tv-yf.cm.jstv.com/live/suiningsh/online.m3u8
-#EXTINF:-1 ,睢宁生活教育
-http://tv.jrsncn.com:9001/hls/live/live2/stream.m3u8
-#EXTINF:-1 ,睢宁三农频道
-http://suining-hls-tv-yf.cm.jstv.com/live/suiningsn/online.m3u8
-#EXTINF:-1 ,睢宁三农频道
-http://tv.jrsncn.com:9001/hls/live/live3/stream.m3u8
-#EXTINF:-1 ,睢宁资讯频道
-http://suining-hls-tv-yf.cm.jstv.com/live/suiningys/online.m3u8
-#EXTINF:-1 ,睢宁资讯频道
-http://tv.jrsncn.com:9001/hls/live/live4/stream.m3u8
-#EXTINF:-1 ,沭阳综合频道
-http://shuyang-hls-tv-yf.cm.jstv.com/live/shuyangzh/online.m3u8
-#EXTINF:-1 ,扬中新闻频道
-http://yangzhong-hls-tv-yf.cm.jstv.com/live/xwzh/online.m3u8
-#EXTINF:-1 ,扬中党建民生
-http://yangzhong-hls-tv-yf.cm.jstv.com/live/yzdj/online.m3u8
-#EXTINF:-1 ,靖江新闻综合
-http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8
-#EXTINF:-1 ,靖江新闻综合
-http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8
-#EXTINF:-1 ,东海新闻频道
-http://jsdh.chinashadt.com:2035/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,东海文娱频道
-http://jsdh.chinashadt.com:2035/live/3.stream/playlist.m3u8
-#EXTINF:-1 ,东海资讯频道
-http://jsdh.chinashadt.com:2035/live/4.stream/playlist.m3u8
-#EXTINF:-1 ,东海国学与家道
-http://jsdh.chinashadt.com:2035/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,吴江新闻综合
-http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8
-#EXTINF:-1 ,宝应新闻综合
-http://jsby.chinashadt.com:2035/live/by1.stream/playlist.m3u8
-#EXTINF:-1 ,宝应生活资讯
-http://jsby.chinashadt.com:2035/live/by2.stream/playlist.m3u8
-#EXTINF:-1 ,高邮综合频道
-http://gaoyou-hls-tv-yf.cm.jstv.com/live/gaoyouxw/online.m3u8
-#EXTINF:-1 ,仪征新闻综合
-http://yizheng-hls-tv-yf.cm.jstv.com/live/yzxwzh/online.m3u8
-#EXTINF:-1 ,仪征生活频道
-http://yizheng-hls-tv-yf.cm.jstv.com/live/yzshsh/online.m3u8
-#EXTINF:-1 ,沛县新闻综合
-http://peixian-hls-tv-yf.cm.jstv.com/live/pxzh/online.m3u8
-#EXTINF:-1 ,灌云综合频道
-http://37425.hlsplay.aodianyun.com/tv_radio_37425/tv_channel_777.m3u8
-#EXTINF:-1 ,灌云影视频道
-http://37425.hlsplay.aodianyun.com/tv_radio_37425/tv_channel_774.m3u8
-#EXTINF:-1 ,泗阳综合频道
-http://siyang-hls-tv-yf.cm.jstv.com/live/siyangzh/online.m3u8
-#EXTINF:-1 ,泗阳资讯频道
-http://siyang-hls-tv-yf.cm.jstv.com/live/siyangzx/online.m3u8
-#EXTINF:-1 ,昆山新闻综合
-http://221.6.85.150:9000/live/ksxwzh_800/ksxwzh_800.m3u8
-#EXTINF:-1 ,昆山社会生活
-http://221.6.85.150:9000/live/ksshsh_800/ksshsh_800.m3u8
-#EXTINF:-1 ,赣榆新闻综合
-http://ganyu-hls-tv-yf.cm.jstv.com/live/ganyutv/online.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://120.221.5.105:8089/PLTV/88888888/224/3221225998/index.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://120.221.5.175:8089/PLTV/88888888/224/3221225998/index.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://120.221.44.107:8089/PLTV/88888888/224/3221225998/index.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://120.221.5.165:8089/PLTV/88888888/224/3221225998/index.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://ivi.bupt.edu.cn/hls/gedocu.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://112.50.243.8:80/PLTV/88888888/224/3221226937/1.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226714/index.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://39.130.215.158:6610/gitv_live/G_JINYINGJS-HD/G_JINYINGJS-HD.m3u8
-#EXTINF:-1 ,金鹰纪实HD
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226351/1.m3u8
-#EXTINF:-1 ,湖南都市
-http://hnsd.chinashadt.com:2036/live/stream:hunandushi.stream/playlist.m3u8
-#EXTINF:-1 ,茶频道
-http://112.50.243.8/PLTV/88888888/224/3221226859/1.m3u8
-#EXTINF:-1 ,茶频道
-http://39.134.176.148/PLTV/88888888/224/3221226744/index.m3u8
-#EXTINF:-1 ,金鹰纪实
-http://39.134.176.148/PLTV/88888888/224/3221226831/index.m3u8
-#EXTINF:-1 ,快乐购
-http://112.50.243.8/PLTV/88888888/224/3221226855/1.m3u8
-#EXTINF:-1 ,快乐购
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226353/1.m3u8
-#EXTINF:-1 ,湖南教育
-http://pull.hnedutv.com/live/edutv.m3u8
-#EXTINF:-1 ,长沙新闻频道
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_346.m3u8
-#EXTINF:-1 ,长沙政法频道
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_348.m3u8
-#EXTINF:-1 ,长沙政法频道
-https://hls.quklive.com/live/1552030249026733/index.m3u8
-#EXTINF:-1 ,长沙女性频道
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_349.m3u8
-#EXTINF:-1 ,长沙女性频道
-https://hls.quklive.com/live/1551337800259710/index.m3u8
-#EXTINF:-1 ,长沙磁浮电视
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_355.m3u8
-#EXTINF:-1 ,长沙磁浮电视
-https://hls.quklive.com/live/1551751256158751/index.m3u8
-#EXTINF:-1 ,长沙地铁电视
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8
-#EXTINF:-1 ,长沙地铁电视
-https://hls.quklive.com/live/1551751084371710/index.m3u8
-#EXTINF:-1 ,长沙嘉丽购物
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_354.m3u8
-#EXTINF:-1 ,长沙嘉丽购物
-https://hls.quklive.com/live/1551750684224793/index.m3u8
-#EXTINF:-1 ,长沙移动电视
-https://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_357.m3u8
-#EXTINF:-1 ,长沙移动电视
-https://hls.quklive.com/live/1551750947083772/index.m3u8
-#EXTINF:-1 ,株洲长株潭2
-http://47.97.96.69:1935/live/ZZChangZhuTanErTao/playlist.m3u8
-#EXTINF:-1 ,株洲公共法制
-http://47.97.96.69:1935/live/ZZFaZhiMinSheng/playlist.m3u8
-#EXTINF:-1 ,娄底综合频道
-http://218.77.102.118:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,娄底综合频道
-http://119.39.242.52:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,娄底综合频道
-http://mms.ldntv.cn:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,娄底综合频道
-http://218.77.102.118:1935/live/zonghe_iphone/playlist.m3u8
-#EXTINF:-1 ,郴州新闻综合
-http://32130.hlsplay.aodianyun.com/tv_radio_32130/tv_channel_680.m3u8
-#EXTINF:-1 ,郴州公共都市
-http://32130.hlsplay.aodianyun.com/tv_radio_32130/tv_channel_679.m3u8
-#EXTINF:-1 ,衡阳新闻综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_oXPxZb.m3u8
-#EXTINF:-1 ,衡阳新闻综合
-http://hnhs.chinashadt.com:1936/hnhs/tv5.stream/playlist.m3u8
-#EXTINF:-1 ,湘西新闻综合
-https://36514.hlsplay.aodianyun.com/tv_radio_36514/tv_channel_1382.m3u8
-#EXTINF:-1 ,湘西公共频道
-https://36514.hlsplay.aodianyun.com/tv_radio_36514/tv_channel_1381.m3u8
-#EXTINF:-1 ,张家界新闻综合
-http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8
-#EXTINF:-1 ,张家界公共频道
-http://stream.zjjrtv.com/zjjtv2/hd/live.m3u8
-#EXTINF:-1 ,浏阳新闻频道
-http://58.20.59.58:8020/live/nvod4.stream_aac/playlist.m3u8
-#EXTINF:-1 ,浏阳生活频道
-http://58.20.59.58:8020/live/nvod1.stream_aac/playlist.m3u8
-#EXTINF:-1 ,花垣综合频道
-http://pili-live-hls.zhhydsgb.tianma3600.com/zhhydsgb/zhpd.m3u8
-#EXTINF:-1 ,龙山综合频道
-http://hnlsx.chinashadt.com:2037/tuiliu/tv1.stream/playlist.m3u8
-#EXTINF:-1 ,韶山综合频道
-http://liveplay.rednet.cn/live/shaoshan_broadcast.m3u8
-#EXTINF:-1 ,湘潭县综合
-http://21084.liveplay.myqcloud.com/live/21084_13241b8296ee11e892905cb9018cf0d4.m3u8
-#EXTINF:-1 ,湘乡新闻频道
-http://play-dgv-xhncloud.voc.com.cn/live/5243_hRHZst.m3u8
-#EXTINF:-1 ,湘乡资讯频道
-http://play-dgv-xhncloud.voc.com.cn/live/5243_KoTa5j.m3u8
-#EXTINF:-1 ,汨罗新闻综合
-http://hnml.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,汨罗新闻综合
-http://hnml.chinashadt.com:2036/live/1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,云溪综合频道
-http://liveplay.rednet.cn/live/yunxi_tv.m3u8
-#EXTINF:-1 ,桂阳新闻综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_bnXSmh.m3u8
-#EXTINF:-1 ,永兴综合频道
-http://play-dgv-xhncloud.voc.com.cn/live/5243_xAptJZ.m3u8
-#EXTINF:-1 ,宜章新闻综合
-http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8
-#EXTINF:-1 ,宜章新闻综合
-http://hnyz.chinashadt.com:2036/live/stream:tv1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,宜章社会法制
-http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8
-#EXTINF:-1 ,宜章社会法制
-http://hnyz.chinashadt.com:2036/live/stream:tv2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,茶陵综合频道
-http://liveplay.rednet.cn/live/chaling_tv.m3u8
-#EXTINF:-1 ,渌口综合频道
-http://vod.zzlknews.cn:40731/live/_definst_/lxzh/playlist.m3u8
-#EXTINF:-1 ,醴陵综合频道
-http://liveplay.rednet.cn/live/21084_145ba4ee9f0511e992905cb9018cf0d4.m3u8
-#EXTINF:-1 ,醴陵经济生活
-http://liveplay.rednet.cn/live/21084_d493601ba2e511e992905cb9018cf0d4.m3u8
-#EXTINF:-1 ,衡东综合频道
-http://play-dgv-xhncloud.voc.com.cn/live/5243_kZyPzr.m3u8
-#EXTINF:-1 ,衡南综合频道
-http://liveplay.rednet.cn/live/hengnan_tv_5b96f6.m3u8
-#EXTINF:-1 ,衡山综合频道
-http://play-dgv-xhncloud.voc.com.cn/live/5243_Z1gzMY.m3u8
-#EXTINF:-1 ,衡山综合频道
-http://hnhs.chinashadt.com:1936/hnhs/tv6.stream/playlist.m3u8
-#EXTINF:-1 ,耒阳时政综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_XY4U6u.m3u8
-#EXTINF:-1 ,安乡新闻综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_Mn6vb7.m3u8
-#EXTINF:-1 ,邵东综合频道
-http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8
-#EXTINF:-1 ,新邵电视台
-http://play-dgv-xhncloud.voc.com.cn/live/5243_XqvSiE.m3u8
-#EXTINF:-1 ,沅江电视台
-http://play-dgv-xhncloud.voc.com.cn/live/5243_tFSdBA.m3u8
-#EXTINF:-1 ,道县综合频道
-http://40604.hlsplay.aodianyun.com/tv_radio_40604/tv_channel_1343.m3u8
-#EXTINF:-1 ,新化新闻综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_fLcKRo.m3u8
-#EXTINF:-1 ,冷水江新闻综合
-http://play-dgv-xhncloud.voc.com.cn/live/5243_E8Ufu3.m3u8
-#EXTINF:-1 ,江西风尚购物
-http://183.207.248.71/cntv/live1/fengshanggw/fengshanggw
-#EXTINF:-1 ,江西风尚购物
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225679/index.m3u8
-#EXTINF:-1 ,江西风尚购物
-http://112.50.243.8/PLTV/88888888/224/3221225875/1.m3u8
-#EXTINF:-1 ,江西风尚购物
-http://39.134.65.162/PLTV/88888888/224/3221225593/index.m3u8
-#EXTINF:-1 ,江西风尚购物
-http://39.134.176.148/PLTV/88888888/224/3221226761/index.m3u8
-#EXTINF:-1 ,江西教育频道
-https://hls-live.jxeduyun.com/streams/5e05b4659858d_720p.m3u8
-#EXTINF:-1 ,新余新闻综合
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu_hd1.m3u8
-#EXTINF:-1 ,新余新闻综合
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu.m3u8
-#EXTINF:-1 ,新余公共频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu_hd2.m3u8
-#EXTINF:-1 ,新余公共频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu2.m3u8
-#EXTINF:-1 ,新余教育频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu_hd3.m3u8
-#EXTINF:-1 ,新余教育频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xinyu3.m3u8
-#EXTINF:-1 ,吉安新闻综合
-http://stream.ijatv.com/jatv1/hd/live.m3u8
-#EXTINF:-1 ,吉安公共频道
-http://stream.ijatv.com/jatv2/hd/live.m3u8
-#EXTINF:-1 ,上饶新闻综合
-http://live.0793.tv/srtv1/sd/live.m3u8
-#EXTINF:-1 ,上饶公共频道
-http://live.0793.tv/srtv2/sd/live.m3u8
-#EXTINF:-1 ,抚州综合频道
-http://111.75.179.195:30767/video/live_vide.m3u8
-#EXTINF:-1 ,抚州公共频道
-http://111.75.179.195:30767/video/live_vide2.m3u8
-#EXTINF:-1 ,赣州新闻综合
-http://live.jxgztv.com:28881/live/9/9.m3u8
-#EXTINF:-1 ,赣州新闻综合
-http://223.84.197.210:28881/live/9/9.m3u8
-#EXTINF:-1 ,宜春新闻综合
-http://live2.ycstv.com/hls/YCTV1HD.m3u8
-#EXTINF:-1 ,宜春法治频道
-http://live2.ycstv.com/hls/YCTV2HD.m3u8
-#EXTINF:-1 ,萍乡新闻综合
-http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8
-#EXTINF:-1 ,萍乡公共频道
-http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv3stream.m3u8
-#EXTINF:-1 ,萍乡教育频道
-http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8
-#EXTINF:-1 ,安远综合频道
-http://live.mudu.tv/watch/edrhv2.m3u8
-#EXTINF:-1 ,定南综合频道
-http://live.mudu.tv/watch/ufdxhy.m3u8
-#EXTINF:-1 ,宁都综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_ningdu.m3u8
-#EXTINF:-1 ,南康综合频道
-https://live.mudu.tv/watch/rbkwnm.m3u8
-#EXTINF:-1 ,南康电视二套
-https://live.mudu.tv/watch/s2nxf7.m3u8
-#EXTINF:-1 ,信丰综合频道
-http://live.mudu.tv/watch/ucmev8.m3u8
-#EXTINF:-1 ,德兴新闻综合
-http://218.64.168.174:5011/vod/hls/c01/live.m3u8
-#EXTINF:-1 ,余干综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_yugan.m3u8
-#EXTINF:-1 ,铅山综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_yanshan.m3u8
-#EXTINF:-1 ,玉山新闻综合
-http://116.62.127.108:10080/hls/BkZUN5r6f/BkZUN5r6f_live.m3u8
-#EXTINF:-1 ,东乡区综合频道
-http://live.mudu.tv/watch/d6jero.m3u8
-#EXTINF:-1 ,广昌新闻综合
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_guangchuangTV.m3u8
-#EXTINF:-1 ,乐安综合频道
-http://live.mudu.tv/watch/q6888f.m3u8
-#EXTINF:-1 ,万载综合频道
-http://jxwz.chinashadt.com:2036/live/tv1.stream/playlist.m3u8
-#EXTINF:-1 ,樟树综合频道
-http://live.mudu.tv/watch/4wx4y2.m3u8
-#EXTINF:-1 ,分宜综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_fenyi_tv.m3u8
-#EXTINF:-1 ,遂川综合频道
-http://live.mudu.tv/watch/br9n19.m3u8
-#EXTINF:-1 ,永新电视一套
-http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8
-#EXTINF:-1 ,永新电视二套
-http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8
-#EXTINF:-1 ,永新电视三套
-http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8
-#EXTINF:-1 ,都昌综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_duchang.m3u8
-#EXTINF:-1 ,庐山综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_lushan.m3u8
-#EXTINF:-1 ,彭泽综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_pengze.m3u8
-#EXTINF:-1 ,瑞昌综合频道
-http://livepgc.sobeycache.com/pgc/304201b2a8221d32a82291b726e2cfc2.m3u8?auth_key=1587628197-0-0-e0d31d82ae715e7b53343d1878fad6aa
-#EXTINF:-1 ,修水新闻综合
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xiushui01.m3u8
-#EXTINF:-1 ,修水民生民声
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_xiushui02.m3u8
-#EXTINF:-1 ,永修电视一套
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_yongxiu.m3u8
-#EXTINF:-1 ,永修电视二套
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_yongxiu2.m3u8
-#EXTINF:-1 ,共青城一套
-http://livecdn.jjntv.cn/live/gq01.m3u8?auth_key=1582421591-0-0-5bd987e16bcf0e690a7d86a84563fb09
-#EXTINF:-1 ,共青城二套
-http://livecdn.jjntv.cn/live/gq02.m3u8?auth_key=1582423221-0-0-2fcd7d9a9db5e040324858c6acb8a37e
-#EXTINF:-1 ,莲花综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_lianhua.m3u8
-#EXTINF:-1 ,芦溪综合频道
-http://live05.jxtvcn.com.cn/live-jxtvcn/ganyun_luxi2.m3u8
-#EXTINF:-1 ,浮梁综合频道
-http://40195.hlsplay.aodianyun.com/diantaizhibo/stream.m3u8
-#EXTINF:-1 ,湖北综合
-http://live.cjyun.org/hubeitv/s10008-live-hbzh.m3u8
-#EXTINF:-1 ,湖北公共新闻
-http://live.cjyun.org/hubeitv/s10008-live-hbgg.m3u8
-#EXTINF:-1 ,湖北经视
-http://live.cjyun.org/hubeitv/s10008-live-hbjs.m3u8
-#EXTINF:-1 ,湖北生活
-http://live.cjyun.org/hubeitv/s10008-live-hbsh.m3u8
-#EXTINF:-1 ,湖北教育
-http://live.cjyun.org/hubeitv/s10008-live-hbjy.m3u8
-#EXTINF:-1 ,湖北垄上
-http://live.cjyun.org/hubeitv/s10008-live-hbls.m3u8
-#EXTINF:-1 ,湖北休闲指南
-http://live.cjyun.org/hubeitv/s10008-live-xxzn.m3u8
-#EXTINF:-1 ,湖北休闲指南
-http://183.207.248.71/gitv/live1/G_ZHIYEZN/G_ZHIYEZN
-#EXTINF:-1 ,湖北休闲指南
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8
-#EXTINF:-1 ,美嘉购物
-http://live.cjyun.org/hubeitv/s10008-live-mjgw.m3u8
-#EXTINF:-1 ,中国交通湖北
-http://tv.lanjingfm.com/cctbn/hubei.m3u8
-#EXTINF:-1 ,武汉新闻综合
-http://stream.appwuhan.com/1tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉科教生活
-http://stream.appwuhan.com/3tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉经济频道
-http://stream.appwuhan.com/4tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉文体频道
-http://stream.appwuhan.com/5tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉海外频道
-http://stream.appwuhan.com/6tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉教育频道
-http://stream.appwuhan.com/jyzb/sd/live.m3u8
-#EXTINF:-1 ,襄阳综合
-http://xiangyang.live.cjyun.org/video/s10125-news_hd/index.m3u8
-#EXTINF:-1 ,襄阳经济生活
-http://xiangyang.live.cjyun.org/video/s10125-society_hd/index.m3u8
-#EXTINF:-1 ,襄阳公共
-http://xiangyang.live.cjyun.org/video/s10125-education_hd/index.m3u8
-#EXTINF:-1 ,恩施综合
-http://enshi.live.cjyun.org/video/s10070-eszh.m3u8
-#EXTINF:-1 ,恩施公共
-http://enshi.live.cjyun.org/video/s10070-esgg.m3u8
-#EXTINF:-1 ,宜昌综合
-http://yichang.live.cjyun.org/video/s10091-yczh/index.m3u8
-#EXTINF:-1 ,宜昌公共
-http://yichang.live.cjyun.org/video/s10091-ycgg/index.m3u8
-#EXTINF:-1 ,荆门新闻综合
-http://jingmen.live.cjyun.org/video/s10101-jmnews.m3u8
-#EXTINF:-1 ,荆门新闻综合
-http://live.jmtv.com.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,荆门教育频道
-http://jingmen.live.cjyun.org/video/s10101-jmjytv.m3u8
-#EXTINF:-1 ,荆门教育频道
-http://live.jmtv.com.cn/ggsh/sd/live.m3u8
-#EXTINF:-1 ,荆门公共频道
-http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8
-#EXTINF:-1 ,荆门公共频道
-http://live.jmtv.com.cn/ngpd/sd/live.m3u8
-#EXTINF:-1 ,随州综合
-http://suizhou.source.cjyun.org/video/s10145-szzhpd.m3u8
-#EXTINF:-1 ,随州农村
-http://suizhou.source.cjyun.org/video/s10145-szncpd.m3u8
-#EXTINF:-1 ,孝感新闻综合
-http://xiaogan.live.cjyun.org/video/s10139-xg/index.m3u8
-#EXTINF:-1 ,孝感公共频道
-http://xiaogan.live.cjyun.org/video/s10139-shpd/index.m3u8
-#EXTINF:-1 ,黄冈新闻频道
-http://huanggang.live.cjyun.org/video/s10120-xwzh.m3u8
-#EXTINF:-1 ,黄冈公共频道
-http://huanggang.live.cjyun.org/video/s10120-xwgg.m3u8
-#EXTINF:-1 ,仙桃新闻综合
-http://221.233.242.239:280/live/71/playlist.m3u8
-#EXTINF:-1 ,仙桃生活文体
-http://221.233.242.239:280/live/72/playlist.m3u8
-#EXTINF:-1 ,鄂州新闻综合
-http://ezhou.live.cjyun.org/video/s10098-EZ2T/index.m3u8
-#EXTINF:-1 ,鄂州公共频道
-http://ezhou.live.cjyun.org/video/s10098-EZ1T/index.m3u8
-#EXTINF:-1 ,咸宁综合频道
-http://xianning.live.cjyun.org/video/s10140-XNGG.m3u8
-#EXTINF:-1 ,咸宁公共频道
-http://xianning.live.cjyun.org/video/s10140-XNTV-1.m3u8
-#EXTINF:-1 ,利川新闻综合
-http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lczh.m3u8
-#EXTINF:-1 ,利川公共频道
-http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8
-#EXTINF:-1 ,长阳综合频道
-http://changyang.live.cjyun.org/video/s10114-cy1t/index.m3u8
-#EXTINF:-1 ,当阳综合频道
-http://dangyang.live.tempsource.cjyun.org/videotmp/s10118-DYZH.m3u8
-#EXTINF:-1 ,当阳影视娱乐
-http://dangyang.live.tempsource.cjyun.org/videotmp/s10118-DYYS.m3u8
-#EXTINF:-1 ,五峰综合频道
-http://wufeng.live.tempsource.cjyun.org/videotmp/s10112-wftv-1.m3u8
-#EXTINF:-1 ,夷陵综合频道
-http://yiling.live.cjyun.org/video/s10174-TC1T/index.m3u8
-#EXTINF:-1 ,秭归新闻综合
-http://zigui.live.cjyun.org/video/s10111-ZGTV1.m3u8
-#EXTINF:-1 ,咸丰新闻综合
-http://xianfeng.live.tempsource.cjyun.org/videotmp/s10096-xftv1.m3u8
-#EXTINF:-1 ,咸丰影视频道
-http://xianfeng.live.tempsource.cjyun.org/videotmp/s10096-xftv2.m3u8
-#EXTINF:-1 ,安陆新闻综合
-http://altvplay.gdnewmedia.cc/live/xwzh.m3u8
-#EXTINF:-1 ,安陆党建教育
-http://altvplay.gdnewmedia.cc/live/djjy.m3u8
-#EXTINF:-1 ,大悟综合频道
-http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8
-#EXTINF:-1 ,孝昌新闻党建
-http://xiaochang.live.cjyun.org/video/s10128-xcxw/index.m3u8
-#EXTINF:-1 ,孝昌生活频道
-http://xiaochang.live.cjyun.org/video/s10128-xcsh/index.m3u8
-#EXTINF:-1 ,应城新闻综合
-http://yingcheng.live.cjyun.org/video/s10135-YCZH/index.m3u8
-#EXTINF:-1 ,应城生活频道
-http://yingcheng.live.cjyun.org/video/s10135-YCDJ/index.m3u8
-#EXTINF:-1 ,云梦综合频道
-http://yunshangyunmeng.live.cjyun.org/video/s10130-ymzh.m3u8
-#EXTINF:-1 ,云梦党建农业
-http://yunshangyunmeng.live.cjyun.org/video/s10130-ymdjny.m3u8
-#EXTINF:-1 ,红安综合
-http://hongan.live.cjyun.org/video/s10063-HAZH.m3u8
-#EXTINF:-1 ,罗田综合
-http://luotian.live.cjyun.org/video/s10013-LTZH/index.m3u8
-#EXTINF:-1 ,罗田旅游
-http://luotian.live.cjyun.org/video/s10013-LTLY/index.m3u8
-#EXTINF:-1 ,武穴综合
-http://wuxue.live.cjyun.org/video/s10107-wxtv1/index.m3u8
-#EXTINF:-1 ,巴东综合
-http://badong.live.cjyun.org/video/s10095-bdtv1.m3u8
-#EXTINF:-1 ,大冶一套
-http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8
-#EXTINF:-1 ,大冶二套
-http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8
-#EXTINF:-1 ,赤壁一套
-http://chibi.live.tempsource.cjyun.org/videotmp/s10138-CBTV1.m3u8
-#EXTINF:-1 ,嘉鱼新闻综合
-http://jiayu.live.tempsource.cjyun.org/videotmp/s10131-jyzh.m3u8
-#EXTINF:-1 ,通山综合
-http://tongshan.live.cjyun.org/video/s10134-TONGSHAN-live.m3u8
-#EXTINF:-1 ,鹤峰综合频道
-http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8
-#EXTINF:-1 ,鹤峰影视频道
-http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv2.m3u8
-#EXTINF:-1 ,神农架新闻综合
-http://shennongjia.live.cjyun.org/video/s10144-SNJ-live.m3u8
-#EXTINF:-1 ,广水新闻频道
-http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8
-#EXTINF:-1 ,谷城综合频道
-http://gucheng.live.tempsource.cjyun.org/videotmp/s10116-GCTV1.m3u8
-#EXTINF:-1 ,石首综合
-http://sstvplay.ssgdlive.com/live/sszh.m3u8
-#EXTINF:-1 ,黄陂新闻频道
-http://live.hptv.com.cn:10080/live/cctv13.m3u8
-#EXTINF:-1 ,黄陂生活频道
-http://live.hptv.com.cn:10080/live/cctv9.m3u8
-#EXTINF:-1 ,房县新闻综合
-http://fangxian.tempsource.cjyun.org/videotmp/s10064-fxtv1.m3u8
-#EXTINF:-1 ,阳新新闻
-http://yangxin.live.cjyun.org/video/s10104-yxtv1.m3u8
-#EXTINF:-1 ,宣恩综合
-http://xuanen.live.cjyun.org/video/s10097-xezh/index.m3u8
-#EXTINF:-1 ,公安综合
-http://gongan.live.tempsource.cjyun.org/videotmp/10088-gatv1.m3u8
-#EXTINF:-1 ,公安生活
-http://gongan.live.tempsource.cjyun.org/videotmp/s10088-gatv3.m3u8
-#EXTINF:-1 ,安徽经济生活
-http://zbbf2.ahtv.cn/live/750.m3u8
-#EXTINF:-1 ,安徽综艺
-http://zbbf2.ahtv.cn/live/758.m3u8
-#EXTINF:-1 ,安徽综艺
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8
-#EXTINF:-1 ,安徽科教
-http://zbbf2.ahtv.cn/live/754.m3u8
-#EXTINF:-1 ,安徽公共
-http://zbbf2.ahtv.cn/live/752.m3u8
-#EXTINF:-1 ,安徽人物
-http://zbbf2.ahtv.cn/live/da9.m3u8
-#EXTINF:-1 ,安徽国际
-http://zbbf2.ahtv.cn/live/dab.m3u8
-#EXTINF:-1 ,安徽导视
-http://hls.shangzhibo.tv/onelive/MTAxMDYyLTM1MjYwNzQtVW05ZG85dnVMcw==.m3u8
-#EXTINF:-1 ,家家购物
-http://play.jiajiamall.com/live/1551800431333476.m3u8?txSecret=e968b747d3de7a5ce929be16e7000c83&txTime=6BF1AC80
-#EXTINF:-1 ,家家购物
-http://183.207.248.71/gitv/live1/jiajia/jiajia
-#EXTINF:-1 ,家家购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226354/1.m3u8
-#EXTINF:-1 ,皖江购物
-http://play.jiajiamall.com/live/1551800448238475.m3u8?txSecret=6beb68de1801ce17153c66f222eddb4c&txTime=6BF1AC80
-#EXTINF:-1 ,中国交通安徽
-http://tv.lanjingfm.com/cctbn/anhui.m3u8
-#EXTINF:-1 ,睛彩安徽
-http://zbbf2.ahtv.cn/live/db9.m3u8
-#EXTINF:-1 ,池州新闻综合
-http://cm.wshls.homecdn.com/live/829f.m3u8
-#EXTINF:-1 ,池州公共频道
-http://cm.wshls.homecdn.com/live/829d.m3u8
-#EXTINF:-1 ,淮北新闻频道
-http://live.0561rtv.cn/xwzh/hd/live.m3u8
-#EXTINF:-1 ,淮北公共频道
-http://live.0561rtv.cn/ggpd/hd/live.m3u8
-#EXTINF:-1 ,淮北教育频道
-http://live.0561rtv.cn/jypd/hd/live.m3u8
-#EXTINF:-1 ,宿州新闻综合
-http://live.ahsz.tv/video/s10001-szzh/index.m3u8
-#EXTINF:-1 ,宿州公共频道
-http://live.ahsz.tv/video/s10001-ggpd/index.m3u8
-#EXTINF:-1 ,宿州科教频道
-http://live.ahsz.tv/video/s10001-kxjy/index.m3u8
-#EXTINF:-1 ,阜阳新闻综合
-https://hwapi.yunshicloud.com/8rj7c1/8y12s1.m3u8
-#EXTINF:-1 ,阜阳公共频道
-https://hwapi.yunshicloud.com/8rj7c1/55z34w.m3u8
-#EXTINF:-1 ,阜阳教育频道
-https://hwapi.yunshicloud.com/8rj7c1/xczxey.m3u8
-#EXTINF:-1 ,铜陵新闻综合
-http://dstpush1.retalltech.com/app/stream1.m3u8
-#EXTINF:-1 ,铜陵公共频道
-http://dstpush1.retalltech.com/app/stream2.m3u8
-#EXTINF:-1 ,铜陵科教频道
-http://dstpush1.retalltech.com/app/stream3.m3u8
-#EXTINF:-1 ,亳州新闻频道
-http://zbbf2.ahbztv.com/live/416.m3u8
-#EXTINF:-1 ,亳州新闻频道
-http://218.22.251.12:8001/tslslive/wT9aUpL/hls/live_sd.m3u8
-#EXTINF:-1 ,亳州农村频道
-http://zbbf2.ahbztv.com/live/418.m3u8
-#EXTINF:-1 ,亳州农村频道
-http://218.22.251.12:8001/tslslive/JpWzs2u/hls/live_sd.m3u8
-#EXTINF:-1 ,芜湖新闻综合
-http://live1.wuhubtv.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,芜湖生活频道
-http://live1.wuhubtv.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,芜湖公共频道
-http://live1.wuhubtv.com/channel3/sd/live.m3u8
-#EXTINF:-1 ,芜湖教育频道
-http://live1.wuhubtv.com/channel4/sd/live.m3u8
-#EXTINF:-1 ,安庆公共频道
-https://hwapi.yunshicloud.com/0spq8i/72wt2h.m3u8
-#EXTINF:-1 ,安庆教育频道
-https://hwapi.yunshicloud.com/0spq8i/r04v8s.m3u8
-#EXTINF:-1 ,安庆石化电视
-http://183.167.250.225:8081/live/0.m3u8
-#EXTINF:-1 ,六安新闻综合
-http://live.china-latv.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,六安公共频道
-http://live.china-latv.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,淮南新闻综合
-http://stream.0554news.com/hnds1/sd/live.m3u8
-#EXTINF:-1 ,淮南都市生活
-http://stream.0554news.com/hnds2/sd/live.m3u8
-#EXTINF:-1 ,马鞍山新闻综合
-http://stream1.massp.cn/c01/sd/live.m3u8
-#EXTINF:-1 ,马鞍山公共频道
-http://stream.massp.cn/c02/sd/live.m3u8
-#EXTINF:-1 ,滁州新闻综合
-http://183.167.193.45:1935/live/cztvzh/playlist.m3u8
-#EXTINF:-1 ,滁州科教频道
-http://183.167.193.45:1935/live/cztvkj/playlist.m3u8
-#EXTINF:-1 ,滁州公共频道
-http://183.167.193.45:1935/live/cztvgg/playlist.m3u8
-#EXTINF:-1 ,枞阳综合频道
-https://hwapi.yunshicloud.com/7y5967/mom04l.m3u8
-#EXTINF:-1 ,繁昌文体娱乐
-https://hwapi.yunshicloud.com/22356x/ido05e.m3u8
-#EXTINF:-1 ,芜湖县新闻综合
-http://220.178.172.47:8090/live/ch0.m3u8
-#EXTINF:-1 ,芜湖县影视频道
-http://220.178.172.47:8090/live/ch1.m3u8
-#EXTINF:-1 ,五河新闻综合
-http://60.170.109.149:1935/live/wuhe2/playlist.m3u8
-#EXTINF:-1 ,五河影视生活
-http://60.170.109.149:1935/live/wuhe1/playlist.m3u8
-#EXTINF:-1 ,阜南新闻综合
-http://112.27.139.242:8278/fnxwzhd/playlist.m3u8
-#EXTINF:-1 ,太和新闻综合
-http://p2.weizan.cn/1110366022/132071060845712961/live.m3u8
-#EXTINF:-1 ,太和教育频道
-http://p2.weizan.cn/1110366022/132008090586131531/live.m3u8
-#EXTINF:-1 ,绩溪新闻频道
-http://124.112.228.134:1935/live/zongyi/playlist.m3u8
-#EXTINF:-1 ,绩溪新闻频道
-http://120.209.111.83:1935/live/zongyi/playlist.m3u8
-#EXTINF:-1 ,泾县新闻频道
-http://60.173.109.86:1935/live/live1/playlist.m3u8
-#EXTINF:-1 ,泾县经济生活
-http://60.173.109.86:1935/live/live2/playlist.m3u8
-#EXTINF:-1 ,郎溪新闻频道
-http://117.70.93.210:1935/live/xinwen/playlist.m3u8
-#EXTINF:-1 ,宁国新闻综合
-https://40426.hlsplay.aodianyun.com/tv_radio_40426/tv_channel_1588.m3u8
-#EXTINF:-1 ,宁国城市生活
-https://40426.hlsplay.aodianyun.com/tv_radio_40426/tv_channel_1589.m3u8
-#EXTINF:-1 ,当涂新闻综合
-http://newvideo.dangtutv.cn:8278/dt1/playlist.m3u8
-#EXTINF:-1 ,含山新闻综合
-http://223.241.197.199:1935/live/xinwen/playlist.m3u8
-#EXTINF:-1 ,含山影视生活
-http://223.241.197.199:1935/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,和县蔬菜频道
-https://hwapi.yunshicloud.com/i01i85/b07t58.m3u8
-#EXTINF:-1 ,濉溪电视一套
-https://hwapi.yunshicloud.com/m87oxo/251011.m3u8
-#EXTINF:-1 ,濉溪电视二套
-https://hwapi.yunshicloud.com/m87oxo/h7j86z.m3u8
-#EXTINF:-1 ,东至新闻综合
-http://223.247.33.124:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,东至影视频道
-http://223.247.33.124:1935/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,东至文化资讯
-http://223.247.33.124:1935/live/wenhua/playlist.m3u8
-#EXTINF:-1 ,来安综合频道
-http://video.latv.net.cn:8278/latv/playlist.m3u8
-#EXTINF:-1 ,石台综合频道
-http://stkd.fun:8278/stzb/playlist.m3u8
-#EXTINF:-1 ,石台综合频道
-http://112.27.85.131:8278/stzb/playlist.m3u8
-#EXTINF:-1 ,休宁公共生活
-http://37362.hlsplay.aodianyun.com/tv_radio_37362/tv_channel_1341.m3u8
-#EXTINF:-1 ,砀山综合频道
-http://live.dangshannews.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,砀山文艺频道
-http://live.dangshannews.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,灵璧综合频道
-http://live.cms.anhuinews.com/video/s10003-lbtv/index.m3u8
-#EXTINF:-1 ,萧县新闻综合
-http://60.171.238.200:8278/xwzh/playlist.m3u8
-#EXTINF:-1 ,萧县经济生活
-http://60.171.238.200:8278/jjsh/playlist.m3u8
-#EXTINF:-1 ,长丰新闻综合
-http://218.23.114.19:1935/live/xinwen/playlist.m3u8
-#EXTINF:-1 ,肥东新闻综合
-http://appzb2.feidongtv.com/test/test.m3u8
-#EXTINF:-1 ,肥东经济生活
-http://appzb2.feidongtv.com/test2/test2.m3u8
-#EXTINF:-1 ,庐江新闻频道
-http://ljtv-wshls.homecdn.com/live/13607.m3u8
-#EXTINF:-1 ,涡阳新闻综合
-http://111.39.71.77:8099/live/one/playlist.m3u8
-#EXTINF:-1 ,涡阳影视综艺
-http://111.39.71.77:8099/live/two/playlist.m3u8
-#EXTINF:-1 ,蒙城新闻频道
-http://live.plus.ahmctv.net/channel2/sd/live.m3u8
-#EXTINF:-1 ,凤台综合频道
-http://60.175.115.119:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,凤台文化生活
-http://60.175.115.119:1935/live/wenhua/playlist.m3u8
-#EXTINF:-1 ,霍山综合频道
-http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8
-#EXTINF:-1 ,浙江钱江都市
-http://ali-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8
-#EXTINF:-1 ,浙江钱江都市
-http://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8
-#EXTINF:-1 ,浙江钱江都市
-http://yd-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8
-#EXTINF:-1 ,浙江钱江都市
-http://hw-m-l.cztv.com/channels/lantian/channel02/720p.m3u8
-#EXTINF:-1 ,浙江钱江都市
-http://hw-m-l.cztv.com/channels/lantian/channel02/360p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://ali-m-l.cztv.com/channels/lantian/channel03/1080p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://yd-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://hw-m-l.cztv.com/channels/lantian/channel03/360p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://ali-m-l.cztv.com/channels/lantian/channel04/1080p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://yd-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://hw-m-l.cztv.com/channels/lantian/channel04/360p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://ali-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://yd-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://hw-m-l.cztv.com/channels/lantian/channel06/360p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://ali-m-l.cztv.com/channels/lantian/channel07/1080p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://hw-m-l.cztv.com/channels/lantian/channel007/1080p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://yd-m-l.cztv.com/channels/lantian/channel007/1080p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://hw-m-l.cztv.com/channels/lantian/channel07/360p.m3u8
-#EXTINF:-1 ,留学世界
-http://ali-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8
-#EXTINF:-1 ,留学世界
-http://hw-m-l.cztv.com/channels/lantian/channel009/1080p.m3u8
-#EXTINF:-1 ,留学世界
-http://yd-m-l.cztv.com/channels/lantian/channel009/1080p.m3u8
-#EXTINF:-1 ,留学世界
-http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8
-#EXTINF:-1 ,留学世界
-http://hw-m-l.cztv.com/channels/lantian/channel09/360p.m3u8
-#EXTINF:-1 ,浙江国际
-http://ali-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8
-#EXTINF:-1 ,浙江国际
-http://hw-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8
-#EXTINF:-1 ,浙江国际
-http://yd-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8
-#EXTINF:-1 ,浙江国际
-http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8
-#EXTINF:-1 ,浙江国际
-http://hw-m-l.cztv.com/channels/lantian/channel10/360p.m3u8
-#EXTINF:-1 ,数码时代
-http://ali-m-l.cztv.com/channels/lantian/channel12/1080p.m3u8
-#EXTINF:-1 ,数码时代
-http://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8
-#EXTINF:-1 ,数码时代
-http://yd-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8
-#EXTINF:-1 ,数码时代
-http://hw-m-l.cztv.com/channels/lantian/channel12/720p.m3u8
-#EXTINF:-1 ,数码时代
-http://hw-m-l.cztv.com/channels/lantian/channel12/360p.m3u8
-#EXTINF:-1 ,数码时代
-http://39.134.176.148/PLTV/88888888/224/3221226638/index.m3u8
-#EXTINF:-1 ,数码时代
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229419/index.m3u8
-#EXTINF:-1 ,好易购
-http://ali-m-l.cztv.com/channels/lantian/channel11/1080p.m3u8
-#EXTINF:-1 ,好易购
-http://hw-m-l.cztv.com/channels/lantian/channel011/1080p.m3u8
-#EXTINF:-1 ,好易购
-http://yd-m-l.cztv.com/channels/lantian/channel011/1080p.m3u8
-#EXTINF:-1 ,好易购
-http://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8
-#EXTINF:-1 ,好易购
-http://hw-m-l.cztv.com/channels/lantian/channel11/360p.m3u8
-#EXTINF:-1 ,杭州综合
-http://39.134.176.148/PLTV/88888888/224/3221226170/index.m3u8
-#EXTINF:-1 ,杭州综合
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229307/index.m3u8
-#EXTINF:-1 ,杭州明珠
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229310/index.m3u8
-#EXTINF:-1 ,杭州生活
-http://live.aikan.miguvideo.com/PLTV/88888888/224/3221229313/index.m3u8
-#EXTINF:-1 ,绍兴新闻综合
-http://live.shaoxing.com.cn/video/s10001-sxtv1/index.m3u8
-#EXTINF:-1 ,绍兴公共频道
-http://live.shaoxing.com.cn/video/s10001-sxtv2/index.m3u8
-#EXTINF:-1 ,绍兴文化影视
-http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8
-#EXTINF:-1 ,金华新闻综合
-http://stream2.jinhua.com.cn/xwzh/app/live.m3u8
-#EXTINF:-1 ,金华教育科技
-http://stream.jinhua.com.cn/jykj/app/live.m3u8
-#EXTINF:-1 ,金华公共频道
-http://stream2.jinhua.com.cn/jjsh/app/live.m3u8
-#EXTINF:-1 ,金华都市农村
-http://stream.jinhua.com.cn/dsnc/app/live.m3u8
-#EXTINF:-1 ,舟山新闻综合
-http://stream.wifizs.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,舟山新闻综合
-http://live.wifizs.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,舟山公共生活
-http://stream.wifizs.cn/ggsh/sd/live.m3u8
-#EXTINF:-1 ,舟山公共生活
-http://live.wifizs.cn/ggsh/sd/live.m3u8
-#EXTINF:-1 ,舟山群岛旅游
-http://stream.wifizs.cn/qdly/sd/live.m3u8
-#EXTINF:-1 ,舟山群岛旅游
-http://live.wifizs.cn/qdly/sd/live.m3u8
-#EXTINF:-1 ,湖州新闻综合
-http://live2.hzitv.cn/tslslive/zyys888/hls/live_sd.m3u8
-#EXTINF:-1 ,湖州公共民生
-http://live2.hzitv.cn/tslslive/z6NexHK/hls/live_sd.m3u8
-#EXTINF:-1 ,湖州文化娱乐
-http://live2.hzitv.cn/tslslive/rk8Z088/hls/live_sd.m3u8
-#EXTINF:-1 ,嘉兴新闻综合
-http://39.134.176.148/PLTV/88888888/224/3221226358/index.m3u8
-#EXTINF:-1 ,温州新闻综合
-http://hls.dhtv.cn:8080/live/v1_15.m3u8
-#EXTINF:-1 ,温州经济科教
-http://hls.dhtv.cn:8080/live/v2_12.m3u8
-#EXTINF:-1 ,温州都市生活
-http://hls.dhtv.cn:8080/live/v3_13.m3u8
-#EXTINF:-1 ,温州公共频道
-http://hls.dhtv.cn:8080/live/v4_14.m3u8
-#EXTINF:-1 ,安吉新闻频道
-https://32664.hlsplay.aodianyun.com/tv_radio_32664/tv_channel_1499.m3u8
-#EXTINF:-1 ,安吉生活频道
-https://32664.hlsplay.aodianyun.com/tv_radio_32664/tv_channel_1526.m3u8
-#EXTINF:-1 ,安吉影视频道
-https://32664.hlsplay.aodianyun.com/tv_radio_32664/tv_channel_1528.m3u8
-#EXTINF:-1 ,萧山新闻综合
-http://l.cztvcloud.com/channels/lantian/SXxiaoshan1/720p.m3u8
-#EXTINF:-1 ,萧山生活频道
-http://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8
-#EXTINF:-1 ,淳安电视台
-https://wtmtylive.yunshicloud.com/tbziu1/55f255.m3u8
-#EXTINF:-1 ,淳安电视台
-https://wtmtylive.yunshicloud.com/tbziu1/ad592j.m3u8
-#EXTINF:-1 ,临安综合频道
-http://pili-live-rtmp.191.i2863.com/i2863-191/live_191_481352.m3u8
-#EXTINF:-1 ,桐庐综合频道
-http://livetongl.chinamcache.com/live/tlzb01.m3u8?txSecret=0e344d60c8f0ce16b57102ae81d10d6a&txTime=5fd316c1
-#EXTINF:-1 ,余杭综合频道
-http://l.cztvcloud.com/channels/lantian/SXyuhang1/720p.m3u8
-#EXTINF:-1 ,余杭平安频道
-http://l.cztvcloud.com/channels/lantian/SXyuhang2/720p.m3u8
-#EXTINF:-1 ,余杭未来E频道
-http://l.cztvcloud.com/channels/lantian/SXyuhang3/720p.m3u8
-#EXTINF:-1 ,余姚新闻综合
-http://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8
-#EXTINF:-1 ,余姚姚江文化
-http://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8
-#EXTINF:-1 ,余姚幸福生活
-http://l.cztvcloud.com/channels/lantian/SXyuyao2/720p.m3u8
-#EXTINF:-1 ,嵊州新闻综合
-http://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8
-#EXTINF:-1 ,嵊州新闻综合
-https://pili-live-hls.szttkk.cn/szttkk/tv3765-1566196862.m3u8
-#EXTINF:-1 ,嵊泗新闻综合
-http://l.cztvcloud.com/channels/lantian/SXshengsi1/720p.m3u8
-#EXTINF:-1 ,嵊泗新闻综合
-http://shengsi.video.yunshan66.com.cn/720p/StreamName.m3u8
-#EXTINF:-1 ,上虞新闻综合
-http://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8
-#EXTINF:-1 ,上虞文化影视
-http://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8
-#EXTINF:-1 ,上虞新商都
-http://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8
-#EXTINF:-1 ,新昌新闻综合
-http://42483.hlsplay.aodianyun.com/tv_radio_42483/tv_channel_1361.m3u8
-#EXTINF:-1 ,新昌生活频道
-http://42483.hlsplay.aodianyun.com/tv_radio_42483/tv_channel_1362.m3u8
-#EXTINF:-1 ,海宁新闻综合
-http://stream.haining.tv/hnxw/sd/live.m3u8
-#EXTINF:-1 ,海宁生活服务
-http://stream.haining.tv/hnfw/sd/live.m3u8
-#EXTINF:-1 ,玉环新闻综合
-http://liveyuhuan.chinamcache.com/yuhuan/zb01.m3u8?auth_key=1609321370-0-0-521fcb0e45dbecb319ce9f53712efd45
-#EXTINF:-1 ,兰溪新闻综合
-http://l.cztvcloud.com/channels/lantian/SXlanxi1/720p.m3u8
-#EXTINF:-1 ,德清新闻综合
-http://stream.yingxi.tv/xwzh/sd/live.m3u8
-#EXTINF:-1 ,德清文化生活
-http://stream.yingxi.tv/ylpd/sd/live.m3u8
-#EXTINF:-1 ,苍南新闻综合
-http://l.cztvcloud.com/channels/lantian/SXcangnan1/720p.m3u8
-#EXTINF:-1 ,泰顺新闻综合
-http://taishun.news01.yunshanit.com/720p/StreamName.m3u8
-#EXTINF:-1 ,文成综合频道
-http://l.cztvcloud.com/channels/lantian/SXwencheng1/720p.m3u8
-#EXTINF:-1 ,文成二套
-http://l.cztvcloud.com/channels/lantian/SXwencheng2/720p.m3u8
-#EXTINF:-1 ,永嘉新闻综合
-http://l.cztvcloud.com/channels/lantian/SXyongjia1/720p.m3u8
-#EXTINF:-1 ,东阳新闻综合
-http://stream.dybtv.com/xwzh/GQ/live.m3u8
-#EXTINF:-1 ,东阳影视生活
-http://stream.dybtv.com/yssh/GQ/live.m3u8
-#EXTINF:-1 ,柯桥新闻综合
-http://live.scbtv.cn/hls/news/index.m3u8
-#EXTINF:-1 ,柯桥新闻综合
-http://livekeq.chinamcache.com/keqiao/zb02.m3u8?auth_key=1584624411-0-0-a14e00db5c945dd8031b31b0dd98a41e
-#EXTINF:-1 ,柯桥新闻综合
-http://livekeq.chinamcache.com/keqiao/zb02.flv?auth_key=1584614598-0-0-62993970e420930e6b48a5e9745c26a6
-#EXTINF:-1 ,柯桥轻纺城时尚
-http://live.scbtv.cn/hls/qfc/index.m3u8
-#EXTINF:-1 ,柯桥轻纺城时尚
-http://livekeq.chinamcache.com/keqiao/zb01.m3u8?auth_key=1584614566-0-0-8c1d3aa484cc03e4cd994314f6f1dc90
-#EXTINF:-1 ,柯桥轻纺城时尚
-http://livekeq.chinamcache.com/keqiao/zb01.flv?auth_key=1584614551-0-0-2cffb26f678ee6a1a42d06ec5f3e0f6b
-#EXTINF:-1 ,象山新闻综合
-http://l.cztvcloud.com/channels/lantian/SXxiangshan1/720p.m3u8
-#EXTINF:-1 ,象山新闻综合
-http://v.xstv.net/hls-live/live/_definst_/liveevent/2222.m3u8
-#EXTINF:-1 ,象山影视娱乐
-http://v.xstv.net/hls-live/live/_definst_/liveevent/3333.m3u8
-#EXTINF:-1 ,普陀新闻综合
-http://l.cztvcloud.com/channels/lantian/SXputuo1/720p.m3u8
-#EXTINF:-1 ,乐清新闻频道
-http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_170.m3u8
-#EXTINF:-1 ,乐清综合频道
-http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8
-#EXTINF:-1 ,奉化新闻综合
-http://stream.fhtv.net.cn/zhpd/sd/live.m3u8
-#EXTINF:-1 ,奉化生活娱乐
-http://stream.fhtv.net.cn/ylpd/sd/live.m3u8
-#EXTINF:-1 ,武义新闻综合
-http://l.cztvcloud.com/channels/lantian/SXwuyi1/720p.m3u8
-#EXTINF:-1 ,嘉善新闻综合
-http://118.31.110.219:1935/jsgdxwzh/myStream/playlist.m3u8
-#EXTINF:-1 ,嘉善善文化
-http://118.31.110.219:1935/jsgdswh/myStream/playlist.m3u8
-#EXTINF:-1 ,海盐新闻频道
-http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8
-#EXTINF:-1 ,桐乡新闻综合
-http://live.txcmapp.com/tszh1/sd/live.m3u8
-#EXTINF:-1 ,宁海新闻综合
-http://33658.hlsplay.aodianyun.com/tv_radio_33658/tv_channel_1423.m3u8
-#EXTINF:-1 ,温岭新闻综合
-https://35813.hlsplay.aodianyun.com/tv_radio_35813/tv_channel_911.m3u8
-#EXTINF:-1 ,温岭民生休闲
-https://35813.hlsplay.aodianyun.com/tv_radio_35813/tv_channel_1287.m3u8
-#EXTINF:-1 ,鄞州一套
-http://pili-publish.yzxw.newaircloud.com/newaircloud-yzxw/yzxw_20190925090843.m3u8
-#EXTINF:-1 ,鄞州二套
-http://pili-publish.yzxw.newaircloud.com/newaircloud-yzxw/yzxw_20190925090936.m3u8
-#EXTINF:-1 ,磐安新闻综合
-http://pili-live-hls.panews.cn/panews/live526-0.m3u8
-#EXTINF:-1 ,磐安文化生活
-http://pili-live-hls.panews.cn/panews/live3000149-0.m3u8
-#EXTINF:-1 ,天台和合频道
-http://pili-live-hls.tmuyun.com/tmlive/tv733-1542349790.m3u8
-#EXTINF:-1 ,江山电视台
-http://pili-live-hls.qzjs.21js.com/21js-qz/live609-0.m3u8
-#EXTINF:-1 ,开化新闻综合
-http://l.cztvcloud.com/channels/lantian/SXkaihua1/720p.m3u8
-#EXTINF:-1 ,开化国家公园
-http://l.cztvcloud.com/channels/lantian/SXkaihua2/720p.m3u8
-#EXTINF:-1 ,龙游新闻综合
-http://l.cztvcloud.com/channels/lantian/SXlongyou1/720p.m3u8
-#EXTINF:-1 ,龙游生活娱乐
-http://l.cztvcloud.com/channels/lantian/SXlongyou2/720p.m3u8
-#EXTINF:-1 ,衢江新闻综合
-http://l.cztvcloud.com/channels/lantian/SXqujiang1/720p.m3u8
-#EXTINF:-1 ,景宁新闻综合
-http://pili-live-hls.jnbctv.com/jnlive/tv81-1537153703.m3u8
-#EXTINF:-1 ,景宁文化旅游
-http://pili-live-hls.jnbctv.com/jnlive/tv81-1537429639.m3u8
-#EXTINF:-1 ,缙云综合频道
-http://l.cztvcloud.com/channels/lantian/SXjinyun1/720p.m3u8
-#EXTINF:-1 ,龙泉新闻综合
-http://l.cztvcloud.com/channels/lantian/SXlongquan1/720p.m3u8
-#EXTINF:-1 ,庆元综合频道
-http://l.cztvcloud.com/channels/lantian/SXqingyuan1/720p.m3u8
-#EXTINF:-1 ,遂昌综合频道
-http://l.cztvcloud.com/channels/lantian/SXsuichang1/720p.m3u8
-#EXTINF:-1 ,松阳综合频道
-http://l.cztvcloud.com/channels/lantian/SXsongyang1/720p.m3u8
-#EXTINF:-1 ,云和新闻综合
-http://l.cztvcloud.com/channels/lantian/SXyunhe1/720p.m3u8
-#EXTINF:-1 ,北仑电视台
-https://pili-live-hls.blnews.com.cn/blnews/tv3124-1559618549.m3u8
-#EXTINF:-1 ,青田电视台
-http://l.cztvcloud.com/channels/lantian/SXqingtian1/720p.m3u8
-#EXTINF:-1 ,福州综合
-http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8
-#EXTINF:-1 ,福州生活
-http://live.zohi.tv/video/s10001-shpd-3/index.m3u8
-#EXTINF:-1 ,厦门一套
-http://112.50.243.8/PLTV/88888888/224/3221226814/1.m3u8
-#EXTINF:-1 ,厦门一套
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamen1_2/index.m3u8
-#EXTINF:-1 ,厦门一套
-http://cstvpull.live.wscdns.com/live/xiamen1.flv
-#EXTINF:-1 ,厦门二套
-http://112.50.243.8/PLTV/88888888/224/3221226777/1.m3u8
-#EXTINF:-1 ,厦门二套
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamen2_2/index.m3u8
-#EXTINF:-1 ,厦门二套
-http://cstvpull.live.wscdns.com/live/xiamen2.flv
-#EXTINF:-1 ,厦门三套
-http://112.50.243.8/PLTV/88888888/224/3221226760/1.m3u8
-#EXTINF:-1 ,厦门四套
-http://112.50.243.8/PLTV/88888888/224/3221226764/1.m3u8
-#EXTINF:-1 ,厦门移动电视
-http://cctvtxyh5ca.liveplay.myqcloud.com/cstv/xiamenyidong_2/index.m3u8
-#EXTINF:-1 ,厦门移动电视
-http://cstvpull.live.wscdns.com/live/xiamenyidong.flv
-#EXTINF:-1 ,漳州新闻综合
-http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8
-#EXTINF:-1 ,龙岩新闻综合
-http://stream.lytv.net.cn/2/sd/live.m3u8
-#EXTINF:-1 ,龙岩公共频道
-http://stream.lytv.net.cn/1/sd/live.m3u8
-#EXTINF:-1 ,宁德新闻综合
-http://live.nddst.com/ndtv1/1080P/live.m3u8
-#EXTINF:-1 ,宁德新闻综合
-http://live.nddst.com/ndtv1/720P/live.m3u8
-#EXTINF:-1 ,宁德新闻综合
-http://live.nddst.com/ndtv1/playlist.m3u8
-#EXTINF:-1 ,宁德新闻综合
-http://live.nddst.com/ndtv1/480P/live.m3u8
-#EXTINF:-1 ,宁德公共频道
-http://live.nddst.com/ndtv2/1080P/live.m3u8
-#EXTINF:-1 ,宁德公共频道
-http://live.nddst.com/ndtv2/720P/live.m3u8
-#EXTINF:-1 ,宁德公共频道
-http://live.nddst.com/ndtv2/playlist.m3u8
-#EXTINF:-1 ,宁德公共频道
-http://live.nddst.com/ndtv2/480P/live.m3u8
-#EXTINF:-1 ,宁德公共频道
-http://112.50.243.8/PLTV/88888888/224/3221226635/1.m3u8
-#EXTINF:-1 ,尤溪新闻综合
-https://38269.hlsplay.aodianyun.com/tv_radio_38269/tv_channel_765.m3u8
-#EXTINF:-1 ,尤溪城市生活
-https://38269.hlsplay.aodianyun.com/tv_radio_38269/tv_channel_766.m3u8
-#EXTINF:-1 ,尤溪旅游宣传
-https://38269.hlsplay.aodianyun.com/tv_radio_38269/tv_channel_767.m3u8
-#EXTINF:-1 ,永泰综合频道
-http://ytrmtzx.com:8278/yongtaipindao1/playlist.m3u8
-#EXTINF:-1 ,南安新闻综合
-http://natv.cnjrna.com:3000/channel/sovp/1000000000000018/video_1564_none.m3u8
-#EXTINF:-1 ,福清综合频道
-http://37652.hlsplay.aodianyun.com/tv_radio_37652/tv_channel_699.m3u8
-#EXTINF:-1 ,泰宁新闻频道
-http://r.gslb.lecloud.com/live/hls/2020010730iPn004f13/desc.m3u8
-#EXTINF:-1 ,安溪电视台
-https://36351.hlsplay.aodianyun.com/tv_radio_36351/tv_channel_1025.m3u8
-#EXTINF:-1 ,新罗电视一套
-http://stream.lyxltv.com/xltv/sd/live.m3u8
-#EXTINF:-1 ,新罗电视二套
-http://stream.lyxltv.com/xinluotv/sd/live.m3u8
-#EXTINF:-1 ,宁化电视一套
-http://fjnh.chinashadt.com:2036/live/stream:nh1.stream/playlist.m3u8
-#EXTINF:-1 ,晋江电视台
-http://stream.jinjiang.tv/1/sd/live.m3u8
-#EXTINF:-1 ,长乐综合
-http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8
-#EXTINF:-1 ,沙县新闻综合
-https://35498.hlsplay.aodianyun.com/guangdianyun_35498/tv_channel_425.m3u8
-#EXTINF:-1 ,沙县小吃旅游
-https://35498.hlsplay.aodianyun.com/guangdianyun_35498/tv_channel_426.m3u8
-#EXTINF:-1 ,广东房产
-http://szlive.grtn.cn/fcpd/sd/live.m3u8
-#EXTINF:-1 ,广东移动
-http://szlive.grtn.cn/ydpd/sd/live.m3u8
-#EXTINF:-1 ,现代教育
-http://szlive.grtn.cn/jypd/sd/live.m3u8
-#EXTINF:-1 ,南方购物
-http://szlive.grtn.cn/nfgw/sd/live.m3u8
-#EXTINF:-1 ,高清探索
-http://39.134.176.148/PLTV/88888888/224/3221226606/index.m3u8
-#EXTINF:-1 ,高清探索
-http://39.134.176.148/PLTV/88888888/224/3221226608/index.m3u8
-#EXTINF:-1 ,高清探索
-http://39.134.176.148/PLTV/88888888/224/3221226695/index.m3u8
-#EXTINF:-1 ,中国交通广东
-http://tv.lanjingfm.com/cctbn/guangdong.m3u8
-#EXTINF:-1 ,深圳财经生活
-http://ts10.sztv.com.cn/15e2c816f6a74eac8403c295212a0936/h264_500k_ts/index.m3u8?type=flv2hls_m3u8
-#EXTINF:-1 ,深圳龙岗
-http://liveplay.sznews.com/66_norecord_live/357.m3u8
-#EXTINF:-1 ,深圳东部
-http://liveplay.sznews.com/66_norecord_live/343.m3u8
-#EXTINF:-1 ,蛇口综合
-http://218.17.99.211:82/hls/d4encs75.m3u8
-#EXTINF:-1 ,蛇口综合
-http://218.17.99.211:5080/hls/ttsw6ccn.m3u8
-#EXTINF:-1 ,佛山综合
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_zhpd.m3u8
-#EXTINF:-1 ,佛山公共
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_ggpd.m3u8
-#EXTINF:-1 ,佛山影视
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_yspd.m3u8
-#EXTINF:-1 ,佛山顺德
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sdpd.m3u8
-#EXTINF:-1 ,佛山南海
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_nhpd.m3u8
-#EXTINF:-1 ,佛山高明
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_gmpd.m3u8
-#EXTINF:-1 ,佛山三水
-http://pili-live-rtmp.wdit.com.cn/wditlive/fs_sspd.m3u8
-#EXTINF:-1 ,河源综合
-http://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,河源公共
-http://tmpstream.hyrtv.cn/hygg/sd/live.m3u8
-#EXTINF:-1 ,清远综合
-http://stream1.0763f.com/qyzh/sd/live.m3u8
-#EXTINF:-1 ,清远公共
-http://stream1.0763f.com/qygg/sd/live.m3u8
-#EXTINF:-1 ,潮州综合
-http://live.zscz0768.com/live/zhpd.m3u8
-#EXTINF:-1 ,潮州公共
-http://live.zscz0768.com/live/ggpd.m3u8
-#EXTINF:-1 ,梅州综合
-http://pili-live-rtmp.tvliving.gdmztv.com/meizhou-tvliving/mztv1.m3u8
-#EXTINF:-1 ,梅州二套
-http://pili-live-rtmp.tvliving.gdmztv.com/meizhou-tvliving/mztv2.m3u8
-#EXTINF:-1 ,湛江综合
-http://120.237.237.11:8000/public/HDCH01/playlist.m3u8
-#EXTINF:-1 ,湛江公共
-http://120.237.237.11:8000/public/HDCH02/playlist.m3u8
-#EXTINF:-1 ,阳江综合
-https://live.yjtvw.com:8081/live/smil:yjtv1.smil/playlist.m3u8
-#EXTINF:-1 ,阳江公共
-https://live.yjtvw.com:8081/live/smil:yjtv2.smil/playlist.m3u8
-#EXTINF:-1 ,电白综合
-http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8
-#EXTINF:-1 ,电白综合
-http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,电白视窗
-http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8
-#EXTINF:-1 ,电白视窗
-http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,鹤山综合
-http://pili-live-rtmp.68.i2863.com/i2863-68/live_68_293669.m3u8
-#EXTINF:-1 ,清新综合
-http://hls.wiseqx.com/live/qxzh.m3u8
-#EXTINF:-1 ,清新公共
-http://hls.wiseqx.com/live/qxgg.m3u8
-#EXTINF:-1 ,开平综合
-https://31355.hlsplay.aodianyun.com/tv_radio_31355/tv_channel_1434.m3u8
-#EXTINF:-1 ,开平生活
-https://31355.hlsplay.aodianyun.com/tv_radio_31355/tv_channel_1435.m3u8
-#EXTINF:-1 ,潮安综合
-http://chaoan.chaoantv.com:8278/zongyi_1028/playlist.m3u8
-#EXTINF:-1 ,潮安综合
-http://chaoan.chaoantv.com:8278/live/chaoanzongyi.m3u8
-#EXTINF:-1 ,潮安综合
-http://chaoan.chaoantv.com:8278/zongyi_728/playlist.m3u8
-#EXTINF:-1 ,潮安影视
-http://chaoan.chaoantv.com:8278/h_yingshi_1028/playlist.m3u8
-#EXTINF:-1 ,潮安影视
-http://chaoan.chaoantv.com:8278/live/chaoanyingshi.m3u8
-#EXTINF:-1 ,潮安影视
-http://chaoan.chaoantv.com:8278/l_yingshi_728/playlist.m3u8
-#EXTINF:-1 ,增城综合
-http://202.168.164.38:8083/videos/live/19/27/QEQXMtU5AUpwo/QEQXMtU5AUpwo.M3U8
-#EXTINF:-1 ,信宜综合
-http://35781.hlsplay.aodianyun.com/tv_radio_35781/tv_channel_643.m3u8
-#EXTINF:-1 ,番禺综合
-http://live.pybtv.cn/channel1/sd/live.m3u8
-#EXTINF:-1 ,丰顺综合
-https://p2.weizan.cn/1033266991/776920781637802678/live.m3u8
-#EXTINF:-1 ,丰顺影视
-https://p2.weizan.cn/1033266991/748750643185685521/live.m3u8
-#EXTINF:-1 ,柳州新闻
-http://liveplay.lztvnet.com/live/31750_cc3fcb0f68b311e992905cb9018cf0d4.m3u8
-#EXTINF:-1 ,柳州公共
-http://39.135.32.29:6610/000000001000/lzgg/1.m3u8?IASHttpSessionId=OTT
-#EXTINF:-1 ,柳州科教
-http://liveplay.lztvnet.com/live/31750_e1bbfc0b68b311e992905cb9018cf0d4.m3u8
-#EXTINF:-1 ,玉林新闻综合
-http://pili-live-hls.yldst.sobeylive.com/yldst2019/ylxwzh.m3u8
-#EXTINF:-1 ,玉林公共频道
-http://pili-live-hls.yldst.sobeylive.com/yldst2019/ylgg.m3u8
-#EXTINF:-1 ,玉林知识频道
-http://pili-live-hls.yldst.sobeylive.com/yldst2019/ylzs.m3u8
-#EXTINF:-1 ,北海新闻综合
-http://live.mudu.tv/watch/251d94.m3u8
-#EXTINF:-1 ,北海经济科教
-http://live.mudu.tv/watch/x5038y.m3u8
-#EXTINF:-1 ,北海公共频道
-http://live.mudu.tv/watch/pypq41.m3u8
-#EXTINF:-1 ,贺州综合频道
-http://live.mudu.tv/watch/kwe7ad.m3u8
-#EXTINF:-1 ,崇左综合频道
-http://live.mudu.tv/watch/hemxbj.m3u8
-#EXTINF:-1 ,来宾综合频道
-http://live.mudu.tv/watch/gfctsa.m3u8
-#EXTINF:-1 ,钦州综合频道
-http://stream.gxqztv.com/01/sd/live.m3u8
-#EXTINF:-1 ,防城港新闻综合
-https://live.fcgtvb.com/live/app1.m3u8?auth_key=1604480433-0-0-e42eb9c05386b5bc55c6a809943ebb1f
-#EXTINF:-1 ,防城港公共频道
-https://live.fcgtvb.com/live/app3.m3u8?auth_key=1605689054-0-0-23fb97339caf6f5b76bc29e7662c4d8e
-#EXTINF:-1 ,荔浦综合频道
-http://live.mudu.tv/watch/kvfzk2.m3u8
-#EXTINF:-1 ,平乐综合频道
-http://live.mudu.tv/watch/c7dsrc.m3u8
-#EXTINF:-1 ,阳朔综合频道
-http://live.mudu.tv/watch/18bunw.m3u8
-#EXTINF:-1 ,宾阳综合频道
-http://live.mudu.tv/watch/w4j7vs.m3u8
-#EXTINF:-1 ,横县新闻综合
-http://live.mudu.tv/watch/pnw265.m3u8
-#EXTINF:-1 ,马山新闻综合
-http://hls.nntv.cn/nnlive/MSTV_A.m3u8
-#EXTINF:-1 ,忻城综合频道
-http://222.216.244.93:19355/xctv/ch2.m3u8
-#EXTINF:-1 ,靖西综合频道
-http://live.mudu.tv/watch/7ht25n.m3u8
-#EXTINF:-1 ,凌云综合频道
-http://live.mudu.tv/watch/0c7jnn.m3u8
-#EXTINF:-1 ,田东综合频道
-http://live.mudu.tv/watch/nczet8.m3u8
-#EXTINF:-1 ,罗城综合频道
-http://www.3jlc.cn:21953/lctvlive/lch.m3u8
-#EXTINF:-1 ,北流综合频道
-http://124.226.233.4:81/hls/001/index.m3u8
-#EXTINF:-1 ,容县电视
-http://live.mudu.tv/watch/ypa0a6.m3u8
-#EXTINF:-1 ,灵山综合频道
-http://live.mudu.tv/watch/w0gec5.m3u8
-#EXTINF:-1 ,重庆新闻
-https://onsitecdn.cbgcloud.com/4zjt2a/zb7nip.m3u8
-#EXTINF:-1 ,重庆移动公交
-http://qxlmlive.cbg.cn:1935/app_2/ls_57.stream/chunklist.m3u8
-#EXTINF:-1 ,重庆移动机场
-http://qxlmlive.cbg.cn:1935/app_2/ls_56.stream/chunklist.m3u8
-#EXTINF:-1 ,中国交通重庆
-http://tv.lanjingfm.com/cctbn/chongqing.m3u8
-#EXTINF:-1 ,铜梁综合
-http://tonglianglive.cbg.cn:40123/ch1.m3u8
-#EXTINF:-1 ,铜梁综合
-http://183.64.174.171:40123/ch1.m3u8
-#EXTINF:-1 ,铜梁文旅
-http://tonglianglive.cbg.cn:50123/ch2.m3u8
-#EXTINF:-1 ,铜梁文旅
-http://183.64.174.171:50123/ch2.m3u8
-#EXTINF:-1 ,万州综合频道
-http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8
-#EXTINF:-1 ,万州综合频道
-http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8
-#EXTINF:-1 ,万州综合频道
-http://123.146.162.24:8017/iTXwrGs/800/live.m3u8
-#EXTINF:-1 ,万州三峡移民
-http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8
-#EXTINF:-1 ,万州三峡移民
-http://123.146.162.24:8013/tslslive/PU2vzMI/hls/live_sd.m3u8
-#EXTINF:-1 ,万州三峡移民
-http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8
-#EXTINF:-1 ,万州最万州
-http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8
-#EXTINF:-1 ,万州最万州
-http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8
-#EXTINF:-1 ,万州最万州
-http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8
-#EXTINF:-1 ,梁平综合频道
-http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8
-#EXTINF:-1 ,长寿综合频道
-http://qxlmlive.cbg.cn:1935/app_2/ls_63.stream/playlist.m3u8
-#EXTINF:-1 ,长寿文化旅游
-http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8
-#EXTINF:-1 ,永川综合频道
-http://qxlmlive.cbg.cn:1935/applive/yctv01/chunklist.m3u8
-#EXTINF:-1 ,潼南综合频道
-http://183.230.184.51:65500/tntv1.m3u8
-#EXTINF:-1 ,潼南生态人文
-http://183.230.184.51:65500/tntv2.m3u8
-#EXTINF:-1 ,酉阳新闻综合
-http://qxlmlive.cbg.cn:1935/applive/youytv01/playlist.m3u8
-#EXTINF:-1 ,酉阳新闻综合
-http://qxlmlive.cbg.cn:1935/app_2/ls_68.stream/playlist.m3u8
-#EXTINF:-1 ,酉阳文化旅游
-http://qxlmlive.cbg.cn:1935/applive/youytv02/playlist.m3u8
-#EXTINF:-1 ,开州综合频道
-http://kaixianlive.cbg.cn:10345/1.m3u8
-#EXTINF:-1 ,开州生活频道
-http://kaixianlive.cbg.cn:10345/5.m3u8
-#EXTINF:-1 ,綦江综合频道
-http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_25.stream/playlist.m3u8
-#EXTINF:-1 ,綦江综合频道
-http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8
-#EXTINF:-1 ,南川新闻综合
-http://nanchuanlive.cbg.cn:30000/1111.m3u8
-#EXTINF:-1 ,南川新闻综合
-http://221.5.213.4:30000/1111.m3u8
-#EXTINF:-1 ,南川旅游经济
-http://nanchuanlive.cbg.cn:30000/2222.m3u8
-#EXTINF:-1 ,南川旅游经济
-http://221.5.213.4:30000/2222.m3u8
-#EXTINF:-1 ,江津新闻综合
-http://jiangjinlive.cbg.cn:1935/ch1.m3u8
-#EXTINF:-1 ,江津新闻综合
-http://222.179.155.21:1935/ch1.m3u8
-#EXTINF:-1 ,江津经济生活
-http://jiangjinlive.cbg.cn:1935/ch0.m3u8
-#EXTINF:-1 ,江津经济生活
-http://222.179.155.21:1935/ch0.m3u8
-#EXTINF:-1 ,江津文化旅游
-http://jiangjinlive.cbg.cn:1935/ch2.m3u8
-#EXTINF:-1 ,江津文化旅游
-http://222.179.155.21:1935/ch2.m3u8
-#EXTINF:-1 ,彭水新闻综合
-http://pengshuilive.cbg.cn/pengshui01.m3u8
-#EXTINF:-1 ,彭水文化旅游
-http://pengshuilive.cbg.cn/pengshui02.m3u8
-#EXTINF:-1 ,丰都综合频道
-http://125.62.25.201:1935/output0.m3u8
-#EXTINF:-1 ,丰都文化旅游
-http://125.62.25.201:1936/output0.m3u8
-#EXTINF:-1 ,忠县综合频道
-http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8
-#EXTINF:-1 ,武隆综合频道
-http://222.180.10.10:81/hls0
-#EXTINF:-1 ,武隆旅游资讯
-http://222.180.10.10:81/hls4
-#EXTINF:-1 ,万盛新闻综合
-http://qxlmlive.cbg.cn:1935/app_2/ls_40.stream/playlist.m3u8
-#EXTINF:-1 ,荣昌综合频道
-http://183.64.181.25:40023/rongchang01.m3u8
-#EXTINF:-1 ,荣昌文化生活
-http://183.64.181.25:40023/rongchang02.m3u8
-#EXTINF:-1 ,北碚综合频道
-http://222.178.181.121:12034/beibei01.m3u8
-#EXTINF:-1 ,涪陵电视台
-http://livefuling.chinamcache.com/liveful/fldszb001.m3u8
-#EXTINF:-1 ,四川文化旅游
-http://scgctvshow.sctv.com/hdlive/sctv2/1.m3u8
-#EXTINF:-1 ,四川经济频道
-http://scgctvshow.sctv.com/hdlive/sctv3/1.m3u8
-#EXTINF:-1 ,四川新闻频道
-http://scgctvshow.sctv.com/hdlive/sctv4/1.m3u8
-#EXTINF:-1 ,四川新闻频道
-http://scgctvshow.sctv.com/sdlive/sctv4/1.m3u8
-#EXTINF:-1 ,四川星空购物
-http://scgctvshow.sctv.com/hdlive/sctv6/1.m3u8
-#EXTINF:-1 ,四川妇女儿童
-http://scgctvshow.sctv.com/hdlive/sctv7/1.m3u8
-#EXTINF:-1 ,四川公共乡村
-http://scgctvshow.sctv.com/hdlive/sctv9/1.m3u8
-#EXTINF:-1 ,四川公共乡村
-http://scgctvshow.sctv.com/sdlive/sctv9/1.m3u8
-#EXTINF:-1 ,四川峨眉电影HD
-http://scgctvshow.sctv.com/hdlive/emei/1.m3u8
-#EXTINF:-1 ,中国交通四川
-http://tv.lanjingfm.com/cctbn/sichuan.m3u8
-#EXTINF:-1 ,南充新闻
-http://file.ncntv.com.cn/vms/videos/nmip-media/channellive/channel7/playlist.m3u8
-#EXTINF:-1 ,南充公共
-http://file.ncntv.com.cn/vms/videos/nmip-media/channellive/channel8/playlist.m3u8
-#EXTINF:-1 ,南充科教
-http://file.ncntv.com.cn/vms/videos/nmip-media/channellive/channel9/playlist.m3u8
-#EXTINF:-1 ,乐山新闻综合
-http://m3u8.file.leshantv.net/vms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,乐山公共频道
-http://m3u8.file.leshantv.net/vms/videos/nmip-media/channellive/channel12/playlist.m3u8
-#EXTINF:-1 ,广安新闻综合
-http://live1.gatv.com.cn:85/live/XWZH.m3u8
-#EXTINF:-1 ,广安公共频道
-http://live1.gatv.com.cn:85/live/GGPD.m3u8
-#EXTINF:-1 ,遂宁新闻综合
-http://play.sngdxsn.com/live/xwzh/playlist.m3u8
-#EXTINF:-1 ,遂宁新闻综合
-http://snlive.scsntv.com:8091/live/xwzh.m3u8
-#EXTINF:-1 ,遂宁公共频道
-http://play.sngdxsn.com/live/gggy/playlist.m3u8
-#EXTINF:-1 ,遂宁公共频道
-http://snlive.scsntv.com:8091/live/gggy.m3u8
-#EXTINF:-1 ,雅安新闻综合
-http://m3u8.channel.yatv.tv/cms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,雅安公共频道
-http://m3u8.channel.yatv.tv/cms/videos/nmip-media/channellive/channel2/playlist.m3u8
-#EXTINF:-1 ,雅安雨城频道
-http://ycfile.yatv.tv/cms/videos/nmip-media-yc/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,广元综合频道
-http://3g.dzsm.com/streamer/gy03/gy03-500.m3u8
-#EXTINF:-1 ,广元综合频道
-http://3g.dzsm.com/streamer/gy03.m3u8
-#EXTINF:-1 ,广元公共频道
-http://3g.dzsm.com/streamer/gy04/gy04-500.m3u8
-#EXTINF:-1 ,广元公共频道
-http://3g.dzsm.com/streamer/gy04.m3u8
-#EXTINF:-1 ,达州新闻综合
-http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel35/playlist.m3u8
-#EXTINF:-1 ,达州公共频道
-http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel36/playlist.m3u8
-#EXTINF:-1 ,达州通川频道
-http://m3u8.channellive.dzxw.net/cms/videos/nmip-media/channellive/channel37/playlist.m3u8
-#EXTINF:-1 ,泸州新闻综合
-http://file.weblz.com.cn:6066/cms/videos/nmip-media-dz/channellive/channel3/playlist.m3u8
-#EXTINF:-1 ,泸州公共频道
-http://file.weblz.com.cn:6066/cms/videos/nmip-media-dz/channellive/channel4/playlist.m3u8
-#EXTINF:-1 ,泸州科教频道
-http://file.weblz.com.cn:6066/cms/videos/nmip-media-dz/channellive/channel5/playlist.m3u8
-#EXTINF:-1 ,自贡综合频道
-http://pili-live-hls.sczg.360tianma.com/sczg/zhpd.m3u8
-#EXTINF:-1 ,德阳新闻综合
-http://scdytv.com:1935/live/m_xwpd_livevideo/playlist.m3u8
-#EXTINF:-1 ,德阳公共频道
-http://scdytv.com:1935/live/m_ggpd_livevideo/playlist.m3u8
-#EXTINF:-1 ,攀枝花新闻综合
-http://zb.pzhgd.com:9091/live/xwzh.m3u8
-#EXTINF:-1 ,内江综合频道
-http://njzb.scnj.tv:90/live/xwzh_xwzh800.m3u8
-#EXTINF:-1 ,内江公共频道
-http://njzb.scnj.tv:90/live/gggy_gggy800.m3u8
-#EXTINF:-1 ,内江科教频道
-http://njzb.scnj.tv:90/live/kjpd_kjpd800.m3u8
-#EXTINF:-1 ,巴中综合频道
-http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8
-#EXTINF:-1 ,巴中公共频道
-http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8
-#EXTINF:-1 ,资阳新闻综合
-http://zbzy.sczytv.com/live/23074_0438d2a1e35c11e9b04e6c92bf487b62.m3u8
-#EXTINF:-1 ,资阳新闻综合
-http://live.sczytv.com/zynews/news/live.m3u8
-#EXTINF:-1 ,阿坝综合频道
-http://222.214.9.34:90/live/zhpd.m3u8
-#EXTINF:-1 ,阿坝综合频道
-http://118.122.239.157:1234/hls/hd-live.m3u8
-#EXTINF:-1 ,阿坝文艺频道
-http://222.214.9.34:90/live/wypd.m3u8
-#EXTINF:-1 ,金堂电视台
-https://p2.weizan.cn/2029575354/132309630725787078/live.m3u8
-#EXTINF:-1 ,龙泉驿新闻综合
-http://live.newslqy.com/live/xwpd.m3u8
-#EXTINF:-1 ,郫都新闻综合
-http://pili-live-rtmp.165.i2863.com/i2863-165/live_165_768912.m3u8
-#EXTINF:-1 ,彭州综合频道
-https://livepgc.sobeycache.com/pgc/c14b4427acc5655bbcbdb1110a4206a0.m3u8?auth_key=1613458766-0-0-8adc07051c9008752994c7e6efe62d4a
-#EXTINF:-1 ,隆昌新闻综合
-http://live.sctvcloud.com/live/longchang/playlist.m3u8
-#EXTINF:-1 ,威远新闻综合
-http://live.sctvcloud.com/live/weiyuan/playlist.m3u8
-#EXTINF:-1 ,大竹新闻综合
-http://www.dazhutv.com:8083/videos/live/50/0/fvfm8SqxEkQGt/fvfm8SqxEkQGt.M3U8
-#EXTINF:-1 ,大竹阳光政务
-http://www.dazhutv.com:8083/videos/live/17/51/958cxpfHCjqwj/958cxpfHCjqwj.M3U8
-#EXTINF:-1 ,渠县城市公共
-http://222.208.224.227:81/hls/8ishqdtt.m3u8
-#EXTINF:-1 ,宣汉新闻综合
-http://xhxzb.yd-data.com/live/live1.m3u8
-#EXTINF:-1 ,罗江新闻综合
-http://pili-live-rtmp.178.i2863.com/i2863-178/live_178_tv01.m3u8
-#EXTINF:-1 ,南部新闻综合
-http://pili-live-rtmp.148.i2863.com/i2863-148/live_148_811389.m3u8
-#EXTINF:-1 ,蓬安新闻综合
-http://palive.patv123.com:8091/live/xwpd_800K.m3u8
-#EXTINF:-1 ,营山电视台
-http://file.ysxtv.cn/cms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,黑水新闻综合
-http://118.122.237.102:90/live/xwzh.m3u8
-#EXTINF:-1 ,理县综合频道
-https://livepgc.sobeycache.com/pgc/903014bcc94cc281acde0780603286c3.m3u8?auth_key=1605787712-0-0-17bda1a33091f00bda5dd907f5c4c9b2
-#EXTINF:-1 ,茂县综合频道
-http://pili-live-hls.scmxtv.com/scmxtv/mxtv.m3u8
-#EXTINF:-1 ,壤塘综合频道
-http://118.122.239.157:1236/hls/hd-live.m3u8
-#EXTINF:-1 ,松潘新闻综合
-http://live.spccmc.com:90/live/spxwzh_600k.m3u8
-#EXTINF:-1 ,小金综合频道
-http://xjlive.xjsc.gov.cn:8091/live/xwpd.m3u8
-#EXTINF:-1 ,九寨沟新闻综合
-http://111.231.194.231:85/live/xwzh.m3u8
-#EXTINF:-1 ,九寨沟旅游资讯
-http://111.231.194.231:85/live/lyzx.m3u8
-#EXTINF:-1 ,富顺综合频道
-http://pili-live-rtmp.145.i2863.com/i2863-145/live_145_906964.m3u8
-#EXTINF:-1 ,富顺公共频道
-http://pili-live-rtmp.145.i2863.com/i2863-145/fsggpd.m3u8
-#EXTINF:-1 ,荣县综合频道
-http://rxzb.yd-data.com/live/0815.m3u8?auth_key=600000000001584500000-0-0-7e2b8d75beb98515ba2c0a87e935b88a
-#EXTINF:-1 ,苍溪新闻频道
-http://livecx.cxxrmt.com/csdst/zb01.m3u8?auth_key=1593500796-0-0-922f754be4863455a1617f58e3a915b9
-#EXTINF:-1 ,苍溪综合频道
-http://livecx.cxxrmt.com/csdst/zb02.m3u8?auth_key=1593500776-0-0-f13b077a8b809c36e2a230d058c3359e
-#EXTINF:-1 ,剑阁新闻综合
-http://60.255.231.122:1936/hls/live1.m3u8
-#EXTINF:-1 ,利州综合频道
-http://file.lzgbdst.com/cms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,昭化综合频道
-http://60.255.230.66:3100/hls/qxlrwcbh/index.m3u8
-#EXTINF:-1 ,昭化综合频道
-http://60.255.230.66:3100/hls/vxsqwmob/index.m3u8
-#EXTINF:-1 ,洪雅新闻综合
-http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.M3U8
-#EXTINF:-1 ,彭山综合频道
-http://139.9.142.175:8011/cms/videos/nmip-media/channellive/channel2/playlist.m3u8
-#EXTINF:-1 ,彭山综合频道
-http://139.9.142.175:8100/channellive/pstv.flv
-#EXTINF:-1 ,青神综合频道
-http://lmt.scqstv.com/live1/live1.m3u8
-#EXTINF:-1 ,仁寿综合频道
-http://play.scrstv.com/TV/xwzh.m3u8
-#EXTINF:-1 ,仁寿综艺频道
-http://play.scrstv.com/TV/shzx.m3u8
-#EXTINF:-1 ,雁江新闻频道
-http://live.sczytv.com/zytvyj/yj1/live.m3u8
-#EXTINF:-1 ,会东综合频道
-http://112.45.133.129:90/live/xwzh.m3u8
-#EXTINF:-1 ,会东综合频道
-http://live.schdxww.com:90/live/xwzh.m3u8
-#EXTINF:-1 ,雷波综合频道
-http://lbzb.yd-data.com/live/0000.flv?auth_key=601589378470-0-0-67d1de5fa3aa9412566d7c9f807c91a0
-#EXTINF:-1 ,西昌综合频道
-http://stream.xctv.news:8084/1a6c203cd4644dd9a27a4b07a1159e14/h264_500k_ts/index.m3u8?type=flv2hls_m3u8
-#EXTINF:-1 ,西昌阳光频道
-http://stream.xctv.news:8084/459dfaee488a4345a838834eefe68ba3/h264_500k_ts/index.m3u8?type=flv2hls_m3u8
-#EXTINF:-1 ,汉源综合频道
-http://live.hyxrmt.com:85/live/xwpd.m3u8
-#EXTINF:-1 ,名山综合频道
-http://msfile.yatv.tv/cms/videos/nmip-media-ms/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,石棉综合频道
-http://smfile.yatv.tv/cms/videos/nmip-media-sm/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,犍为新闻综合
-http://tv.scwlqw.cn:3100/hls/kqcyufpi/index.m3u8
-#EXTINF:-1 ,犍为文化旅游
-http://125.65.32.94:3100/hls/zkhlmnkp/index.m3u8
-#EXTINF:-1 ,泸县新闻综合
-https://32664.hlsplay.aodianyun.com/tv_radio_32664/tv_channel_915.m3u8
-#EXTINF:-1 ,叙永综合频道
-http://182.129.181.59:1935/live/_definst_/xyxw/playlist.m3u8
-#EXTINF:-1 ,大英新闻综合
-http://devpgclive.cmc.dyrmt.com/live/dyrmt01.m3u8
-#EXTINF:-1 ,大英文化旅游
-http://devpgclive.cmc.dyrmt.com/live/dyrmt02.m3u8
-#EXTINF:-1 ,广安区新闻频道
-http://live2.gatv.com.cn:86/live/GAQ.m3u8
-#EXTINF:-1 ,华蓥综合频道
-http://live2.gatv.com.cn:86/live/HY.m3u8
-#EXTINF:-1 ,邻水新闻综合
-http://live2.gatv.com.cn:86/live/LS.m3u8
-#EXTINF:-1 ,前锋电视台
-http://live2.gatv.com.cn:86/live/QF.m3u8
-#EXTINF:-1 ,武胜综合频道
-http://live-show.wsxc.gov.cn/wstv/ch1.m3u8?auth_key=1618541281-0-0-6db29568c20b372557ab5995fbd5f64e
-#EXTINF:-1 ,岳池新闻综合
-http://liveyc.cmc.yuechirmt.cn/live/yctv.m3u8
-#EXTINF:-1 ,岳池新闻综合
-http://live2.gatv.com.cn:86/live/YC.m3u8
-#EXTINF:-1 ,安州新闻频道
-http://live.sctvcloud.com/live/anzhoutv1/playlist.m3u8
-#EXTINF:-1 ,安州综合频道
-http://live.sctvcloud.com/live/anzhoutv2/playlist.m3u8
-#EXTINF:-1 ,北川电视一套
-http://live.sctvcloud.com/live/bcgqlive/playlist.m3u8
-#EXTINF:-1 ,云南都市
-https://hwapi.yunshicloud.com/62hdvf/rjwt14_sd.m3u8
-#EXTINF:-1 ,云南都市
-http://edge2.yntv.cn/channels/yntv/ynds/m3u8:sd/
-#EXTINF:-1 ,云南都市
-http://39.130.215.158:6610/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8
-#EXTINF:-1 ,云南都市
-http://39.130.215.158:6610/gitv_live/G_YNTV-2/G_YNTV-2.m3u8
-#EXTINF:-1 ,云南娱乐
-http://edge1.yntv.cn/channels/yntv/ynyl/m3u8:sd/
-#EXTINF:-1 ,云南娱乐
-http://39.130.215.158:6610/gitv_live/G_YNTV-3-HD/G_YNTV-3-HD.m3u8
-#EXTINF:-1 ,云南娱乐
-http://39.130.215.158:6610/gitv_live/G_YNTV-3/G_YNTV-3.m3u8
-#EXTINF:-1 ,云南生活资讯
-http://edge2.yntv.cn/channels/yntv/ynsh/m3u8:sd/
-#EXTINF:-1 ,云南生活资讯
-http://39.130.215.158:6610/gitv_live/G_YNTV-4-HD/G_YNTV-4-HD.m3u8
-#EXTINF:-1 ,云南生活资讯
-http://39.130.215.158:6610/gitv_live/G_YNTV-4/G_YNTV-4.m3u8
-#EXTINF:-1 ,云南影视
-http://39.130.215.158:6610/gitv_live/G_YNTV-5-HD/G_YNTV-5-HD.m3u8
-#EXTINF:-1 ,云南影视
-http://39.130.215.158:6610/gitv_live/G_YNTV-5/G_YNTV-5.m3u8
-#EXTINF:-1 ,云南公共
-http://www.ynbit.cn:1935/yn-6/livestream/playlist.m3u8
-#EXTINF:-1 ,云南公共
-http://edge2.yntv.cn/channels/yntv/yngg/m3u8:sd/
-#EXTINF:-1 ,云南公共
-http://39.130.215.158:6610/gitv_live/G_YNTV-6-HD/G_YNTV-6-HD.m3u8
-#EXTINF:-1 ,云南公共
-http://39.130.215.158:6610/gitv_live/G_YNTV-6/G_YNTV-6.m3u8
-#EXTINF:-1 ,云南少儿
-http://edge2.yntv.cn/channels/yntv/ynse/m3u8:sd/
-#EXTINF:-1 ,云南少儿
-http://39.130.215.158:6610/gitv_live/G_YNTVSE-HD/G_YNTVSE-HD.m3u8
-#EXTINF:-1 ,云南少儿
-http://39.130.215.158:6610/gitv_live/G_YNTVSE/G_YNTVSE.m3u8
-#EXTINF:-1 ,云南国际
-http://edge1.yntv.cn/channels/yntv/yngj/m3u8:sd/
-#EXTINF:-1 ,云南国际
-http://39.130.215.158:6610/gitv_live/G_YNTVGJ/G_YNTVGJ.m3u8
-#EXTINF:-1 ,云南移动电视
-http://39.130.215.158:6610/gitv_live/G_QICAIGONGJIAO/G_QICAIGONGJIAO.m3u8
-#EXTINF:-1 ,精品荟萃
-http://www.ynbit.cn:1935/cyds-jphc/livestream/playlist.m3u8
-#EXTINF:-1 ,美丽云南
-http://www.ynbit.cn:1935/cyds-mlyn/livestream/playlist.m3u8
-#EXTINF:-1 ,昆明新闻综合
-http://wshls.live.migucloud.com/live/01YCQY7M_C0/playlist.m3u8
-#EXTINF:-1 ,昆明新闻综合
-http://www.ynbit.cn:1935/km-1/livestream/playlist.m3u8
-#EXTINF:-1 ,昆明新闻综合
-http://39.130.215.158:6610/gitv_live/G_KMTV-1/G_KMTV-1.m3u8
-#EXTINF:-1 ,昆明经济生活
-http://wshls.live.migucloud.com/live/JT9JEQ54_C0_2/playlist.m3u8
-#EXTINF:-1 ,昆明经济生活
-http://39.130.215.158:6610/gitv_live/G_KMTV-2/G_KMTV-2.m3u8
-#EXTINF:-1 ,昆明科学教育
-http://wshls.live.migucloud.com/live/ZBXWIMTD_C0_2/playlist.m3u8
-#EXTINF:-1 ,昆明科学教育
-http://39.130.215.158:6610/gitv_live/G_KMTV-3/G_KMTV-3.m3u8
-#EXTINF:-1 ,昆明文体娱乐
-http://wshls.live.migucloud.com/live/6KN3ZB2S_C0_2/playlist.m3u8
-#EXTINF:-1 ,昆明文体娱乐
-http://39.130.215.158:6610/gitv_live/G_KMTV-4/G_KMTV-4.m3u8
-#EXTINF:-1 ,昆明公共频道
-http://wshls.live.migucloud.com/live/UD0YLY2G_C0_3/playlist.m3u8
-#EXTINF:-1 ,昆明公共频道
-http://39.130.215.158:6610/gitv_live/G_KMTV-6/G_KMTV-6.m3u8
-#EXTINF:-1 ,丽江综合
-https://hwapi.yunshicloud.com/mj1170/h6f7wv.m3u8
-#EXTINF:-1 ,丽江公共
-https://hwapi.yunshicloud.com/mj1170/06qk26.m3u8
-#EXTINF:-1 ,玉溪公共
-https://hwapi.yunshicloud.com/r5fc3f/4kzlat.m3u8
-#EXTINF:-1 ,昭通一套
-http://39.130.215.158:6610/gitv_live/G_ZHAOTONG-1/G_ZHAOTONG-1.m3u8
-#EXTINF:-1 ,昭通三套
-http://39.130.215.158:6610/gitv_live/G_ZHAOTONG-3/G_ZHAOTONG-3.m3u8
-#EXTINF:-1 ,楚雄综合
-https://hwapi.yunshicloud.com/gbqei5/cy550p.m3u8
-#EXTINF:-1 ,楚雄综合
-http://39.130.215.158:6610/gitv_live/G_CHUXIONGXW/G_CHUXIONGXW.m3u8
-#EXTINF:-1 ,楚雄公共
-https://hwapi.yunshicloud.com/gbqei5/12661u.m3u8
-#EXTINF:-1 ,楚雄公共
-http://39.130.215.158:6610/gitv_live/G_CHUXIONGGG/G_CHUXIONGGG.m3u8
-#EXTINF:-1 ,德宏新闻综合
-http://r.gslb.lecloud.com/live/hls/2019122330cJS000F99/desc.m3u8
-#EXTINF:-1 ,德宏新闻综合
-http://39.130.215.158:6610/gitv_live/G_DEHONG-1/G_DEHONG-1.m3u8
-#EXTINF:-1 ,德宏公共民语
-http://r.gslb.lecloud.com/live/hls/2019122330cUB000K99/desc.m3u8
-#EXTINF:-1 ,德宏公共民语
-http://39.130.215.158:6610/gitv_live/G_DEHONG-2/G_DEHONG-2.m3u8
-#EXTINF:-1 ,红河州新闻综合
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,红河州新闻综合
-http://39.130.215.158:6610/gitv_live/G_HONGHETV-1/G_HONGHETV-1.m3u8
-#EXTINF:-1 ,红河州公共频道
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel2/playlist.m3u8
-#EXTINF:-1 ,红河州公共频道
-http://39.130.215.158:6610/gitv_live/G_HONGHETV-2/G_HONGHETV-2.m3u8
-#EXTINF:-1 ,文山州新闻综合
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel7/playlist.m3u8
-#EXTINF:-1 ,文山州公共
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel8/playlist.m3u8
-#EXTINF:-1 ,普洱新闻综合
-https://hwapi.yunshicloud.com/701aec/orx377.m3u8
-#EXTINF:-1 ,普洱新闻综合
-http://39.130.215.218:6610/gitv_live/G_PUERTV-1/G_PUERTV-1.m3u8
-#EXTINF:-1 ,普洱公共频道
-http://39.130.215.218:6610/gitv_live/G_PUERTV-2/G_PUERTV-2.m3u8
-#EXTINF:-1 ,普洱三套
-http://39.130.215.218:6610/gitv_live/G_PUERTV-3/G_PUERTV-3.m3u8
-#EXTINF:-1 ,迪庆综合
-http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8
-#EXTINF:-1 ,迪庆综合
-http://39.130.215.158:6610/gitv_live/G_DIQING-1/G_DIQING-1.m3u8
-#EXTINF:-1 ,迪庆藏语
-http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8
-#EXTINF:-1 ,迪庆藏语
-http://39.130.215.158:6610/gitv_live/G_DIQINGZY/G_DIQINGZY.m3u8
-#EXTINF:-1 ,临沧综合
-https://hwapi.yunshicloud.com/6tt654/1i495z.m3u8
-#EXTINF:-1 ,临沧综合
-http://39.130.215.158:6610/gitv_live/G_LINCANGTV-1/G_LINCANGTV-1.m3u8
-#EXTINF:-1 ,临沧公共
-https://hwapi.yunshicloud.com/6tt654/drfs5s.m3u8
-#EXTINF:-1 ,临沧公共
-http://39.130.215.158:6610/gitv_live/G_LINCANGTV-2/G_LINCANGTV-2.m3u8
-#EXTINF:-1 ,保山一套
-http://liveynbsdst.chinamcache.com/live/zb01.m3u8?auth_key=1645240615-0-0-65e16b6e5bf26ac5538ac471eff58b55
-#EXTINF:-1 ,保山一套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANTV-1/G_BAOSHANTV-1.m3u8
-#EXTINF:-1 ,保山一套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANXW/G_BAOSHANXW.m3u8
-#EXTINF:-1 ,保山二套
-http://liveynbsdst.chinamcache.com/live/zb02.m3u8?auth_key=1645240679-0-0-d67bc97395c69c4381264c996315a24b
-#EXTINF:-1 ,保山二套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANTV-2/G_BAOSHANTV-2.m3u8
-#EXTINF:-1 ,保山二套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANGG/G_BAOSHANGG.m3u8
-#EXTINF:-1 ,保山三套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANTV-3/G_BAOSHANTV-3.m3u8
-#EXTINF:-1 ,保山三套
-http://39.130.215.158:6610/gitv_live/G_BAOSHANKJ/G_BAOSHANKJ.m3u8
-#EXTINF:-1 ,大理州新闻综合
-http://39.130.215.218:6610/gitv_live/G_DALITV-1/G_DALITV-1.m3u8
-#EXTINF:-1 ,大理州农业生活
-http://39.130.215.218:6610/gitv_live/G_DALITV-2/G_DALITV-2.m3u8
-#EXTINF:-1 ,大理州旅游文化
-http://39.130.215.218:6610/gitv_live/G_DALITV-3/G_DALITV-3.m3u8
-#EXTINF:-1 ,西双版纳综合
-http://file.xsbnrtv.cn/vms/videos/nmip-media/channellive/channel1/playlist.m3u8
-#EXTINF:-1 ,西双版纳综合
-http://39.130.215.158:6610/gitv_live/G_XSBNTV-1/G_XSBNTV-1.m3u8
-#EXTINF:-1 ,西双版纳公共
-http://file.xsbnrtv.cn/vms/videos/nmip-media/channellive/channel3/playlist.m3u8
-#EXTINF:-1 ,西双版纳公共
-http://39.130.215.158:6610/gitv_live/G_XSBNTV-2/G_XSBNTV-2.m3u8
-#EXTINF:-1 ,怒江新闻综合
-https://hwapi.yunshicloud.com/s5xpv2/9r4ei4.m3u8
-#EXTINF:-1 ,曲靖一套
-http://39.130.215.218:6610/gitv_live/G_QUJING-1/G_QUJING-1.m3u8
-#EXTINF:-1 ,曲靖二套
-http://39.130.215.218:6610/gitv_live/G_QUJING-2/G_QUJING-2.m3u8
-#EXTINF:-1 ,曲靖三套
-http://39.130.215.218:6610/gitv_live/G_QUJING-3/G_QUJING-3.m3u8
-#EXTINF:-1 ,腾冲综合
-http://live.ynurl.com/video/s10012-TCTV/index.m3u8
-#EXTINF:-1 ,腾冲综合
-http://39.130.215.218:6610/gitv_live/G_TENGCHONG/G_TENGCHONG.m3u8
-#EXTINF:-1 ,芒市综合
-http://live.ynurl.com/video/s10001-mstv1/index.m3u8
-#EXTINF:-1 ,芒市综合
-http://39.130.215.158:6610/gitv_live/G_DEHONGMS/G_DEHONGMS.m3u8
-#EXTINF:-1 ,瑞丽综合
-http://live.ynurl.com/video/s10021-rltv/index.m3u8
-#EXTINF:-1 ,盈江综合
-http://live.ynurl.com/video/s10016-yjtv1hd/index.m3u8
-#EXTINF:-1 ,盈江综合
-http://39.130.215.158:6610/gitv_live/G_DEHONGYJ/G_DEHONGYJ.m3u8
-#EXTINF:-1 ,澄江综合频道
-https://hwapi.yunshicloud.com/0up56g/5272xb.m3u8
-#EXTINF:-1 ,江川综合频道
-http://live.ynurl.com/video/s10037-JCTV/index.m3u8
-#EXTINF:-1 ,易门综合频道
-http://live.ynurl.com/video/s10029-ymxdst/index.m3u8
-#EXTINF:-1 ,绥江综合频道
-http://60.160.23.32:6055/sjtv/sjtv.m3u8
-#EXTINF:-1 ,华坪综合
-https://hwapi.yunshicloud.com/xfm214/198968.m3u8
-#EXTINF:-1 ,玉龙综合
-https://hwapi.yunshicloud.com/xe6m72/dzim44.m3u8
-#EXTINF:-1 ,永胜综合
-http://39.130.215.211:6610/gitv_live/G_YONGSHENG/G_YONGSHENG.m3u8
-#EXTINF:-1 ,陆良新闻
-https://hwapi.yunshicloud.com/9327b6/v8i7rf.m3u8
-#EXTINF:-1 ,个旧综合
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel6/playlist.m3u8
-#EXTINF:-1 ,个旧综合
-http://39.130.215.218:6610/gitv_live/G_GEJIU/G_GEJIU.m3u8
-#EXTINF:-1 ,红河县综合
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel3/playlist.m3u8
-#EXTINF:-1 ,红河县综合
-http://39.130.215.218:6610/gitv_live/G_HONGHEXIAN/G_HONGHEXIAN.m3u8
-#EXTINF:-1 ,河口综合
-http://39.130.215.158:6610/gitv_live/G_HEKOU/G_HEKOU.m3u8
-#EXTINF:-1 ,开远综合
-http://live.ynurl.com/video/s10044-KY-NEWS2/index.m3u8
-#EXTINF:-1 ,开远综合
-http://39.130.215.218:6610/gitv_live/G_KAIYUAN/G_KAIYUAN.m3u8
-#EXTINF:-1 ,绿春综合
-http://39.130.215.218:6610/gitv_live/G_LVCHUN/G_LVCHUN.m3u8
-#EXTINF:-1 ,蒙自综合
-http://39.129.163.220:8134/hls-live/livepkgr/_definst_/mz1/mz1.m3u8
-#EXTINF:-1 ,屏边综合
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel5/playlist.m3u8
-#EXTINF:-1 ,屏边综合
-http://39.130.215.218:6610/gitv_live/G_PINGBIAN/G_PINGBIAN.m3u8
-#EXTINF:-1 ,元阳综合
-http://file.hhtv.cc/cms/videos/nmip-media/channellive/channel7/playlist.m3u8
-#EXTINF:-1 ,元阳综合
-http://39.130.215.218:6610/gitv_live/G_YUANYANG/G_YUANYANG.m3u8
-#EXTINF:-1 ,富宁电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel13/playlist.m3u8
-#EXTINF:-1 ,广南电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel19/playlist.m3u8
-#EXTINF:-1 ,广南电视台
-http://live.ynurl.com/video/s10031-gnxgbds/index.m3u8
-#EXTINF:-1 ,马关电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel12/playlist.m3u8
-#EXTINF:-1 ,丘北电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel14/playlist.m3u8
-#EXTINF:-1 ,文山市电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel17/playlist.m3u8
-#EXTINF:-1 ,西畴电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel11/playlist.m3u8
-#EXTINF:-1 ,砚山电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel16/playlist.m3u8
-#EXTINF:-1 ,麻栗坡电视台
-http://m3u8.channel.wsrtv.com.cn/cms/videos/nmip-media/channellive/channel18/playlist.m3u8
-#EXTINF:-1 ,大理市新闻综合
-http://pili-live-rtmp.190.i2863.com/i2863-190/live_190_862916.m3u8
-#EXTINF:-1 ,洱源综合频道
-https://hwapi.yunshicloud.com/679z1m/e71cxz.m3u8
-#EXTINF:-1 ,巍山综合频道
-https://hwapi.yunshicloud.com/euxv6l/5q7637.m3u8
-#EXTINF:-1 ,漾濞新闻频道
-https://hwapi.yunshicloud.com/f7l9rz/9rez58.m3u8
-#EXTINF:-1 ,昌宁电视台
-http://live.ynurl.com/video/s10047-cnrm/index.m3u8
-#EXTINF:-1 ,昌宁电视台
-http://39.130.215.218:6610/gitv_live/G_CHANGNING/G_CHANGNING.m3u8
-#EXTINF:-1 ,龙陵综合频道
-https://hwapi.yunshicloud.com/ey0321/l0vlci.m3u8
-#EXTINF:-1 ,龙陵综合频道
-http://39.130.215.218:6610/gitv_live/G_LONGLING/G_LONGLING.m3u8
-#EXTINF:-1 ,宾川一套
-http://live.bcrmtzx.com/tv01/sd/live.m3u8
-#EXTINF:-1 ,宾川一套
-http://39.130.215.218:6610/gitv_live/G_BINCHUANTV-1/G_BINCHUANTV-1.m3u8
-#EXTINF:-1 ,宾川二套
-http://39.130.215.218:6610/gitv_live/G_BINCHUANTV-2/G_BINCHUANTV-2.m3u8
-#EXTINF:-1 ,鹤庆综合
-http://39.130.215.169:6610/gitv_live/G_HEQING/G_HEQING.m3u8
-#EXTINF:-1 ,弥渡综合
-http://39.130.215.218:6610/gitv_live/G_MIDUTV-1/G_MIDUTV-1.m3u8
-#EXTINF:-1 ,云龙综合
-http://39.130.215.218:6610/gitv_live/G_YUNLONGTV-1/G_YUNLONGTV-1.m3u8
-#EXTINF:-1 ,隆阳综合频道
-http://39.130.215.218:6610/gitv_live/G_LONGYANG/G_LONGYANG.m3u8
-#EXTINF:-1 ,楚雄市综合
-http://39.130.215.158:6610/gitv_live/G_CHUXIONGSHI/G_CHUXIONGSHI.m3u8
-#EXTINF:-1 ,禄丰综合
-http://39.130.215.218:6610/gitv_live/G_LUFENG/G_LUFENG.m3u8
-#EXTINF:-1 ,牟定综合
-http://39.130.215.211:6610/gitv_live/G_MOUDING/G_MOUDING.m3u8
-#EXTINF:-1 ,南华综合
-http://39.130.215.211:6610/gitv_live/G_NANHUA/G_NANHUA.m3u8
-#EXTINF:-1 ,双柏综合
-http://39.130.215.218:6610/gitv_live/G_SHUANGBAI/G_SHUANGBAI.m3u8
-#EXTINF:-1 ,武定综合
-http://39.130.215.218:6610/gitv_live/G_WUDING/G_WUDING.m3u8
-#EXTINF:-1 ,姚安综合
-http://39.130.215.211:6610/gitv_live/G_YAOAN/G_YAOAN.m3u8
-#EXTINF:-1 ,元谋综合
-http://39.130.215.218:6610/gitv_live/G_YUANMOU/G_YUANMOU.m3u8
-#EXTINF:-1 ,永仁综合
-http://39.130.215.218:6610/gitv_live/G_YONGREN/G_YONGREN.m3u8
-#EXTINF:-1 ,施甸综合
-http://39.130.215.218:6610/gitv_live/G_SHIDIAN/G_SHIDIAN.m3u8
-#EXTINF:-1 ,陇川综合
-http://live.ynurl.com/video/s10027-LCDST/index.m3u8
-#EXTINF:-1 ,德钦综合
-http://39.130.215.158:6610/gitv_live/G_DIQINGDQ/G_DIQINGDQ.m3u8
-#EXTINF:-1 ,维西综合
-http://39.130.215.158:6610/gitv_live/G_DIQINGWX/G_DIQINGWX.m3u8
-#EXTINF:-1 ,金平综合
-http://39.130.215.211:6610/gitv_live/G_JINPING/G_JINPING.m3u8
-#EXTINF:-1 ,建水综合
-http://39.130.215.218:6610/gitv_live/G_JIANSHUI/G_JIANSHUI.m3u8
-#EXTINF:-1 ,泸西综合
-http://39.130.215.169:6610/gitv_live/G_LUXI/G_LUXI.m3u8
-#EXTINF:-1 ,弥勒新闻
-http://39.130.215.218:6610/gitv_live/G_MILE/G_MILE.m3u8
-#EXTINF:-1 ,石屏综合
-http://39.130.215.158:6610/gitv_live/G_SHIPING/G_SHIPING.m3u8
-#EXTINF:-1 ,沧源综合
-http://39.130.215.158:6610/gitv_live/G_LCCANGYUAN/G_LCCANGYUAN.m3u8
-#EXTINF:-1 ,凤庆综合
-http://39.130.215.158:6610/gitv_live/G_LCFENGQING/G_LCFENGQING.m3u8
-#EXTINF:-1 ,耿马综合
-http://39.130.215.158:6610/gitv_live/G_LCGENGMA/G_LCGENGMA.m3u8
-#EXTINF:-1 ,临翔综合
-http://39.130.215.158:6610/gitv_live/G_LCLINXIANG/G_LCLINXIANG.m3u8
-#EXTINF:-1 ,双江综合
-http://39.130.215.158:6610/gitv_live/G_LCSHUANGJIANG/G_LCSHUANGJIANG.m3u8
-#EXTINF:-1 ,永德综合
-http://39.130.215.158:6610/gitv_live/G_LCYONGDE/G_LCYONGDE.m3u8
-#EXTINF:-1 ,云县综合
-http://39.130.215.158:6610/gitv_live/G_LCYUNXIAN/G_LCYUNXIAN.m3u8
-#EXTINF:-1 ,镇康综合
-http://39.130.215.158:6610/gitv_live/G_LCZHENKANG/G_LCZHENKANG.m3u8
-#EXTINF:-1 ,江城综合
-http://39.130.215.169:6610/gitv_live/G_JIANGCHENG/G_JIANGCHENG.m3u8
-#EXTINF:-1 ,景东综合
-http://39.130.215.219:6610/gitv_live/G_JINGDONG/G_JINGDONG.m3u8
-#EXTINF:-1 ,澜沧综合
-http://39.130.215.218:6610/gitv_live/G_LANCANG/G_LANCANG.m3u8
-#EXTINF:-1 ,孟连综合
-http://39.130.215.219:6610/gitv_live/G_MENGLIAN/G_MENGLIAN.m3u8
-#EXTINF:-1 ,香格里拉综合
-http://39.130.215.158:6610/gitv_live/G_DIQINGXGLL/G_DIQINGXGLL.m3u8
-#EXTINF:-1 ,家有购物
-http://120.221.5.177:8089/PLTV/88888888/224/3221226038/index.m3u8
-#EXTINF:-1 ,家有购物
-http://120.221.5.113:8089/PLTV/88888888/224/3221226038/index.m3u8
-#EXTINF:-1 ,家有购物
-http://183.207.248.71/cntv/live1/SD-1500k-576P-jiayougw/SD-1500k-576P-jiayougw
-#EXTINF:-1 ,家有购物
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225682/index.m3u8
-#EXTINF:-1 ,家有购物
-http://112.50.243.8/PLTV/88888888/224/3221225876/1.m3u8
-#EXTINF:-1 ,家有购物
-http://39.134.65.162/PLTV/88888888/224/3221225554/index.m3u8
-#EXTINF:-1 ,家有购物
-http://39.134.176.148/PLTV/88888888/224/3221226741/index.m3u8
-#EXTINF:-1 ,家有购物
-http://39.134.176.148/PLTV/88888888/224/3221226777/index.m3u8
-#EXTINF:-1 ,家有购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221225498/1.m3u8
-#EXTINF:-1 ,家有购物
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226355/1.m3u8
-#EXTINF:-1 ,铜仁新闻综合
-http://media.trrtv.com:8083/videos/live/10/37/iY2ZjcOkrjAJN/iY2ZjcOkrjAJN.M3U8
-#EXTINF:-1 ,铜仁公共频道
-http://media.trrtv.com:8083/videos/live/53/2/XSpPeSTEmkFgY/XSpPeSTEmkFgY.M3U8
-#EXTINF:-1 ,铜仁公共频道
-http://gztr.chinashadt.com:2036/live/stream:tr2.stream/playlist.m3u8
-#EXTINF:-1 ,黔南新闻综合
-http://gzqn.chinashadt.com:1935/live/qntv2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,黔南公共频道
-http://gzqn.chinashadt.com:1935/live/qntv1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,黔西南综合
-http://live.qxndt.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,黔西南公共
-http://live.qxndt.com/channel3/sd/live.m3u8
-#EXTINF:-1 ,清镇新闻综合
-http://pili-live-rtmp.143.i2863.com/i2863-143/live_143_397273.m3u8
-#EXTINF:-1 ,松桃新闻频道
-http://live.strmtzx.cn/stxw/sd/live.m3u8
-#EXTINF:-1 ,松桃综艺频道
-http://live.strmtzx.cn/stzy/sd/live.m3u8
-#EXTINF:-1 ,石阡新闻频道
-http://58.16.204.36:9000/hls/main/playlist.m3u8
-#EXTINF:-1 ,罗甸综合频道
-http://pili-live-rtmp.210.i2863.com/i2863-210/live_210_050252.m3u8
-#EXTINF:-1 ,三都新闻综合
-http://pili-live-rtmp.207.i2863.com/i2863-207/sdpdzb.m3u8
-#EXTINF:-1 ,钟山综合频道
-http://live.lpszstv.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,金海湖电视台
-http://pili-live-hls.jhh.ddcpc.cn/ddcpc-jhh/tv1050-1563865985.m3u8
-#EXTINF:-1 ,道真新闻综合
-http://live.dzrmt.com:90/live/XWZH.m3u8
-#EXTINF:-1 ,湄潭综合频道
-http://r.gslb.lecloud.com/live/hls/2020010930fXU003699/desc.m3u8
-#EXTINF:-1 ,湄潭综合频道
-http://r.gslb.lecloud.com/live/hls/2020010930fXU003613/desc.m3u8
-#EXTINF:-1 ,仁怀新闻频道
-http://pili-live-rtmp.152.i2863.com/i2863-152/live_152_152598.m3u8
-#EXTINF:-1 ,内蒙古蒙语
-http://live5.m2oplus.nmtv.cn/3/sd/live.m3u8
-#EXTINF:-1 ,内蒙古新闻综合
-http://live.m2oplus.nmtv.cn/7/sd/live.m3u8
-#EXTINF:-1 ,内蒙古文体娱乐
-http://live5.m2oplus.nmtv.cn/8/sd/live.m3u8
-#EXTINF:-1 ,内蒙古经济生活
-http://live5.m2oplus.nmtv.cn/2/sd/live.m3u8
-#EXTINF:-1 ,内蒙古农牧频道
-http://live5.m2oplus.nmtv.cn/6/sd/live.m3u8
-#EXTINF:-1 ,内蒙古文化频道
-http://live5.m2oplus.nmtv.cn/5/sd/live.m3u8
-#EXTINF:-1 ,足球频道
-http://ivi.bupt.edu.cn/hls/zqhd.m3u8
-#EXTINF:-1 ,鄂尔多斯新闻综合
-http://116.136.138.101:800/16XW47m/live.m3u8
-#EXTINF:-1 ,鄂尔多斯经济服务
-http://116.136.138.101:800/skr9x4S/live.m3u8
-#EXTINF:-1 ,鄂尔多斯城市生活
-http://116.136.138.101:800/Wwz5Rge/live.m3u8
-#EXTINF:-1 ,鄂尔多斯蒙语综合
-http://116.136.138.101:800/634d7Ls/live.m3u8
-#EXTINF:-1 ,包头新闻综合
-http://live.btgdt.com/channels/btgd/xwzh/m3u8:500k/live
-#EXTINF:-1 ,包头生活服务
-http://live.btgdt.com/channels/btgd/shfw/m3u8:500k/live
-#EXTINF:-1 ,包头经济频道
-http://live.btgdt.com/channels/btgd/jjpd/m3u8:500k/live
-#EXTINF:-1 ,达茂综合频道
-http://live.baotounews.com/video/s10045-dmtv/index.m3u8
-#EXTINF:-1 ,固阳综合频道
-http://live.baotounews.com/video/s10042-gytv/index.m3u8
-#EXTINF:-1 ,中国交通海南
-http://tv.lanjingfm.com/cctbn/hainan.m3u8
-#EXTINF:-1 ,三亚新闻综合
-http://hnsy.chinashadt.com:1935/live/syzb.stream/playlist.m3u8
-#EXTINF:-1 ,儋州综合频道
-https://36009.hlsplay.aodianyun.com/tv_radio_36009/tv_channel_1330.m3u8
-#EXTINF:-1 ,陵水综合频道
-http://pili-live-hls.lsrm.tianma3600.com/lsrm/lsds.m3u8
-#EXTINF:-1 ,安多卫视
-http://ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221225659/index.m3u8
-#EXTINF:-1 ,安多卫视
-http://39.134.65.162/PLTV/88888888/224/3221225531/index.m3u8
-#EXTINF:-1 ,安多卫视
-http://183.207.248.71/gitv/live1/G_ANDUO/G_ANDUO
-#EXTINF:-1 ,安多卫视
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226311/1.m3u8
-#EXTINF:-1 ,西宁新闻
-http://wshls.butel.com/live/139a3.m3u8
-#EXTINF:-1 ,西宁生活
-http://wshls.butel.com/live/147f4.m3u8
-#EXTINF:-1 ,玉树新闻频道
-http://stream.ysbtv.net/1/sd/live.m3u8
-#EXTINF:-1 ,海东综合频道
-http://liveqhhddst.sobeycache.com/hddst/zb5.m3u8?auth_key=1616661443-0-0-20915db72cc99fb292502bd11a5f6ec0
-#EXTINF:-1 ,海南州藏语频道
-http://live.hnzzzzzdst.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,海西州综合频道
-http://stream.haixitv.cn/1/sd/live.m3u8
-#EXTINF:-1 ,格尔木新闻综合
-http://live.geermurmt.com/xwzh/sd/live.m3u8
-#EXTINF:-1 ,格尔木生活公共
-http://live.geermurmt.com/ggpd/sd/live.m3u8
-#EXTINF:-1 ,大通综合频道
-http://dtrmlive.qhxndx.cn/testpush/sd/live.m3u8
-#EXTINF:-1 ,宁夏教育
-http://dxzb.nxeduyun.com/000000001000/nxjiaoyu/index.m3u8
-#EXTINF:-1 ,银川生活
-http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8
-#EXTINF:-1 ,银川公共
-http://stream.ycgbtv.com.cn/ycgg/sd/live.m3u8
-#EXTINF:-1 ,中宁综合频道
-http://player.juyun.tv/tv/15470167.m3u8
-#EXTINF:-1 ,新疆维语综合
-http://livehyw.sobeycache.com/xjtvs/zb2.m3u8?auth_key=1807150105-0-0-c3a098295a22448c89a29cf5df542211
-#EXTINF:-1 ,新疆哈语综合
-http://livehyw.sobeycache.com/xjtvs/zb3.m3u8?auth_key=1807150116-0-0-ee46da0e36aa0d170240c1102e8c8e47
-#EXTINF:-1 ,新疆教育
-http://tv05.tsytv.com.cn/liveho/xinjiangjiaoyu.stream/playlist.m3u8
-#EXTINF:-1 ,兵团建设
-http://v.btzx.com.cn:1935/live/news.stream/playlist.m3u8
-#EXTINF:-1 ,乌鲁木齐汉语综合
-http://pili-live-hls.xjwlmqapp2019.sobeylive.com/xjwlmqapp2019/xwzh.m3u8
-#EXTINF:-1 ,乌鲁木齐维语综合
-http://pili-live-hls.xjwlmqapp2019.sobeylive.com/xjwlmqapp2019/wy.m3u8
-#EXTINF:-1 ,乌鲁木齐影视频道
-http://pili-live-hls.xjwlmqapp2019.sobeylive.com/xjwlmqapp2019/ys.m3u8
-#EXTINF:-1 ,乌鲁木齐妇女儿童
-http://pili-live-hls.xjwlmqapp2019.sobeylive.com/xjwlmqapp2019/shfw.m3u8
-#EXTINF:-1 ,哈密一套
-http://tv05.tsytv.com.cn/liveho/hami-1.stream/playlist.m3u8
-#EXTINF:-1 ,哈密二套
-http://tv05.tsytv.com.cn/liveho/hami-2.stream/playlist.m3u8
-#EXTINF:-1 ,哈密三套
-http://tv05.tsytv.com.cn/liveho/hami-3.stream/playlist.m3u8
-#EXTINF:-1 ,吐鲁番直播频道
-http://www.tlfgbdt.com:8000/hls/Mystream2/index.m3u8
-#EXTINF:-1 ,博州汉语综合
-http://klmyyun.chinavas.com/hls/bozhou1.m3u8
-#EXTINF:-1 ,博州维语综合
-http://klmyyun.chinavas.com/hls/bozhou3.m3u8
-#EXTINF:-1 ,福海汉语综合
-http://klmyyun.chinavas.com/hls/fuhai2.m3u8
-#EXTINF:-1 ,福海维语综合
-http://klmyyun.chinavas.com/hls/fuhai1.m3u8
-#EXTINF:-1 ,五家渠新闻综合
-http://livewjq.chinamcache.com/live/wjq1.m3u8
-#EXTINF:-1 ,霍尔果斯综合
-http://pili-live-hls.huoerguosi2019.sobeylive.com/huoerguosi2019/tvvideo01.m3u8
-#EXTINF:-1 ,西藏藏语
-http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8
-#EXTINF:-1 ,西藏藏语
-http://dbiptv.sn.chinamobile.com/PLTV/88888888/224/3221226312/1.m3u8
diff --git a/extraResources/电视频道_3_高清.m3u b/extraResources/电视频道_3_高清.m3u
deleted file mode 100644
index 02c97c5..0000000
--- a/extraResources/电视频道_3_高清.m3u
+++ /dev/null
@@ -1,1877 +0,0 @@
-#EXTM3U
-#EXTINF:-1 ,CCTV-1蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225922/1.m3u8
-#EXTINF:-1 ,CCTV-2蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225923/1.m3u8
-#EXTINF:-1 ,CCTV-3蓝光
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-3/1.m3u8
-#EXTINF:-1 ,CCTV-3蓝光
-http://223.110.241.130:6610/gitv/live1/G_CCTV-3-HQ/.m3u8
-#EXTINF:-1 ,CCTV-4蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225802/1.m3u8
-#EXTINF:-1 ,CCTV-5蓝光
-http://112.17.40.145/PLTV/88888888/224/3221226687/index.m3u8
-#EXTINF:-1 ,CCTV-5+蓝光
-http://117.169.124.46:6410/ysten-businessmobile/live/hdcctv05plus/1.m3u8
-#EXTINF:-1 ,CCTV-5蓝光
-http://223.110.241.130:6610/gitv/live1/G_CCTV-5-HQ/G_CCTV-5-HQ/
-#EXTINF:-1 ,CCTV-6蓝光
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-6/1.m3u8
-#EXTINF:-1 ,CCTV-6蓝光
-http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8
-#EXTINF:-1 ,CCTV-7蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225927/1.m3u8
-#EXTINF:-1 ,CCTV-8蓝光
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-8/1.m3u8
-#EXTINF:-1 ,CCTV-9蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225820/1.m3u8
-#EXTINF:-1 ,CCTV-12蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225816/1.m3u8
-#EXTINF:-1 ,CCTV-14蓝光
-http://117.148.187.37/PLTV/88888888/224/3221226126/index.m3u8
-#EXTINF:-1 ,纯享4K频道
-http://112.50.243.8/PLTV/88888888/224/3221226825/1.m3u8
-#EXTINF:-1 ,CCTV-4K蓝码
-http://112.17.40.12/PLTV/88888888/224/3221226758/1.m3u8
-#EXTINF:-1 ,CCTV-4K蓝码
-http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 ,CCTV-4K蓝码
-http://117.148.187.83/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 ,CCTV-4K高码
-http://112.17.40.140/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 ,CHC高清电影
-http://ivi.bupt.edu.cn/hls/chchd.m3u8
-#EXTINF:-1 ,百事4K频道
-http://112.17.40.145/PLTV/88888888/224/3221226718/index.m3u8
-#EXTINF:-1 ,美丽中国4K
-https://hls.cntv.baishancdnx.cn/asp/hls/8000/0303000a/3/default/9891cea600df4e8a83851b1b1ce23194/8000.m3u8
-#EXTINF:-1 ,凤凰卫视资讯台
-http://112.17.40.140/PLTV/88888888/224/3221226491/index.m3u8
-#EXTINF:-1 ,凤凰卫视资讯台
-http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8
-#EXTINF:-1 ,凤凰卫视中文台
-http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8
-#EXTINF:-1 ,凤凰卫视中文台
-http://117.169.120.138:8080/live/fhchinese/index.m3u8
-#EXTINF:-1 ,安徽卫视蓝光
-http://223.110.245.147/ott.js.chinamobile.com/PLTV/3/224/3221225634/index.m3u8
-#EXTINF:-1 ,奥林匹克蓝光
-http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8?fluxustv.m3u8
-#EXTINF:-1 ,北京纪实蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8
-#EXTINF:-1 ,东方卫视蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225828/1.m3u8
-#EXTINF:-1 ,东南卫视蓝光
-http://117.169.124.37:6610/ysten-businessmobile/live/dongnanstv/yst.m3u8
-#EXTINF:-1 ,东南卫视蓝光
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226046/index.m3u8
-#EXTINF:-1 ,动漫秀场蓝光
-http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8
-#EXTINF:-1 ,峨眉电影蓝光
-http://scgctvshow.sctv.com/hdlive/emei/1.m3u8
-#EXTINF:-1 ,广东卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226225/index.m3u8
-#EXTINF:-1 ,贵州卫视蓝光
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=41&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,河南卫视蓝光
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=19&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,湖北卫视蓝光
-http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8
-#EXTINF:-1 ,湖南卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226553/index.m3u8
-#EXTINF:-1 ,欢笑剧场蓝光
-http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8
-#EXTINF:-1 ,吉林卫视蓝光
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=25&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,极速汽车蓝光
-http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8
-#EXTINF:-1 ,纪实频道蓝光
-http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8
-#EXTINF:-1 ,江苏卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226414/index.m3u8
-#EXTINF:-1 ,江西卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226557/index.m3u8
-#EXTINF:-1 ,蓝光影视1台
-http://112.50.243.8/PLTV/88888888/224/3221226736/1.m3u8
-#EXTINF:-1 ,蓝光影视2台
-http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8
-#EXTINF:-1 ,蓝光影视3台
-http://112.50.243.8/PLTV/88888888/224/3221226708/1.m3u8
-#EXTINF:-1 ,蓝光影视4台
-http://112.50.243.8/PLTV/88888888/224/3221226712/1.m3u8
-#EXTINF:-1 ,蓝光影视5台
-http://112.50.243.8/PLTV/88888888/224/3221225893/1.m3u8
-#EXTINF:-1 ,蓝光影视6台
-http://112.50.243.8/PLTV/88888888/224/3221226692/1.m3u8
-#EXTINF:-1 ,蓝光影视7台
-http://112.50.243.8/PLTV/88888888/224/3221226754/1.m3u8
-#EXTINF:-1 ,蓝光影视8台
-http://112.17.40.145/PLTV/88888888/224/3221226608/index.m3u8
-#EXTINF:-1 ,蓝光影视9台
-http://112.17.40.145/PLTV/88888888/224/3221226606/index.m3u8
-#EXTINF:-1 ,蓝光影视10台
-http://112.17.40.145/PLTV/88888888/224/3221226360/index.m3u8
-#EXTINF:-1 ,蓝光动画13台
-http://112.50.243.8/PLTV/88888888/224/3221226732/1.m3u8
-#EXTINF:-1 ,蓝光动画14台
-http://112.50.243.8/PLTV/88888888/224/3221226741/1.m3u8
-#EXTINF:-1 ,蓝光动漫15台
-http://112.50.243.8/PLTV/88888888/224/3221226743/1.m3u8
-#EXTINF:-1 ,辽宁卫视蓝光
-http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8
-#EXTINF:-1 ,龙江卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226555/index.m3u8
-#EXTINF:-1 ,山东卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226410/index.m3u8
-#EXTINF:-1 ,深圳卫视蓝光
-http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8
-#EXTINF:-1 ,天津卫视蓝光
-http://112.17.40.140/PLTV/88888888/224/3221226412/index.m3u8
-#EXTINF:-1 ,五星体育蓝光
-http://117.148.187.37/PLTV/88888888/224/3221226582/index.m3u8
-#EXTINF:-1 ,浙江卫视蓝光
-http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8
-#EXTINF:-1 ,重庆卫视蓝光
-http://ivi.bupt.edu.cn/hls/cqhd.m3u8
-#EXTINF:-1 ,爱电竞
-http://101.71.255.229:6610/zjhs/2/10110/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱动漫
-http://101.71.255.229:6610/zjhs/2/10107/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱都市
-http://101.71.255.229:6610/zjhs/2/10111/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱江湖
-http://101.71.255.229:6610/zjhs/2/10114/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱解密
-http://101.71.255.229:6610/zjhs/2/10109/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱经典
-http://101.71.255.229:6610/zjhs/2/10106/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱军武
-http://101.71.255.229:6610/zjhs/2/10119/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱科幻
-http://101.71.255.229:6610/zjhs/2/10113/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱历史
-http://101.71.255.229:6610/zjhs/2/10120/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱美食
-http://101.71.255.229:6610/zjhs/2/10108/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱奇谈
-http://101.71.255.229:6610/zjhs/2/10103/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱时尚
-http://101.71.255.229:6610/zjhs/2/10118/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱世界
-http://101.71.255.229:6610/zjhs/2/10121/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱玩具
-http://101.71.255.229:6610/zjhs/2/10117/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱喜剧
-http://101.71.255.229:6610/zjhs/2/10105/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱悬疑
-http://101.71.255.229:6610/zjhs/2/10104/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱幼教
-http://101.71.255.229:6610/zjhs/2/10112/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱院线
-http://101.71.255.229:6610/zjhs/2/10116/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,爱青春
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230130/index.m3u8
-#EXTINF:-1 ,爱家庭
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230118/index.m3u8
-#EXTINF:-1 ,爱探索
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8
-#EXTINF:-1 ,爱科学
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230106/index.m3u8
-#EXTINF:-1 ,爱猎奇
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230097/index.m3u8
-#EXTINF:-1 ,爱谍战
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8
-#EXTINF:-1 ,爱娱乐
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230077/index.m3u8
-#EXTINF:-1 ,爱旅行
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8
-#EXTINF:-1 ,爱怀旧
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230049/index.m3u8
-#EXTINF:-1 ,爱体育
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8
-#EXTINF:-1 ,爱赛车
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8
-#EXTINF:-1 ,爱浪漫
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230005/index.m3u8?fmt=ts2hls
-#EXTINF:-1 ,CCTV-4欧洲
-https://cctvtxyh5ca.liveplay.myqcloud.com/live/cctveurope_2/index.m3u8
-#EXTINF:-1 ,CCTV-4美洲
-https://cctvcnch5ca.v.wscdns.com/live/cctvamerica_2/index.m3u8
-#EXTINF:-1 ,CCTV-6电影
-http://121.31.30.91:8081/ysten-business/live/cctv-6/1.m3u8
-#EXTINF:-1 ,CCTV-13新闻
-http://cctvalih5ca.v.myalicdn.com/live/cctv13_2/index.m3u8
-#EXTINF:-1 ,CCTV-15音乐
-http://101.71.255.229:6610/zjhs/2/10088/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,CCTV-16奥运
-http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8
-#EXTINF:-1 ,CGTN国际频道
-http://live.cgtn.com/1000/prog_index.m3u8
-#EXTINF:-1 ,CIBN综合
-http://v.iam7.cn/iptv/cibn.php?code=DianJing
-#EXTINF:-1 ,CIBN汽车
-http://v.iam7.cn/iptv/cibn.php?code=QiChe
-#EXTINF:-1 ,CIBN健康
-http://v.iam7.cn/iptv/cibn.php?code=JianKang
-#EXTINF:-1 ,CIBN映画
-http://v.iam7.cn/iptv/cibn.php?code=TiYu
-#EXTINF:-1 ,CIBN好莱坞
-http://v.iam7.cn/iptv/cibn.php?code=ZongHe
-#EXTINF:-1 ,CIBN真人秀
-http://v.iam7.cn/iptv/cibn.php?code=LuShi
-#EXTINF:-1 ,CIBN全电竞
-http://v.iam7.cn/iptv/cibn.php?code=115
-#EXTINF:-1 ,CIBN院线大片
-http://v.iam7.cn/iptv/cibn.php?code=DanJi
-#EXTINF:-1 ,CIBN精品影院
-http://v.iam7.cn/iptv/cibn.php?code=JingPin
-#EXTINF:-1 ,CIBN流金岁月
-http://v.iam7.cn/iptv/cibn.php?code=Shoucang
-#EXTINF:-1 ,CIBN情感影院
-http://v.iam7.cn/iptv/cibn.php?code=QingGan
-#EXTINF:-1 ,CIBN艺术院线
-http://v.iam7.cn/iptv/cibn.php?code=YingXiong
-#EXTINF:-1 ,CIBN文旅中国
-http://v.iam7.cn/iptv/cibn.php?code=MeiZhuang
-#EXTINF:-1 ,CIBN时尚生活
-http://v.iam7.cn/iptv/cibn.php?code=DongLinFaYin
-#EXTINF:-1 ,CIBN动作影院
-http://v.iam7.cn/iptv/cibn.php?code=ShengHuo
-#EXTINF:-1 ,CIBN动漫剧场
-http://v.iam7.cn/iptv/cibn.php?code=QinZi
-#EXTINF:-1 ,CIBN精品收藏
-http://v.iam7.cn/iptv/cibn.php?code=501
-#EXTINF:-1 ,CIBN低价秒杀
-http://v.iam7.cn/iptv/cibn.php?code=300
-#EXTINF:-1 ,CIBN家装精选
-http://v.iam7.cn/iptv/cibn.php?code=301
-#EXTINF:-1 ,CIBN美食厨房
-http://v.iam7.cn/iptv/cibn.php?code=302
-#EXTINF:-1 ,CIBN中国交通
-http://v.iam7.cn/iptv/cibn.php?code=7
-#EXTINF:-1 ,CIBN环球奇观
-http://v.iam7.cn/iptv/cibn.php?code=8
-#EXTINF:-1 ,CIBN老陈座谈
-http://v.iam7.cn/iptv/cibn.php?code=136
-#EXTINF:-1 ,CIBN全球歌曲
-http://v.iam7.cn/iptv/cibn.php?code=338
-#EXTINF:-1 ,CIBN流行榜单
-http://v.iam7.cn/iptv/cibn.php?code=155
-#EXTINF:-1 ,CIBN经典乐场
-http://v.iam7.cn/iptv/cibn.php?code=162
-#EXTINF:-1 ,CIBN女团专场
-http://v.iam7.cn/iptv/cibn.php?code=208
-#EXTINF:-1 ,CIBN音乐综艺
-http://v.iam7.cn/iptv/cibn.php?code=145
-#EXTINF:-1 ,CIBN经典音乐
-http://v.iam7.cn/iptv/cibn.php?code=128
-#EXTINF:-1 ,CIBN古典音乐
-http://v.iam7.cn/iptv/cibn.php?code=78
-#EXTINF:-1 ,CIBN莎翁戏剧
-http://v.iam7.cn/iptv/cibn.php?code=68
-#EXTINF:-1 ,iHOT爱喜剧
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230022/index.m3u8?fmt=ts2hls
-#EXTINF:-1 ,iHOT爱喜剧
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230022/01.m3u8?fmt=ts2hls
-#EXTINF:-1 ,iHOT爱科幻
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230025/index.m3u8?fmt=ts2hls
-#EXTINF:-1 ,iHOT爱科幻
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230025/01.m3u8?fmt=ts2hls
-#EXTINF:-1 ,iHOT爱浪漫
-http://101.71.255.229:6610/zjhs/2/10115/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,iHOT爱浪漫
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230005/01.m3u8?fmt=ts2hls
-#EXTINF:-1 ,iHOT爱世界
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230046/index.m3u8
-#EXTINF:-1 ,iHOT爱院线
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230019/index.m3u8?fmt=ts2hls
-#EXTINF:-1 ,黑莓电影
-http://121.31.30.91:8081/ysten-business/live/jdianying/1.m3u8
-#EXTINF:-1 ,黑莓电竞
-http://121.31.30.91:8081/ysten-business/live/wmyx/1.m3u8
-#EXTINF:-1 ,中国功夫
-http://112.50.243.8/PLTV/88888888/224/3221225896/1.m3u8
-#EXTINF:-1 ,金牌综艺
-http://121.31.30.91:8081/ysten-business/live/saishijx/1.m3u8
-#EXTINF:-1 ,金牌综艺
-http://112.50.243.8/PLTV/88888888/224/3221225884/1.m3u8
-#EXTINF:-1 ,农业致富
-http://121.31.30.91:8081/ysten-business/live/nongyezf/1.m3u8
-#EXTINF:-1 ,明星大片
-http://121.31.30.91:8081/ysten-business/live/mingxingdp/1.m3u8
-#EXTINF:-1 ,惊悚悬疑
-http://121.31.30.91:8081/ysten-business/live/jingsongxy/1.m3u8
-#EXTINF:-1 ,惊悚悬疑
-http://112.50.243.8/PLTV/88888888/224/3221225885/1.m3u8
-#EXTINF:-1 ,精品记录
-http://121.31.30.91:8081/ysten-business/live/jingpinjl/1.m3u8
-#EXTINF:-1 ,精品记录
-http://112.50.243.8/PLTV/88888888/224/3221225888/1.m3u8
-#EXTINF:-1 ,精品体育
-http://112.50.243.8/PLTV/88888888/224/3221225925/1.m3u8
-#EXTINF:-1 ,精品体育
-http://112.50.243.8/PLTV/88888888/224/3221225803/1.m3u8
-#EXTINF:-1 ,精品体育
-http://121.31.30.91:8081/ysten-business/live/jtiyu/1.m3u8
-#EXTINF:-1 ,自由搏击
-http://121.31.30.91:8081/ysten-business/live/SD-1500k-576P-bokesen/1.m3u8
-#EXTINF:-1 ,自由搏击
-http://112.50.243.8/PLTV/88888888/224/3221225895/1.m3u8
-#EXTINF:-1 ,精品大剧
-http://121.31.30.91:8081/ysten-business/live/jdaju/1.m3u8
-#EXTINF:-1 ,精品大剧
-http://112.50.243.8/PLTV/88888888/224/3221225889/1.m3u8
-#EXTINF:-1 ,家庭剧场
-http://121.31.30.91:8081/ysten-business/live/jiatingjc/1.m3u8
-#EXTINF:-1 ,家庭剧场
-http://112.50.243.8/PLTV/88888888/224/3221225882/1.m3u8
-#EXTINF:-1 ,动作电影
-http://121.31.30.91:8081/ysten-business/live/dongzuody/1.m3u8
-#EXTINF:-1 ,动作电影
-http://112.50.243.8/PLTV/88888888/224/3221225879/1.m3u8
-#EXTINF:-1 ,古装剧场
-http://112.50.243.8/PLTV/88888888/224/3221225880/1.m3u8
-#EXTINF:-1 ,军旅剧场
-http://121.31.30.91:8081/ysten-business/live/junlvjc/1.m3u8
-#EXTINF:-1 ,军旅剧场
-http://112.50.243.8/PLTV/88888888/224/3221225887/1.m3u8
-#EXTINF:-1 ,军事评论
-http://121.31.30.91:8081/ysten-business/live/junshipl/1.m3u8
-#EXTINF:-1 ,军事评论
-http://112.50.243.8/PLTV/88888888/224/3221225890/1.m3u8
-#EXTINF:-1 ,健康有约
-http://121.31.30.91:8081/ysten-business/live/ljiankangyouyue/1.m3u8
-#EXTINF:-1 ,健康有约
-http://112.50.243.8/PLTV/88888888/224/3221225883/1.m3u8
-#EXTINF:-1 ,超级电影
-http://112.50.243.8/PLTV/88888888/224/3221225804/1.m3u8
-#EXTINF:-1 ,超级电影
-http://112.50.243.8/PLTV/88888888/224/3221225926/1.m3u8
-#EXTINF:-1 ,超级综艺
-http://112.50.243.8/PLTV/88888888/224/3221225924/1.m3u8
-#EXTINF:-1 ,超级综艺
-http://112.50.243.8/PLTV/88888888/224/3221225801/1.m3u8
-#EXTINF:-1 ,超级电视剧
-http://112.50.243.8/PLTV/88888888/224/3221225928/1.m3u8
-#EXTINF:-1 ,超级电视剧
-http://112.50.243.8/PLTV/88888888/224/3221225806/1.m3u8
-#EXTINF:-1 ,公主城堡
-http://hls-ott-zhibo.wasu.tv/live/328/index.m3u8
-#EXTINF:-1 ,北京少儿
-http://ivi.bupt.edu.cn/hls/btv10.m3u8
-#EXTINF:-1 ,动漫电影
-http://112.17.40.140/PLTV/88888888/224/3221226178/index.m3u8
-#EXTINF:-1 ,云南少儿
-http://edge2.yntv.cn/channels/yntv/ynse/flv:sd/live
-#EXTINF:-1 ,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225625/chunklist.m3u8
-#EXTINF:-1 ,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225646/chunklist.m3u8
-#EXTINF:-1 ,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225625/1.m3u8
-#EXTINF:-1 ,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225646/1.m3u8
-#EXTINF:-1 ,优漫卡通
-http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://117.148.187.37/PLTV/88888888/224/3221226172/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://121.31.30.90:8085/ysten-business/live/youmankaton/1.m3u8
-#EXTINF:-1 ,优漫卡通
-http://121.31.30.90:8085/ysten-business/live/youmankaton/yst.m3u8
-#EXTINF:-1 ,优漫卡通
-http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/youmankaton/1.m3u8
-#EXTINF:-1 ,嘉佳卡通
-http://112.17.40.140/PLTV/88888888/224/3221226461/index.m3u8
-#EXTINF:-1 ,金鹰卡通
-http://121.31.30.90:8085/ysten-business/live/jinyingkaton/1.m3u8
-#EXTINF:-1 ,金鹰卡通
-http://121.31.30.90:8085/ysten-business/live/jinyingkaton/yst.m3u8
-#EXTINF:-1 ,金鹰卡通
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226012/index.m3u8
-#EXTINF:-1 ,卡酷少儿
-http://121.31.30.90:8085/ysten-business/live/kakukaton/yst.m3u8
-#EXTINF:-1 ,卡酷少儿
-http://121.31.30.90:8085/ysten-business/live/kakukaton/1.m3u8
-#EXTINF:-1 ,Beat动画
-http://101.71.255.229:6610/zjhs/2/10043/index.m3u8?virtualDomain=zjhs.live_hls.zte.com&IASHttpSessionId=OTT3830220200305010224092360
-#EXTINF:-1 ,靖天卡通台
-http://61.58.60.230:9319/live/207.m3u8
-#EXTINF:-1 ,靖天国际台
-http://61.58.60.230:9319/live/205.m3u8
-#EXTINF:-1 ,靖天育乐台
-http://61.58.60.230:9319/live/204.m3u8
-#EXTINF:-1 ,靖天资讯台
-http://61.58.60.230:9319/live/202.m3u8
-#EXTINF:-1 ,靖天欢乐台
-http://61.58.60.230:9319/live/201.m3u8
-#EXTINF:-1 ,靖天映画台
-http://61.58.60.230:9319/live/244.m3u8
-#EXTINF:-1 ,靖天日本台
-http://61.58.60.230:9319/live/243.m3u8
-#EXTINF:-1 ,靖洋戏剧台
-http://61.58.60.230:9319/live/203.m3u8
-#EXTINF:-1 ,靖洋卡通台
-http://61.58.60.230:9319/live/206.m3u8
-#EXTINF:-1 ,北京卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/4000000/mnf.m3u8
-#EXTINF:-1 ,北京新闻频道
-http://ivi.bupt.edu.cn/hls/btv9hd.m3u8
-#EXTINF:-1 ,北京影视频道
-http://ivi.bupt.edu.cn/hls/btv4hd.m3u8
-#EXTINF:-1 ,北京财经频道
-http://ivi.bupt.edu.cn/hls/btv5.m3u8
-#EXTINF:-1 ,北京冬奥纪实
-http://ivi.bupt.edu.cn/hls/btv11hd.m3u8
-#EXTINF:-1 ,北京生活频道
-http://ivi.bupt.edu.cn/hls/btv7.m3u8
-#EXTINF:-1 ,北京国际频道
-http://61.58.60.230:9319/live/226.m3u8
-#EXTINF:-1 ,北京科教频道
-http://ivi.bupt.edu.cn/hls/btv3.m3u8
-#EXTINF:-1 ,北京文艺频道
-http://ivi.bupt.edu.cn/hls/btv2hd.m3u8
-#EXTINF:-1 ,北京青年频道
-http://ivi.bupt.edu.cn/hls/btv8.m3u8
-#EXTINF:-1 ,北京通州电视台
-http://pull.dayuntongzhou.com/live/tztv.m3u8
-#EXTINF:-1 ,北京置业频道
-http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8
-#EXTINF:-1 ,弈坛春秋频道
-http://223.110.243.135/PLTV/4/224/3221227031/index.m3u8
-#EXTINF:-1 ,顺义电视台
-http://livesydst.chinamcache.com/sydst/zb02.m3u8?auth_key=1617760534-0-0-ef412cb540374882cba8c638a5487436
-#EXTINF:-1 ,房山电视台
-http://live.funhillrm.com/2/sd/live.m3u8
-#EXTINF:-1 ,中国交通北京
-http://tv.lanjingfm.com/cctbn/beijing.m3u8
-#EXTINF:-1 ,清华大学电视台
-http://v.cic.tsinghua.edu.cn/hls/tsinghuatv.m3u8
-#EXTINF:-1 ,天津卫视
-http://ivi.bupt.edu.cn/hls/tjhd.m3u8
-#EXTINF:-1 ,天津新闻频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv1&nwtime=1589867316&sign=48e39d15723f57d06a7cae4362793669&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津影视频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv3&nwtime=1589867469&sign=2704b0e2026ccafad5d9736223d4d894&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津体育频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv5&nwtime=1589867522&sign=a946ead834a10c388c94f1bb817d056e&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津文艺频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv2&nwtime=1589867630&sign=2187f1e09c2e7ec8068e7f4d52789e32&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津少儿频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv7&nwtime=1589867678&sign=4c3c159df6c5f801b243738b699e2400&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津科教频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv6&nwtime=1589867716&sign=8d4729a0193b7f39655e396fd316290f&mip=3.92.243.33&from=com
-#EXTINF:-1 ,天津都市频道
-http://mlive1.91kds.cn/c9/tjyx.m3u8?id=tjtv4&nwtime=1589867760&sign=f938cf30cab4e76c923b80892046f2f5&mip=3.92.243.33&from=com
-#EXTINF:-1 ,山东教育卫视
-http://ivi.bupt.edu.cn/hls/sdetv.m3u8
-#EXTINF:-1 ,山东齐鲁电视台
-http://120.221.5.102:8089/PLTV/88888888/224/3221226045/1.m3u8
-#EXTINF:-1 ,山东影视频道
-http://120.221.44.101:8089/PLTV/88888888/224/3221225802/1.m3u8
-#EXTINF:-1 ,山东少儿频道
-http://120.221.44.101:8089/PLTV/88888888/224/3221226001/1.m3u8
-#EXTINF:-1 ,山东体育频道
-http://120.221.44.101:8089/PLTV/88888888/224/3221226075/1.m3u8
-#EXTINF:-1 ,山东综艺频道
-http://120.221.44.101:8089/PLTV/88888888/224/3221225855/1.m3u8
-#EXTINF:-1 ,山东生活频道
-http://120.221.5.102:8089/PLTV/88888888/224/3221225841/1.m3u8
-#EXTINF:-1 ,山东国际频道
-http://120.221.5.102:8089/PLTV/88888888/224/3221226047/1.m3u8
-#EXTINF:-1 ,山东公共频道
-http://120.221.5.102:8089/PLTV/88888888/224/3221226077/1.m3u8
-#EXTINF:-1 ,山东农科频道
-http://120.221.5.102:8089/PLTV/88888888/224/3221226018/1.m3u8
-#EXTINF:-1 ,山西卫视
-http://liveplay-kk.rtxapp.com/live/program/live/shanxiws/1300000/mnf.m3u8
-#EXTINF:-1 ,河北经济频道
-http://live4.plus.hebtv.com/hbjj/sd/live.m3u8
-#EXTINF:-1 ,河北都市频道
-http://live1.plus.hebtv.com/hbds/sd/live.m3u8
-#EXTINF:-1 ,河北影视频道
-http://live5.plus.hebtv.com/hbys/sd/live.m3u8
-#EXTINF:-1 ,河北少儿科教频道
-http://live5.plus.hebtv.com/sekj/sd/live.m3u8
-#EXTINF:-1 ,河北公共频道
-http://live1.plus.hebtv.com/hbgg/sd/live.m3u8
-#EXTINF:-1 ,河北农民频道
-http://live4.plus.hebtv.com/hbnm/sd/live.m3u8
-#EXTINF:-1 ,武术世界频道
-http://117.158.206.60:9080/live/wssj.m3u8
-#EXTINF:-1 ,上海新闻综合
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzhhd/4000000/mnf.m3u8
-#EXTINF:-1 ,上海五星体育
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/4000000/mnf.m3u8
-#EXTINF:-1 ,上海东方影视频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpd/1300000/mnf.m3u8
-#EXTINF:-1 ,上海哈哈炫动
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xdkt/1300000/mnf.m3u8
-#EXTINF:-1 ,上海都市频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpdhd/4000000/mnf.m3u8
-#EXTINF:-1 ,上海点掌财经频道
-http://cclive2.aniu.tv/live/anzb.m3u8
-#EXTINF:-1 ,上海教育台
-http://live.setv.sh.cn/slive/shedu02_1200k.m3u8
-#EXTINF:-1 ,上海法治天地
-http://keonline.shanghai.liveplay.qq.com/live/program/live/fztd/1300000/mnf.m3u8
-#EXTINF:-1 ,上海东方购物
-http://ocj2.kksmg.com/ocj2/ocj2.m3u8
-#EXTINF:-1 ,上海幸福彩频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/xfchd/4000000/mnf.m3u8
-#EXTINF:-1 ,新视觉
-http://liveplay-kk.rtxapp.com/live/program/live/xsjhd/4000000/mnf.m3u8
-#EXTINF:-1 ,SITV全纪实频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qjshd/4000000/mnf.m3u8
-#EXTINF:-1 ,七彩戏剧频道
-http://keonline.shanghai.liveplay.qq.com/live/program/live/qcxj/1300000/mnf.m3u8
-#EXTINF:-1 ,浦东东方财经
-http://keonline.shanghai.liveplay.qq.com/live/program/live/dfcj/1300000/mnf.m3u8
-#EXTINF:-1 ,金山电视台
-http://live.mudu.tv/watch/4zbn2f.m3u8
-#EXTINF:-1 ,东方卫视国际频道
-http://61.58.60.230:9319/live/227.m3u8
-#EXTINF:-1 ,东方购物优选频道
-http://ocj2.kksmg.com/ocj2/ocj1.m3u8
-#EXTINF:-1 ,江苏卫视
-http://ivi.bupt.edu.cn/hls/jshd.m3u8
-#EXTINF:-1 ,江苏公共新闻频道
-http://183.207.248.11/PLTV/4/224/3221225925/index.m3u8
-#EXTINF:-1 ,优漫卡通
-http://117.148.187.37/PLTV/88888888/224/3221226172/1.m3u8
-#EXTINF:-1 ,安徽卫视
-http://39.135.135.70/PLTV/88888888/224/3221225675/index.m3u8
-#EXTINF:-1 ,安徽影视频道
-http://zbbf2.ahtv.cn/live/756.m3u8
-#EXTINF:-1 ,安徽科教频道
-http://zbbf2.ahtv.cn/live/754.m3u8
-#EXTINF:-1 ,安徽公共频道
-http://zbbf2.ahtv.cn/live/752.m3u8
-#EXTINF:-1 ,安徽经济生活频道
-http://zbbf2.ahtv.cn/live/750.m3u8
-#EXTINF:-1 ,安徽人物频道
-http://zbbf2.ahtv.cn/live/da9.m3u8
-#EXTINF:-1 ,安徽综艺频道
-http://zbbf2.ahtv.cn/live/subfile/submain.m3u8?__hlslivecid=live%2F758&_redcdnuserid=6828634672642483297
-#EXTINF:-1 ,安徽国际频道
-http://zbbf2.ahtv.cn/live/dab.m3u8
-#EXTINF:-1 ,睛彩安徽频道
-http://zbbf2.ahtv.cn/live/db9.m3u8
-#EXTINF:-1 ,东南卫视
-http://ivi.bupt.edu.cn/hls/dnhd.m3u8
-#EXTINF:-1 ,浙江卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/4000000/mnf.m3u8
-#EXTINF:-1 ,浙江影视娱乐
-http://hw-m-l.cztv.com/channels/lantian/channel05/720p.m3u8
-#EXTINF:-1 ,浙江民生休闲
-http://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8
-#EXTINF:-1 ,浙江教育科技
-http://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8
-#EXTINF:-1 ,浙江少儿频道
-http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8
-#EXTINF:-1 ,浙江公共新闻
-http://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8
-#EXTINF:-1 ,浙江国际频道
-http://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8
-#EXTINF:-1 ,浙江钱江频道
-http://hw-m-l.cztv.com/channels/lantian/channel02/720p.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8
-#EXTINF:-1 ,浙江留学世界
-http://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8
-#EXTINF:-1 ,数码时代频道
-http://hw-m-l.cztv.com/channels/lantian/channel12/720p.m3u8
-#EXTINF:-1 ,湖北卫视
-http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/4000000/mnf.m3u8
-#EXTINF:-1 ,湖北综合频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAHq_q_HfnhAW&secondToken=secondToken%3Aa2QapQI8cf-CtS5y_WA9GvTdotA&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbzh&v3=1
-#EXTINF:-1 ,湖北经视
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAJ1yYE3qnhAW&secondToken=secondToken%3AA7lsvtUBVpcbYURJHox3syiuB60&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbjs&v3=1
-#EXTINF:-1 ,湖北公共新闻频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAPu1hITvnhAW&secondToken=secondToken%3AnwaCf9np0VC50JpvhFr4q8xXmLA&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbgg&v3=1
-#EXTINF:-1 ,湖北影视频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAABELP171nhAW&secondToken=secondToken%3APwivFwzsrFJvIyx9qkq5F2WoegU&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbys&v3=1
-#EXTINF:-1 ,湖北生活频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAOaTWdoFnxAW&secondToken=secondToken%3AVYci23HcR0JlWRBwE1N7iR5l5hw&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbsh&v3=1
-#EXTINF:-1 ,湖北教育频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAMpT6U8QnxAW&secondToken=secondToken%3AeqWjyoNYYw-osRs4gHDe5NOSFD0&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbjy&v3=1
-#EXTINF:-1 ,湖北垄上频道
-http://244852066.cloudvdn.com/a.m3u8?domain=live.cjyun.org&player=REoAAK3oy7UanxAW&secondToken=secondToken%3AZE0ZNkklv_k73vakWoD_y8zgZ0A&streamid=hubeitv%3Ahubeitv%2Fs10008-live-hbls&v3=1
-#EXTINF:-1 ,湖南卫视
-http://ivi.bupt.edu.cn/hls/hunanhd.m3u8
-#EXTINF:-1 ,广东卫视
-http://ivi.bupt.edu.cn/hls/gdhd.m3u8
-#EXTINF:-1 ,广东岭南戏曲
-http://szlive.grtn.cn/lnxq/sd/live.m3u8
-#EXTINF:-1 ,广东现代教育
-http://szlive.grtn.cn/jypd/sd/live.m3u8?_upt=988e11351589920606
-#EXTINF:-1 ,广东房产频道
-http://szlive.grtn.cn/fcpd/sd/live.m3u8?_upt=cd6c9fdc1589920823
-#EXTINF:-1 ,南方卫视上星版
-http://39.134.156.12/PLTV/88888888/224/3221225614/index.m3u8
-#EXTINF:-1 ,深圳卫视
-http://ivi.bupt.edu.cn/hls/szhd.m3u8
-#EXTINF:-1 ,珠海新闻综合
-http://dslive.grtn.cn/zhzh/sd/live.m3u8
-#EXTINF:-1 ,海南卫视
-http://ivi.bupt.edu.cn/hls/lyhd.m3u8
-#EXTINF:-1 ,重庆新闻频道
-http://219.153.252.50/PLTV/88888888/224/3221225531/chunklist.m3u8
-#EXTINF:-1 ,重庆影视频道
-http://219.153.252.50/PLTV/88888888/224/3221225633/chunklist.m3u8
-#EXTINF:-1 ,重庆文体娱乐
-http://219.153.252.50/PLTV/88888888/224/3221225630/chunklist.m3u8
-#EXTINF:-1 ,重庆都市频道
-http://219.153.252.50/PLTV/88888888/224/3221225631/chunklist.m3u8
-#EXTINF:-1 ,重庆汽摩频道
-http://219.153.252.50/PLTV/88888888/224/3221225634/chunklist.m3u8
-#EXTINF:-1 ,重庆时尚频道
-http://219.153.252.50/PLTV/88888888/224/3221225627/chunklist.m3u8
-#EXTINF:-1 ,重庆国际频道
-http://219.153.252.50/PLTV/88888888/224/3221225644/chunklist.m3u8
-#EXTINF:-1 ,重庆手持电视
-http://219.153.252.50/PLTV/88888888/224/3221225624/chunklist.m3u8
-#EXTINF:-1 ,重庆科教频道
-http://219.153.252.50/PLTV/88888888/224/3221225632/chunklist.m3u8
-#EXTINF:-1 ,重庆公共农村
-http://219.153.252.50/PLTV/88888888/224/3221225626/chunklist.m3u8
-#EXTINF:-1 ,重庆移动频道
-http://219.153.252.50/PLTV/88888888/224/3221225491/chunklist.m3u8
-#EXTINF:-1 ,重庆生活资讯
-http://219.153.252.50/PLTV/88888888/224/3221225629/chunklist.m3u8
-#EXTINF:-1 ,四川卫视
-http://ivi.bupt.edu.cn/hls/sctv.m3u8
-#EXTINF:-1 ,四川影视文艺
-http://scgctvshow.sctv.com/hdlive/sctv5/1.m3u8
-#EXTINF:-1 ,四川康巴卫视
-http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8
-#EXTINF:-1 ,四川妇女儿童
-http://scgctvshow.sctv.com/hdlive/sctv7/1.m3u8
-#EXTINF:-1 ,四川公共乡村频道
-http://scgctvshow.sctv.com/hdlive/sctv9/1.m3u8
-#EXTINF:-1 ,四川新闻频道
-http://scgctvshow.sctv.com/hdlive/sctv4/1.m3u8
-#EXTINF:-1 ,四川国际频道
-http://61.58.60.230:9319/live/238.m3u8
-#EXTINF:-1 ,四川经济频道
-http://scgctvshow.sctv.com/hdlive/sctv3/1.m3u8
-#EXTINF:-1 ,四川科教频道
-http://118.123.60.10:8114/LIVES/Fsv_otype=1?FvSeid=629075a573d45aef&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=67&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=index.m3u8&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,四川文化旅游频道
-http://scgctvshow.sctv.com/hdlive/sctv2/1.m3u8
-#EXTINF:-1 ,云南卫视
-http://ivi.bupt.edu.cn/hls/yntv.m3u8
-#EXTINF:-1 ,云南影视频道
-http://39.130.215.166:6410/gitv_live/G_YNTV-5-HD/G_YNTV-5-HD.m3u8?
-#EXTINF:-1 ,云南少儿频道
-http://39.130.215.166:6410/gitv_live/G_YNTVSE-HD/G_YNTVSE-HD.m3u8?
-#EXTINF:-1 ,云南精品荟萃频道
-http://www.ynbit.cn:1935/cyds-jphc/livestream/chunklist_w1373042336.m3u8
-#EXTINF:-1 ,美丽云南频道
-http://www.ynbit.cn:1935/cyds-mlyn/livestream/chunklist_w2104169984.m3u8
-#EXTINF:-1 ,云南都市频道
-http://39.130.215.166:6410/gitv_live/G_YNTV-2-HD/G_YNTV-2-HD.m3u8?
-#EXTINF:-1 ,云南娱乐频道
-http://39.130.215.166:6410/gitv_live/G_YNTV-3-HD/G_YNTV-3-HD.m3u8?
-#EXTINF:-1 ,云南澜湄国际频道
-http://39.130.215.166:6410/gitv_live/G_YNTVGJ/G_YNTVGJ.m3u8?
-#EXTINF:-1 ,云南公共频道
-http://39.130.215.166:6410/gitv_live/G_YNTV-6-HD/G_YNTV-6-HD.m3u8?
-#EXTINF:-1 ,云南移动电视
-http://39.130.215.166:6410/gitv_live/G_QICAIGONGJIAO/G_QICAIGONGJIAO.m3u8?
-#EXTINF:-1 ,天元围棋频道
-http://httpdvb.slave.ttcatv.tv:13164/playurl?playtype=live&protocol=hls&accesstoken=R5CA2B7CAU3090C010K77540044IFB84556FPBM3220A5DV1044EZ33519WE22942B42A1&playtoken=ABCDEFGHI&programid=4200000205.m3u8
-#EXTINF:-1 ,黑龙江卫视
-http://ivi.bupt.edu.cn/hls/hljhd.m3u8
-#EXTINF:-1 ,黑龙江新闻法治频道
-http://stream3.hljtv.com/hljxw2/sd/live.m3u8
-#EXTINF:-1 ,黑龙江影视频道
-http://stream3.hljtv.com/hljys2/sd/live.m3u8
-#EXTINF:-1 ,黑龙江文体频道
-http://stream3.hljtv.com/hljwy2/sd/live.m3u8
-#EXTINF:-1 ,黑龙江都市频道
-http://stream3.hljtv.com/hljdd2/sd/live.m3u8
-#EXTINF:-1 ,黑龙江少儿频道
-http://stream3.hljtv.com/hljse2/sd/live.m3u8
-#EXTINF:-1 ,黑龙江公共农业
-http://stream3.hljtv.com/hljgg2/sd/live.m3u8
-#EXTINF:-1 ,吉林都市频道
-http://stream1.jlntv.cn/dspd/sd/live.m3u8?_upt=efbc9d991589955461
-#EXTINF:-1 ,吉林生活频道
-http://stream1.jlntv.cn/shpd/sd/live.m3u8?_upt=f82ac57a1589955541
-#EXTINF:-1 ,吉林影视频道
-http://stream4.jlntv.cn/test4/sd/live.m3u8
-#EXTINF:-1 ,吉林乡村频道
-http://stream1.jlntv.cn/xcpd/sd/live.m3u8?_upt=76025deb1589955607
-#EXTINF:-1 ,吉林公共频道
-http://stream1.jlntv.cn/ggpd/sd/live.m3u8?_upt=3f1551c91589955638
-#EXTINF:-1 ,吉林电视7频道
-http://stream1.jlntv.cn/fzpd/sd/live.m3u8?_upt=63b004571589955657
-#EXTINF:-1 ,吉林篮球频道
-http://stream1.jlntv.cn/lqpd/sd/live.m3u8?_upt=dbed240c1589955681
-#EXTINF:-1 ,东北戏曲频道
-http://stream1.jlntv.cn/dbxq/sd/live.m3u8?_upt=4578b0c11589955711
-#EXTINF:-1 ,吉林市新闻综合频道
-http://stream2.jlntv.cn/jilin1/sd/live.m3u8?_upt=2b6ccfd31589955753
-#EXTINF:-1 ,辽宁卫视
-http://ivi.bupt.edu.cn/hls/lnhd.m3u8
-#EXTINF:-1 ,辽宁影视剧频道
-http://httpdvb.slave.ttcatv.tv:13164/playurl?playtype=live&protocol=hls&accesstoken=R5CA2B7CAU3090C010K77540044IFB84556FPBM3220A5DV1044EZ33519WE22942B42A1&playtoken=ABCDEFGHI&programid=4200000027.m3u8
-#EXTINF:-1 ,辽宁体育频道
-http://httpdvb.slave.ttcatv.tv:13164/playurl?playtype=live&protocol=hls&accesstoken=R5CA2B7CAU3090C010K77540044IFB84556FPBM3220A5DV1044EZ33519WE22942B42A1&playtoken=ABCDEFGHI&programid=4200000028.m3u8
-#EXTINF:-1 ,辽宁文化共享频道
-http://httpdvb.slave.ttcatv.tv:13164/playurl?playtype=live&protocol=hls&accesstoken=R5CA2B7CAU3090C010K77540044IFB84556FPBM3220A5DV1044EZ33519WE22942B42A1&playtoken=ABCDEFGHI&programid=4200000275.m3u8
-#EXTINF:-1 ,兵团卫视
-http://ivi.bupt.edu.cn/hls/bttv.m3u8
-#EXTINF:-1 ,青海卫视
-http://live.geermurmt.com/qhws/sd/live.m3u8
-#EXTINF:-1 ,安多卫视
-http://cbnlive.cbchot.com/live/anduoweishi_l_1.m3u8
-#EXTINF:-1 ,青海都市频道
-http://stream.qhbtv.com/qhds/sd/live.m3u8?_upt=2d10aa181589967622
-#EXTINF:-1 ,青海生活频道
-http://stream.qhbtv.com/qhsh/sd/live.m3u8?_upt=8a5859db1589967671
-#EXTINF:-1 ,陕西卫视
-http://liveplay-kk.rtxapp.com/live/program/live/sxws/1300000/mnf.m3u8
-#EXTINF:-1 ,陕西影视频道
-http://124.47.33.207/PLTV/88888888/224/3221225532/index.m3u8
-#EXTINF:-1 ,甘肃卫视
-http://ivi.bupt.edu.cn/hls/gstv.m3u8
-#EXTINF:-1 ,中国家政频道
-http://httpdvb.slave.ttcatv.tv:13164/playurl?playtype=live&protocol=hls&accesstoken=R5CA2B7CAU3090C010K77540044IFB84556FPBM3220A5DV1044EZ33519WE22942B42A1&playtoken=ABCDEFGHI&programid=4200000215.m3u8
-#EXTINF:-1 ,甘肃文化影视
-http://stream.gstv.com.cn/whys/sd/live.m3u8
-#EXTINF:-1 ,甘肃少儿频道
-http://stream.gstv.com.cn/sepd/sd/live.m3u8
-#EXTINF:-1 ,甘肃公共应急频道
-http://stream.gstv.com.cn/ggpd/sd/live.m3u8
-#EXTINF:-1 ,甘肃移动电视
-http://stream.gstv.com.cn/ydds/sd/live.m3u8
-#EXTINF:-1 ,甘肃品质生活频道
-http://stream.gstv.com.cn/pzsh/sd/live.m3u8
-#EXTINF:-1 ,甘肃都市频道
-http://stream.gstv.com.cn/dspd/sd/live.m3u8
-#EXTINF:-1 ,甘肃经济频道
-http://stream.gstv.com.cn/jjpd/sd/live.m3u8
-#EXTINF:-1 ,宁夏教育台
-http://dxzb.nxeduyun.com/000000001000/nxjiaoyu/index.m3u8
-#EXTINF:-1 ,内蒙古卫视
-http://ivi.bupt.edu.cn/hls/nmtv.m3u8
-#EXTINF:-1 ,内蒙古文体娱乐
-http://cbnlive.cbchot.com/live/neimengwenti_h_1.m3u8
-#EXTINF:-1 ,内蒙古少儿频道
-http://cbnlive.cbchot.com/live/neimengshaoer_h_1.m3u8
-#EXTINF:-1 ,西藏藏语卫视
-http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8
-#EXTINF:-1 ,北京科教
-http://183.207.249.7/PLTV/3/224/3221225574/index.m3u8
-#EXTINF:-1 ,北京财经
-http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8
-#EXTINF:-1 ,北京财经
-http://tv.nknews.org:80/tvhls/stream.m3u8
-#EXTINF:-1 ,北京生活
-http://121.31.30.90:8085/ysten-business/live/beijingstv/yst.m3u8
-#EXTINF:-1 ,北京生活
-http://112.17.40.140/PLTV/88888888/224/3221226829/index.m3u8
-#EXTINF:-1 ,北京青年
-http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8
-#EXTINF:-1 ,北京青年
-http://ls.qingting.fm/live/1266.m3u8
-#EXTINF:-1 ,武汉综合
-http://stream.appwuhan.com/1tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉电视
-http://stream.appwuhan.com/2tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉生活
-http://stream.appwuhan.com/3tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉经济
-http://stream.appwuhan.com/4tzb/sd/live.m3u8
-#EXTINF:-1 ,武汉文体
-http://stream.appwuhan.com/5tzb/sd/live.m3u8
-#EXTINF:-1 ,湖北卫视
-http://live.cjyun.org/hubeitv/s10008-live-hbws.m3u8
-#EXTINF:-1 ,湖北综合
-http://live.cjyun.org/hubeitv/s10008-live-hbzh.m3u8
-#EXTINF:-1 ,湖北经视
-http://live.cjyun.org/hubeitv/s10008-live-hbjs.m3u8
-#EXTINF:-1 ,湖北影视
-http://live.cjyun.org/hubeitv/s10008-live-hbys.m3u8
-#EXTINF:-1 ,湖北生活
-http://live.cjyun.org/hubeitv/s10008-live-hbsh.m3u8
-#EXTINF:-1 ,公共新闻
-http://live.cjyun.org/hubeitv/s10008-live-hbgg.m3u8
-#EXTINF:-1 ,垄上频道
-http://live.cjyun.org/hubeitv/s10008-live-hbls.m3u8
-#EXTINF:-1 ,重庆新闻
-http://stream3.xiancity.cn/5/sd/live.m3u8
-#EXTINF:-1 ,浙江少儿
-http://live.wifizs.cn/ggsh/sd/live.m3u8
-#EXTINF:-1 ,浙江少儿
-http://live02.jxtvcn.com.cn/live-jxtvcn/jxtv03.m3u8
-#EXTINF:-1 ,河北少儿
-http://live.wifizs.cn/qdly/sd/live.m3u8
-#EXTINF:-1 ,河北经济
-http://121.31.30.90:8085/ysten-business/live/hebeistv/1.m3u8
-#EXTINF:-1 ,河北经济
-http://121.31.30.90:8085/ysten-business/live/hebeistv/yst.m3u8
-#EXTINF:-1 ,河北经济
-http://ls.qingting.fm/live/4546579.m3u8
-#EXTINF:-1 ,河北都市
-http://hbpx.chinashadt.com:2036/live/px4.stream/playlist.m3u8
-#EXTINF:-1 ,河北影视
-http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream/playlist.m3u8
-#EXTINF:-1 ,河北影视
-http://hbzx.chinashadt.com:2036/zhibo/stream:hbnm.stream_360p/playlist.m3u8
-#EXTINF:-1 ,河北影视
-http://jsby.chinashadt.com:2035/live/by1.stream/playlist.m3u8
-#EXTINF:-1 ,河北公共
-http://121.31.30.90:8085/ysten-business/live/jiangxistv/1.m3u8
-#EXTINF:-1 ,河北公共
-http://ls.qingting.fm/live/91019.m3u8
-#EXTINF:-1 ,河北公共
-http://xiaogan.live.cjyun.org/video/s10139-shpd/index.m3u8
-#EXTINF:-1 ,河北农民
-http://223.110.245.170/PLTV/3/224/3221225536/index.m3u8
-#EXTINF:-1 ,河北农民
-http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/jiangxistv/1.m3u8
-#EXTINF:-1 ,河北农民
-http://223.110.245.170/ott.js.chinamobile.com/PLTV/3/224/3221225536/index.m3u8
-#EXTINF:-1 ,河北农民
-http://zhjz.chinashadt.com:2036/live/1.stream/chunklist.m3u8
-#EXTINF:-1 ,河北农民
-http://xiaogan.live.cjyun.org/video/s10139-xg/index.m3u8
-#EXTINF:-1 ,浙江民生
-http://117.148.187.37/PLTV/88888888/224/3221226136/index.m3u8
-#EXTINF:-1 ,浙江民生
-http://ls.qingting.fm/live/23891.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227215/index.m3u8
-#EXTINF:-1 ,浙江经济生活
-http://ls.qingting.fm/live/1099.m3u8
-#EXTINF:-1 ,第一财经
-http://live.zohi.tv/video/s10001-sepd-4/index.m3u8
-#EXTINF:-1 ,东方财经
-http://117.169.120.140:8080/live/dongnanstv/.m3u8
-#EXTINF:-1 ,厦门四套
-http://audiolive.rbc.cn:1935/live/fm1039/96K/tzwj_video.m3u8
-#EXTINF:-1 ,泉州综合
-http://125.210.152.18:9090/live/SZWSHD_H265.m3u8
-#EXTINF:-1 ,泉州综合
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=42&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,泉州综合
-http://121.31.30.90:8085/ysten-business/live/hdshenzhenstv/1.m3u8
-#EXTINF:-1 ,泉州综合
-http://118.123.60.12:8114/LIVES/Fsv_otype=1&FvSeid=&Fsv_chan_hls_se_idx=002&Provider_id=&Pcontent_id=index.m3u8
-#EXTINF:-1 ,福州综合
-http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8
-#EXTINF:-1 ,福州综合
-http://stream2.jlntv.cn/baishan1/sd/live.m3u8
-#EXTINF:-1 ,福州综合
-http://ls.qingting.fm/live/1861.m3u8
-#EXTINF:-1 ,福州影视
-http://live.zohi.tv/video/s10001-yspd-2/index.m3u8
-#EXTINF:-1 ,福州影视
-http://gddb.chinashadt.com:1935/live/video2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,福州影视
-http://ls.qingting.fm/live/4911.m3u8
-#EXTINF:-1 ,福州生活
-http://live.zohi.tv/video/s10001-shpd-3/index.m3u8
-#EXTINF:-1 ,福州生活
-http://stream2.jlntv.cn/baicheng1/sd/live.m3u8
-#EXTINF:-1 ,福州生活
-http://ls.qingting.fm/live/1862.m3u8
-#EXTINF:-1 ,福州生活
-http://lb.streaming.sk/fashiontv/stream/playlist.m3u8
-#EXTINF:-1 ,福州少儿
-http://gddb.chinashadt.com:1935/live/video1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,福州少儿
-http://gddb.chinashadt.com:1935/live/video2.stream/playlist.m3u8
-#EXTINF:-1 ,福州少儿
-http://ls.qingting.fm/live/4857.m3u8
-#EXTINF:-1 ,叶县一套
-http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221226093/index.m3u8
-#EXTINF:-1 ,叶县一套
-http://ls.qingting.fm/live/345.m3u8
-#EXTINF:-1 ,叶县二套
-http://audiolive.rbc.cn:1935/live/fm1073/96K/tzwj_video.m3u8
-#EXTINF:-1 ,娄底综合
-http://218.77.102.118:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,娄底综合
-http://125.210.152.18:9090/live/CCTV10HD_H265.m3u8
-#EXTINF:-1 ,娄底综合
-http://121.31.30.90:8085/ysten-business/live/cctv-10/1.m3u8
-#EXTINF:-1 ,娄底公共
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=53&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,娄底公共
-http://121.31.30.90:8085/ysten-business/live/cctv-11/1.m3u8
-#EXTINF:-1 ,娄底公共
-http://ls.qingting.fm/live/1738915.m3u8
-#EXTINF:-1 ,海口一套
-http://hls.hkbtv.cn/hkbtv/0a2dnq6ZoKKknKmL4K2dmqqW7KGgn6uWoqk/playlist.m3u8
-#EXTINF:-1 ,海口二套
-http://hls.hkbtv.cn/hkbtv/0a2dnq6ZoKKknKiL4K2dmqqW7KGgn6uWoqc/playlist.m3u8
-#EXTINF:-1 ,海口三套
-http://hls.hkbtv.cn/hkbtv/0a2dnq6ZoKKknKeL4K2dmqqW7KGgn6uWoqU/playlist.m3u8
-#EXTINF:-1 ,陕西都市
-http://121.31.30.90:8085/ysten-business/live/yangguangstv/yst.m3u8
-#EXTINF:-1 ,陕西都市
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=79&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,陕西都市
-http://117.156.28.119/270000001111/1110000001/index.m3u8
-#EXTINF:-1 ,陕西生活
-http://121.31.30.90:8085/ysten-business/live/yangguangstv/1.m3u8
-#EXTINF:-1 ,陕西公共
-http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_350.m3u8
-#EXTINF:-1 ,陕西公共
-http://ls.qingting.fm/live/1222.m3u8
-#EXTINF:-1 ,西安新闻
-http://stream2.xiancity.cn/xatv1/sd/live.m3u8
-#EXTINF:-1 ,西安新闻
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=20&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,西安新闻
-http://111.12.83.13:6610/000000001000/Yulin/1.m3u8?livemode=1&IASHttpSessionId=SLB20002019031013092037863610
-#EXTINF:-1 ,西安新闻
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=36&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,西安白鸽
-http://stream2.xiancity.cn/xatv2/sd/live.m3u8
-#EXTINF:-1 ,西安白鸽
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=237&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,西安白鸽
-http://ls.qingting.fm/live/2473319.m3u8
-#EXTINF:-1 ,西安资讯
-http://stream2.xiancity.cn/xatv3/sd/live.m3u8
-#EXTINF:-1 ,西安资讯
-http://183.64.181.25:40023/rongchang02.m3u8
-#EXTINF:-1 ,西安影视
-http://stream2.xiancity.cn/xatv4/sd/live.m3u8
-#EXTINF:-1 ,西安影视
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=7&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,西安影视
-http://hbxx.chinashadt.com:3299/live/stream%3Adi8.stream_360p/chunklist.m3u8
-#EXTINF:-1 ,西安影视
-http://125.210.152.18:9090/live/BJWSHD_H265.m3u8
-#EXTINF:-1 ,西安影视
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=30&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,西安影视
-http://121.31.30.90:8085/ysten-business/live/hdbeijingstv/1.m3u8
-#EXTINF:-1 ,西安健康
-http://stream2.xiancity.cn/xatv5/sd/live.m3u8
-#EXTINF:-1 ,西安健康
-http://hbxx.chinashadt.com:3299/live/stream%3Adi7.stream_360p/chunklist.m3u8
-#EXTINF:-1 ,江西新闻HD
-http://live02.jxtvcn.com.cn/live-jxtvcn/jxtv07.m3u8
-#EXTINF:-1 ,蚌埠新闻综合
-http://live.wifizs.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,蚌埠生活频道
-http://stream.wifizs.cn/xwzh/sd/live.m3u8
-#EXTINF:-1 ,池州新闻综合
-http://yiling.live.cjyun.org/video/s10174-TC1T/index.m3u8
-#EXTINF:-1 ,宿州公共频道
-http://live.ahsz.tv/video/s10001-ggpd/index.m3u8
-#EXTINF:-1 ,宿州科教频道
-http://live.ahsz.tv/video/s10001-kxjy/index.m3u8
-#EXTINF:-1 ,阜阳新闻综合
-http://live.zjmc.tv/2/sd/live.m3u8
-#EXTINF:-1 ,阜阳新闻综合
-http://219.153.252.50/PLTV/88888888/224/3221225623/chunklist.m3u8
-#EXTINF:-1 ,阜阳公共频道
-http://live.zjmc.tv/3/sd/live.m3u8
-#EXTINF:-1 ,阜阳公共频道
-http://hblxx.chinashadt.com:2036/live/stream:lx2.stream/playlist.m3u8
-#EXTINF:-1 ,阜阳教育频道
-http://live.zjmc.tv/1/sd/live.m3u8
-#EXTINF:-1 ,阜阳都市频道
-http://35908.hlsplay.aodianyun.com/guangdianyun_35908/tv_channel_327.m3u8
-#EXTINF:-1 ,阜阳都市频道
-http://sdbz.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,亳州新闻频道
-http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8
-#EXTINF:-1 ,亳州农村频道
-http://220.180.110.101:8083/videos/live/39/13/o4ncrHkSp7q09/o4ncrHkSp7q09.m3u8
-#EXTINF:-1 ,芜湖新闻综合
-http://live1.wuhubtv.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,芜湖新闻综合
-http://live.wjyanghu.com/live/CH2.m3u8
-#EXTINF:-1 ,芜湖生活频道
-http://live1.wuhubtv.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,芜湖生活频道
-http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8
-#EXTINF:-1 ,芜湖公共频道
-http://live1.wuhubtv.com/channel3/sd/live.m3u8
-#EXTINF:-1 ,芜湖公共频道
-http://wuxue.live.cjyun.org/video/s10107-wxtv1/index.m3u8
-#EXTINF:-1 ,芜湖教育频道
-http://live1.wuhubtv.com/channel4/sd/live.m3u8
-#EXTINF:-1 ,芜湖教育频道
-http://live.wjyanghu.com/live/CH1.m3u8
-#EXTINF:-1 ,六安新闻综合
-http://live.china-latv.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,六安新闻综合
-http://ls.qingting.fm/live/267.m3u8
-#EXTINF:-1 ,六安公共频道
-http://live.china-latv.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,六安公共频道
-http://ls.qingting.fm/live/1794199.m3u8
-#EXTINF:-1 ,马鞍山新闻综合
-http://live2.asbctv.com/hls-live/livepkgr/_definst_/liveevent/6VD2t6OWb3SFZxUQL6FW0X7ojmndKJS9fdRjpdhgB71.m3u8
-#EXTINF:-1 ,滁州新闻综合
-http://183.167.193.45:1935/live/cztvzh/playlist.m3u8
-#EXTINF:-1 ,滁州新闻综合
-http://223.110.245.165/ott.js.chinamobile.com/PLTV/3/224/3221225854/index.m3u8
-#EXTINF:-1 ,滁州新闻综合
-https://qq.com-v-qq.com/20180805/4250_8e255b8a/index.m3u8
-#EXTINF:-1 ,滁州科教频道
-http://183.167.193.45:1935/live/cztvkj/playlist.m3u8
-#EXTINF:-1 ,滁州科教频道
-http://hbpx.chinashadt.com:2036/live/px5.stream/playlist.m3u8
-#EXTINF:-1 ,滁州科教频道
-https://yun.kubo-zy-youku.com/20180805/sh41ew25/index.m3u8
-#EXTINF:-1 ,滁州公共频道
-http://183.167.193.45:1935/live/cztvgg/playlist.m3u8
-#EXTINF:-1 ,滁州公共频道
-http://223.110.243.173/PLTV/3/224/3221227220/index.m3u8
-#EXTINF:-1 ,宿松新闻综合
-http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8
-#EXTINF:-1 ,东至影视频道
-http://223.247.33.124:1935/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,东至文化资讯
-http://223.247.33.124:1935/live/wenhua/playlist.m3u8
-#EXTINF:-1 ,岳西综合频道
-http://58.243.4.22:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,岳西综合频道
-http://123.146.162.24:8017/Cz7WPb8/800/live.m3u8
-#EXTINF:-1 ,岳西影视频道
-http://58.243.4.22:1935/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,岳西影视频道
-http://123.146.162.24:8017/d4ceB1a/1000/live.m3u8
-#EXTINF:-1 ,岳西图文频道
-http://58.243.4.22:1935/live/tuwen/playlist.m3u8
-#EXTINF:-1 ,岳西图文频道
-http://123.146.162.24:8017/c2F0hmi/1000/live.m3u8
-#EXTINF:-1 ,萧县新闻综合
-http://222.179.155.21:1935/ch0.m3u8
-#EXTINF:-1 ,涡阳新闻综合
-http://220.180.110.101:8083/videos/live/36/57/hwEHU4UVQ1Iv5/hwEHU4UVQ1Iv5.m3u8
-#EXTINF:-1 ,霍山综合频道
-http://ahhs.chinashadt.com:1936/live/stream:hs1.stream/playlist.m3u8
-#EXTINF:-1 ,万州综合频道
-http://wanzhoulive.cbg.cn:8017/iTXwrGs/800/live.m3u8
-#EXTINF:-1 ,万州三峡移民
-http://wanzhoulive.cbg.cn:8017/c2F0hmi/1000/live.m3u8
-#EXTINF:-1 ,万州影视文艺
-http://wanzhoulive.cbg.cn:8017/d4ceB1a/1000/live.m3u8
-#EXTINF:-1 ,万州科教频道
-http://wanzhoulive.cbg.cn:8017/Cz7WPb8/800/live.m3u8
-#EXTINF:-1 ,梁平综合频道
-http://qxlmlive.cbg.cn:1935/app_2/ls_44.stream/playlist.m3u8
-#EXTINF:-1 ,长寿文化旅游
-http://qxlmlive.cbg.cn:1935/app_2/ls_75.stream/playlist.m3u8
-#EXTINF:-1 ,开州综合频道
-http://kaixianlive.cbg.cn:10345/1.m3u8
-#EXTINF:-1 ,开州生活频道
-http://kaixianlive.cbg.cn:10345/5.m3u8
-#EXTINF:-1 ,开州生活频道
-http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/guangxistv/1.m3u8
-#EXTINF:-1 ,綦江综合频道
-http://113.207.29.195:1935/app_2/_definst_/ls_25.stream/playlist.m3u8
-#EXTINF:-1 ,綦江综合频道
-http://218.17.99.211:82/hls/d4encs75.m3u8
-#EXTINF:-1 ,綦江综合频道
-http://stream.zzgd.tv/2/sd/live.m3u8
-#EXTINF:-1 ,江津新闻综合
-http://222.179.155.21:1935/ch1.m3u8
-#EXTINF:-1 ,江津新闻综合
-http://stream.hsqtv.cn/2/sd/live.m3u8
-#EXTINF:-1 ,江津经济生活
-http://jiangjinlive.cbg.cn:1935/ch0.m3u8
-#EXTINF:-1 ,江津经济生活
-http://pili-live-hls.qnlive.appwuhan.com/jianwei/896.m3u8?auth_key=1550149076-1381559855-0-45ab235bdc6abcb4ab75c652ac521df5
-#EXTINF:-1 ,江津文化旅游
-http://222.179.155.21:1935/ch2.m3u8
-#EXTINF:-1 ,江津文化旅游
-http://117.158.206.60:9080/live/lypd.m3u8
-#EXTINF:-1 ,江津文化旅游
-http://hnnz.chinashadt.com:1935/live/1004.stream/playlist.m3u8
-#EXTINF:-1 ,彭水新闻综合
-http://pengshuilive.cbg.cn/pengshui01.m3u8
-#EXTINF:-1 ,江津文化旅游
-http://186.155.200.118:1935/live/MelodyChannel/playlist.m3u8?iptvgratis?chile.m3u8
-#EXTINF:-1 ,忠县综合频道
-http://qxlmlive.cbg.cn:1935/app_2/_definst_/ls_35.stream/playlist.m3u8
-#EXTINF:-1 ,黔江综合频道
-http://hbhh.chinashadt.com:2111/live/hdtv.stream/playlist.m3u8
-#EXTINF:-1 ,黔江生态文化
-http://hbhh.chinashadt.com:2111/live/hhtv.stream/playlist.m3u8
-#EXTINF:-1 ,黔江生态文化
-http://hbhh.chinashadt.com:2111/live/hhtv2.stream/playlist.m3u8
-#EXTINF:-1 ,万盛新闻综合
-http://qxlmlive.cbg.cn:1935/app_2/ls_40.stream/playlist.m3u8
-#EXTINF:-1 ,万盛新闻综合
-http://stream0.tv41.ru/live.m3u8
-#EXTINF:-1 ,福建导视
-http://fjnh.chinashadt.com:2036/live/stream:fjds.stream/playlist.m3u8
-#EXTINF:-1 ,漳州新闻综合
-http://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8
-#EXTINF:-1 ,漳州新闻综合
-http://111.75.179.195:30767/video/live_vide2.m3u8
-#EXTINF:-1 ,三明新闻综合
-http://cdn1.live-tv.od.ua:8081/wave/wave-abr/playlist.m3u8
-#EXTINF:-1 ,三明新闻综合
-http://ls.qingting.fm/live/4885.m3u8
-#EXTINF:-1 ,三明公共频道
-http://live.ugratv.cdnvideo.ru/ugratv/smil:ugrastream1.smil/playlist.m3u8
-#EXTINF:-1 ,三明公共频道
-http://xinl.live.maxtv.cn/live/zb/playlist.m3u8
-#EXTINF:-1 ,新罗电视一套
-http://stream.lyxltv.com/xltv/sd/live.m3u8
-#EXTINF:-1 ,新罗电视二套
-http://stream.lyxltv.com/xinluotv/sd/live.m3u8
-#EXTINF:-1 ,宁化电视一套
-http://fjnh.chinashadt.com:2036/live/stream:nh1.stream/playlist.m3u8
-#EXTINF:-1 ,宁化电视一套
-http://223.110.245.170/ott.js.chinamobile.com/PLTV/3/224/3221227166/index.m3u8
-#EXTINF:-1 ,晋江侨乡
-http://stream.jinjiang.tv/1/sd/live.m3u8
-#EXTINF:-1 ,福安综合
-http://dslive.grtn.cn/czzh/sd/live.m3u8
-#EXTINF:-1 ,甘南藏语频道
-http://121.31.30.90:8085/ysten-business/live/xuandongkaton/1.m3u8
-#EXTINF:-1 ,甘南藏语频道
-http://live.xtgdw.cn:1935/live/xtsh/playlist.m3u8
-#EXTINF:-1 ,敦煌综合频道
-http://live.todaydunhuang.com:1935/live/live100/500K/tzwj_video.m3u8
-#EXTINF:-1 ,天水公共频道
-http://112.17.40.140/PLTV/88888888/224/3221226533/index.m3u8
-#EXTINF:-1 ,电白综合
-http://gddb.chinashadt.com:1935/live/video1.stream/playlist.m3u8
-#EXTINF:-1 ,电白综合
-http://121.31.30.90:8085/ysten-business/live/gansustv/yst.m3u8
-#EXTINF:-1 ,钦州综合频道
-http://219.153.252.50/PLTV/88888888/224/3221225628/chunklist.m3u8
-#EXTINF:-1 ,黔西南综合
-http://live.qxndt.com/channel2/sd/live.m3u8
-#EXTINF:-1 ,黔西南综合
-http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8
-#EXTINF:-1 ,黔西南综合
-http://219.153.252.50/PLTV/88888888/224/3221225638/chunklist.m3u8
-#EXTINF:-1 ,黔西南综合
-http://hongan.live.cjyun.org/video/s10063-HAZH.m3u8
-#EXTINF:-1 ,黔西南公共
-http://live.qxndt.com/channel3/sd/live.m3u8
-#EXTINF:-1 ,黔西南公共
-http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8
-#EXTINF:-1 ,衡水影视娱乐
-http://hls.hsrtv.cn/hls/hstv2.m3u8
-#EXTINF:-1 ,衡水公共频道
-http://hls.hsrtv.cn/hls/hstv3.m3u8
-#EXTINF:-1 ,衡水公共频道
-http://ls.qingting.fm/live/2810.m3u8
-#EXTINF:-1 ,秦皇岛政法
-http://hbjx.chinashadt.com:1935/live/stream:jx2.stream_360p/playlist.m3u8
-#EXTINF:-1 ,秦皇岛影视
-http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,辛集新闻频道
-http://zsxj.chinashadt.com:1935/live/xjxw.stream_360p/playlist.m3u8
-#EXTINF:-1 ,辛集生活频道
-http://zsxj.chinashadt.com:1935/live/xjsh.stream_360p/playlist.m3u8
-#EXTINF:-1 ,涉县新闻综合
-http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8
-#EXTINF:-1 ,枣强综合
-http://hbzq.chinashadt.com:1936/live/zaoqiang5.stream_360p/palylist.m3u8
-#EXTINF:-1 ,枣强综合
-http://tx.hls.huya.com/huyalive/94525224-2460686093-10568566295157014528-2789253848-10057-A-0-1.m3u8
-#EXTINF:-1 ,沙河新闻综合
-http://hbsh.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,沙河新闻综合
-http://lzlive.vojs.cn/2wtSfrS/92/live.m3u8
-#EXTINF:-1 ,赞皇综合
-http://hbzz.chinashadt.com:2036/zhibo/4.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅一套
-http://223.110.245.167/ott.js.chinamobile.com/PLTV/3/224/3221226923/index.m3u8
-#EXTINF:-1 ,黄骅二套
-http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8
-#EXTINF:-1 ,黄骅影视
-http://hbhh.chinashadt.com:2111/live/hhys.stream/playlist.m3u8
-#EXTINF:-1 ,黄骅互动
-http://zigui.live.cjyun.org/video/s10111-ZGTV1.m3u8
-#EXTINF:-1 ,迁安新闻综合
-http://app.qatv.cn:1936/live/stream:xwzh.stream_720p/playlist.m3u8
-#EXTINF:-1 ,迁安生活影视
-http://app.qatv.cn:1937/live/stream:shfw.stream_720p/playlist.m3u8
-#EXTINF:-1 ,迁安快乐3频道
-http://app.qatv.cn:1936/live/stream:kl3pd.stream_720p/playlist.m3u8
-#EXTINF:-1 ,永年民生频道
-http://hbyn.chinashadt.com:1936/live/stream:ynms.stream_360p/playlist.m3u8
-#EXTINF:-1 ,永年健康频道
-http://hbyn.chinashadt.com:1936/live/stream:ynjk.stream_360p/playlist.m3u8
-#EXTINF:-1 ,隆化综合频道
-http://hblh.chinashadt.com:2036/live/stream:lh1.stream/playlist.m3u8
-#EXTINF:-1 ,隆化综合频道
-http://118.122.239.157:1234/hls/hd-live.m3u8
-#EXTINF:-1 ,隆化综合频道
-http://60.30.52.41/live/bhtv2/playlist.m3u8
-#EXTINF:-1 ,隆化影视频道
-http://hblh.chinashadt.com:2036/live/stream:lh2.stream/playlist.m3u8
-#EXTINF:-1 ,隆化影视频道
-http://dslive.grtn.cn/yjzh/sd/live.m3u8
-#EXTINF:-1 ,隆化影视频道
-http://60.30.52.41/live/bhtv1/playlist.m3u8
-#EXTINF:-1 ,沧县电视综合
-http://hebcx.chinashadt.com:2036/live/10001.stream/playlist.m3u8
-#EXTINF:-1 ,沧县电视综合
-http://lzlive.vojs.cn/Hd2hIgM/92/live.m3u8
-#EXTINF:-1 ,沧县电视综合
-http://119.39.242.52:1935/live/zonghe/playlist.m3u8
-#EXTINF:-1 ,霸州新闻频道
-http://hbbz.chinashadt.com:2036/live/stream:bzxw.stream/playlist.m3u8
-#EXTINF:-1 ,霸州新闻频道
-http://rtvcdn.com.au:8082/TV_GG.m3u8
-#EXTINF:-1 ,霸州文化频道
-http://hbbz.chinashadt.com:2036/live/stream:bzwh.stream/playlist.m3u8
-#EXTINF:-1 ,霸州公共频道
-http://hbbz.chinashadt.com:2036/live/stream:bzgg.stream/playlist.m3u8
-#EXTINF:-1 ,霸州少儿频道
-http://hbbz.chinashadt.com:2036/live/stream:bzse.stream/playlist.m3u8
-#EXTINF:-1 ,滦县综合频道
-http://hblxx.chinashadt.com:2036/live/stream:lx1.stream/playlist.m3u8
-#EXTINF:-1 ,滦县综合频道
-http://117.148.187.37/PLTV/88888888/224/3221226162/index.m3u8
-#EXTINF:-1 ,滦县综合频道
-https://qq.com-v-qq.com/20180808/4398_304b83b6/index.m3u8
-#EXTINF:-1 ,滦县综艺频道
-http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227191/index.m3u8
-#EXTINF:-1 ,高碑店一套
-http://34540.hlsplay.aodianyun.com/guangdianyun_34540/tv_channel_206.m3u8
-#EXTINF:-1 ,高碑店一套
-http://tv.jrsncn.com:9001/hls/live/live1/stream.m3u8
-#EXTINF:-1 ,鹿泉一套
-http://hblq.chinashadt.com:2036/live/stream:luquan1.stream/playlist.m3u8
-#EXTINF:-1 ,赵县电视一套
-http://hbzx.chinashadt.com:2036/zhibo/stream:zx1.stream_360p/playlist.m3u8
-#EXTINF:-1 ,赵县电视一套
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226025/index.m3u8
-#EXTINF:-1 ,赵县电视一套
-http://ivi.bupt.edu.cn/hls/xztv.m3u8
-#EXTINF:-1 ,晋州新闻频道
-http://zhjz.chinashadt.com:2036/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,深州综合频道
-http://hbsz.chinashadt.com:2036/live/stream:sztv.stream/playlist.m3u8
-#EXTINF:-1 ,郑州地铁2频道
-http://117.158.206.60:9080/live/live29_tzwj_500k.m3u8
-#EXTINF:-1 ,洛阳综合频道
-http://live1.lytv.com.cn:1935/live/LYTV1-2/playlist.m3u8
-#EXTINF:-1 ,鹤壁综合频道
-http://pili-live-hls.hebitv.com/hebi/hebi.m3u8
-#EXTINF:-1 ,清丰有线频道
-http://hnqf.chinashadt.com:2036/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,清丰有线频道
-http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227453/index.m3u8
-#EXTINF:-1 ,清丰党建频道
-http://hnqf.chinashadt.com:2036/live/4.stream/playlist.m3u8
-#EXTINF:-1 ,荆州垄上
-http://luotian.live.cjyun.org/video/s10013-LTZH/index.m3u8
-#EXTINF:-1 ,襄阳综合
-http://xiangyang.live.cjyun.org/video/s10125-news_hd/index.m3u8
-#EXTINF:-1 ,襄阳综合
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=46&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,襄阳综合
-http://125.210.152.18:9090/live/CCTV8HD_H265.m3u8
-#EXTINF:-1 ,襄阳综合
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=32&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,襄阳综合
-http://121.31.30.90:8085/ysten-business/live/cctv-8/1.m3u8
-#EXTINF:-1 ,襄阳公共
-http://xiangyang.live.cjyun.org/video/s10125-education_hd/index.m3u8
-#EXTINF:-1 ,襄阳公共
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=00&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,襄阳公共
-http://125.210.152.18:9090/live/CCTVJLHD_H265.m3u8
-#EXTINF:-1 ,襄阳公共
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=33&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,恩施综合
-http://enshi.live.cjyun.org/video/s10070-eszh.m3u8
-#EXTINF:-1 ,恩施公共
-http://enshi.live.cjyun.org/video/s10070-esgg.m3u8
-#EXTINF:-1 ,黄冈新闻频道
-http://huanggang.live.cjyun.org/video/s10120-xwzh.m3u8
-#EXTINF:-1 ,黄冈公共频道
-http://huanggang.live.cjyun.org/video/s10120-xwgg.m3u8
-#EXTINF:-1 ,仙桃新闻综合
-http://hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226029/index.m3u8
-#EXTINF:-1 ,仙桃生活文体
-http://m-tvlmedia.public.bcs.ysten.com/ysten-business/live/yunnanstv/1.m3u8
-#EXTINF:-1 ,咸宁综合频道
-http://xianning.live.cjyun.org/video/s10140-XNTV-1/index.m3u8
-#EXTINF:-1 ,利川新闻综合
-http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lczh.m3u8
-#EXTINF:-1 ,利川新闻综合
-http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w439903609_b1228800.m3u8
-#EXTINF:-1 ,利川公共频道
-http://lichuan.live.tempsource.cjyun.org/videotmp/s10093-lcgg.m3u8
-#EXTINF:-1 ,利川公共频道
-http://121.31.30.90:8085/ysten-business/live/neimenggustv/yst.m3u8
-#EXTINF:-1 ,利川公共频道
-http://uni6rtmp.tulix.tv:1935/vbstv/vbsabr.smil/chunklist_w1847269952_b204800.m3u8
-#EXTINF:-1 ,孝昌新闻党建
-http://xiaochang.live.cjyun.org/video/s10128-xcxw/index.m3u8
-#EXTINF:-1 ,孝昌生活频道
-http://xiaochang.live.cjyun.org/video/s10128-xcsh/index.m3u8
-#EXTINF:-1 ,罗田综合
-https://vip888.kuyun99.com/20180824/RgoY6gc7/index.m3u8
-#EXTINF:-1 ,罗田综合
-http://pili-live-hls.140.i2863.com/i2863-140/live_140_236499.m3u8
-#EXTINF:-1 ,罗田旅游
-http://luotian.live.cjyun.org/video/s10013-LTLY/index.m3u8
-#EXTINF:-1 ,罗田综合
-https://vip888.kuyun99.com/20180824/WJB07qKa/index.m3u8
-#EXTINF:-1 ,红安综合
-http://stream.zzgd.tv/1/sd/live.m3u8
-#EXTINF:-1 ,大悟综合
-http://yunshangdawu.live.tempsource.cjyun.org/videotmp/s10129-dwzhpd.m3u8
-#EXTINF:-1 ,大悟综合
-http://121.31.30.90:8085/ysten-business/live/sichuanstv/1.m3u8
-#EXTINF:-1 ,应城新闻综合
-http://yingcheng.live.cjyun.org/video/s10135-YCZH/index.m3u8
-#EXTINF:-1 ,应城新闻综合
-http://stream.dybtv.com/yssh/GQ/live.m3u8
-#EXTINF:-1 ,应城生活频道
-http://yingcheng.live.cjyun.org/video/s10135-YCDJ/index.m3u8
-#EXTINF:-1 ,应城生活频道
-http://stream.dybtv.com/xwzh/GQ/live.m3u8
-#EXTINF:-1 ,秭归新闻综合
-http://111.231.197.215:85/live/spxwzh_600k.m3u8
-#EXTINF:-1 ,大冶一套
-http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC1T.m3u8
-#EXTINF:-1 ,大冶二套
-http://dayeyun.live.tempsource.cjyun.org/videotmp/s10102-TC2T.m3u8
-#EXTINF:-1 ,大冶二套
-http://117.148.187.37/PLTV/88888888/224/3221226461/index.m3u8
-#EXTINF:-1 ,嘉鱼新闻综合
-http://jiayu.live.tempsource.cjyun.org/videotmp/s10131-jyzh.m3u8
-#EXTINF:-1 ,鹤峰综合频道
-http://hefeng.live.tempsource.cjyun.org/videotmp/s10100-hftv.m3u8
-#EXTINF:-1 ,鹤峰综合频道
-http://mobliestream.c3tv.com:554/live/goodtv.sdp/playlist.m3u8
-#EXTINF:-1 ,鹤峰综合频道
-http://klmyyun.chinavas.com/hls/fuhai1.m3u8
-#EXTINF:-1 ,广水新闻频道
-http://guangshui.live.tempsource.cjyun.org/videotmp/s10146-GSXW.m3u8
-#EXTINF:-1 ,云梦综合频道
-http://yunshangyunmeng.live.cjyun.org/video/s10130-ymzh.m3u8
-#EXTINF:-1 ,云梦党建农业
-http://yunshangyunmeng.live.cjyun.org/video/s10130-ymdjny.m3u8
-#EXTINF:-1 ,湖南经视
-http://ls.qingting.fm/live/1207.m3u8
-#EXTINF:-1 ,株洲新闻综合
-http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8
-#EXTINF:-1 ,娄底公共频道
-http://117.169.120.140:8080/live/hdtianjinstv/.m3u8
-#EXTINF:-1 ,宜章新闻综合
-http://hnyz.chinashadt.com:2036/live/stream:tv1.stream/playlist.m3u8
-#EXTINF:-1 ,宜章社会法制
-http://hnyz.chinashadt.com:2036/live/stream:tv2.stream/playlist.m3u8
-#EXTINF:-1 ,邵东综合频道
-http://hnsd.chinashadt.com:2036/live/stream:shaodong.stream/playlist.m3u8
-#EXTINF:-1 ,邵东综合频道
-http://ivi.bupt.edu.cn/hls/lntv.m3u8
-#EXTINF:-1 ,双峰电视一套
-http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_142.m3u8
-#EXTINF:-1 ,南京新闻综合
-http://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京影视
-http://live.nbs.cn/channels/njtv/yspd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京影视
-http://ivi.bupt.edu.cn/hls/btv1hd.m3u8
-#EXTINF:-1 ,南京影视
-http://ls.qingting.fm/live/28138.m3u8
-#EXTINF:-1 ,南京生活
-http://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京生活
-http://live.nbs.cn/channels/njtv/shpd/flv:500k/live
-#EXTINF:-1 ,南京生活
-http://ls.qingting.fm/live/2227017.m3u8
-#EXTINF:-1 ,南京娱乐
-http://live.nbs.cn/channels/njtv/ylpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京娱乐
-http://223.110.243.173/PLTV/3/224/3221227246/index.m3u8
-#EXTINF:-1 ,南京娱乐
-http://ls.qingting.fm/live/62628.m3u8
-#EXTINF:-1 ,南京十八
-http://live.nbs.cn/channels/njtv/sbpd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京十八
-http://ls.qingting.fm/live/28140.m3u8
-#EXTINF:-1 ,南京少儿
-http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8
-#EXTINF:-1 ,南京少儿
-http://live.nbs.cn/channels/njtv/sepd/flv:500k/live
-#EXTINF:-1 ,南京少儿
-http://223.82.250.72/live/hdbeijingstv/1.m3u8
-#EXTINF:-1 ,南京少儿
-http://ls.qingting.fm/live/3701149.m3u8
-#EXTINF:-1 ,无锡生活
-http://live-wx.wifiwx.com/wxtv4/sd/live.m3u8
-#EXTINF:-1 ,张家港新闻综合
-http://3gvod.zjgonline.com.cn:1935/live/xinwenzonghe2/playlist.m3u8
-#EXTINF:-1 ,张家港社会生活
-http://3gvod.zjgonline.com.cn:1935/live/shehuishenghuo2/playlist.m3u8
-#EXTINF:-1 ,江阴新闻综合
-http://w3.wifijiangyin.com:1936/live/xwzh_gq/playlist.m3u8
-#EXTINF:-1 ,江阴新闻综合
-http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221226097/index.m3u8
-#EXTINF:-1 ,江阴民生频道
-http://w3.wifijiangyin.com:1936/live/mspd_gq/playlist.m3u8
-#EXTINF:-1 ,江阴民生频道
-http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221226099/index.m3u8
-#EXTINF:-1 ,宜兴新闻频道
-http://live-dft-hls-yf.jstv.com/live/yixing_xw/online.m3u8
-#EXTINF:-1 ,宜兴新闻频道
-http://121.31.30.90:8085/ysten-business/live/anhuistv/1.m3u8
-#EXTINF:-1 ,新沂生活频道
-http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_295.m3u8
-#EXTINF:-1 ,邳州综合频道
-http://stream.pznews.com/pztv1/sd/live.m3u8
-#EXTINF:-1 ,邳州综艺频道
-http://stream.pznews.com/pztv2/sd/live.m3u8
-#EXTINF:-1 ,句容新闻综合
-http://218.3.92.100:1937/live/jrxwzh/playlist.m3u8
-#EXTINF:-1 ,句容新闻综合
-http://117.148.187.37/PLTV/88888888/224/3221226184/index.m3u8
-#EXTINF:-1 ,句容新闻综合
-http://wcnc-lh.akamaihd.net/i/WCNC_Breaking_1@195112/master.m3u8
-#EXTINF:-1 ,句容生活频道
-http://218.3.92.100:1937/live/shenghuo/playlist.m3u8
-#EXTINF:-1 ,句容生活频道
-http://weather-lh.akamaihd.net/i/twc_1@92006/index_2400_av-b.m3u8
-#EXTINF:-1 ,句容影视频道
-http://218.3.92.100:1937/live/yingshi/playlist.m3u8
-#EXTINF:-1 ,睢宁资讯频道
-http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227311/index.m3u8
-#EXTINF:-1 ,靖江新闻综合
-http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8
-#EXTINF:-1 ,滨海新闻综合
-http://jsbh.chinashadt.com:2036/live/bh11.stream/playlist.m3u8
-#EXTINF:-1 ,滨海新闻综合
-http://223.82.250.72/live/hdhunanstv/1.m3u8
-#EXTINF:-1 ,宝应生活资讯
-http://jsby.chinashadt.com:2035/live/by2.stream/playlist.m3u8
-#EXTINF:-1 ,宝应生活资讯
-http://183.207.249.15/PLTV/3/224/3221225634/index.m3u8
-#EXTINF:-1 ,抚州综合频道
-http://111.75.179.195:30767/video/live_vide.m3u8
-#EXTINF:-1 ,抚州综合频道
-http://video.dztv.tv:1935/live/xwzh_bq/playlist.m3u8
-#EXTINF:-1 ,萍乡新闻综合
-http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv1stream.m3u8
-#EXTINF:-1 ,萍乡教育频道
-http://www.pxitv.com:8099/hls-live/livepkgr/_definst_/pxitvevent/pxtv2stream.m3u8
-#EXTINF:-1 ,德兴新闻综合
-http://218.64.168.174:5011/vod/hls/c01/live.m3u8
-#EXTINF:-1 ,德兴新闻综合
-http://stream2.jlntv.cn/jlyb/sd/live.m3u8
-#EXTINF:-1 ,永新电视一套
-http://hbzq.chinashadt.com:1937/live/1007.stream_360p/playlist.m3u8
-#EXTINF:-1 ,永新电视二套
-http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8
-#EXTINF:-1 ,万载综合频道
-http://jxwz.chinashadt.com:2036/live/tv1.stream/playlist.m3u8
-#EXTINF:-1 ,万载综合频道
-http://live-echotv.cdnvideo.ru/echotv/echotv.sdp/playlist.m3u8
-#EXTINF:-1 ,万载综合频道
-http://ls.qingting.fm/live/273.m3u8
-#EXTINF:-1 ,吉林教育
-http://ls.qingting.fm/live/2131011.m3u8
-#EXTINF:-1 ,长春娱乐
-http://stream.chinactv.com/ctv2/sd/live.m3u8
-#EXTINF:-1 ,长春市民
-http://stream.chinactv.com/ctv3/sd/live.m3u8
-#EXTINF:-1 ,长春市民
-http://hbzz.chinashadt.com:2036/zhibo/4.stream/chunklist.m3u8
-#EXTINF:-1 ,长春市民
-http://hls.dhtv.cn:8080/live/v4_14.m3u8
-#EXTINF:-1 ,长春商业
-http://stream.chinactv.com/ctv4/sd/live.m3u8
-#EXTINF:-1 ,长春新知
-http://stream.chinactv.com/ctv5/sd/live.m3u8
-#EXTINF:-1 ,长春新知
-http://hls.dhtv.cn:8080/live/v2_12.m3u8
-#EXTINF:-1 ,通化新闻
-http://stream2.jlntv.cn/tonghua1/sd/live.m3u8
-#EXTINF:-1 ,通化新闻
-http://183.207.249.9/PLTV/3/224/3221225566/index.m3u8
-#EXTINF:-1 ,通化新闻
-http://ls.qingting.fm/live/60808.m3u8
-#EXTINF:-1 ,吉林市新闻综合
-http://stream2.jlntv.cn/jilin1/sd/live.m3u8
-#EXTINF:-1 ,吉林市新闻综合
-http://ls.qingting.fm/live/334.m3u8
-#EXTINF:-1 ,农安新闻综合
-http://stream2.jlntv.cn/naxw/sd/live.m3u8
-#EXTINF:-1 ,农安新闻综合
-http://ls.qingting.fm/live/1288.m3u8
-#EXTINF:-1 ,鞍山图文频道
-http://live2.asbctv.com:8134/hls-live/livepkgr/_definst_/liveevent/3GtPeVD2t6OWb3SFZxUQL6FW0X7ojmndKJS9fdRjpdhgB71.m3u8
-#EXTINF:-1 ,瓦房店经济生活
-http://live.xtgdw.cn:1935/live/xtxc/playlist.m3u8
-#EXTINF:-1 ,银川生活
-http://stream.ycgbtv.com.cn/ycxw/sd/live.m3u8
-#EXTINF:-1 ,海南州藏语频道
-http://live.hnzzzzzdst.com/channel1/sd/live.m3u8
-#EXTINF:-1 ,海西州综合频道
-http://stream.haixitv.cn/1/sd/live.m3u8
-#EXTINF:-1 ,枣庄公共频道
-http://stream.zzgd.tv/3/sd/live.m3u8
-#EXTINF:-1 ,东营综合频道
-http://117.148.187.37/PLTV/88888888/224/3221226142/index.m3u8
-#EXTINF:-1 ,东营公共频道
-http://121.31.30.90:8085/ysten-business/live/dongfangstv/1.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://video.dztv.tv:1935/live/xwzh_gq/playlist.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://223.110.245.139:80/PLTV/4/224/3221227031/index.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://nlive.zjkgdcs.com:8091/live/zjksjt.m3u8
-#EXTINF:-1 ,德州新闻频道
-http://stream.zjjrtv.com/zjjtv1/hd/live.m3u8
-#EXTINF:-1 ,德州公共频道
-http://video.dztv.tv:1935/live/dzgg_gq/playlist.m3u8
-#EXTINF:-1 ,德州公共频道
-http://117.158.206.60:9080/kaifeng/kftv3.m3u8
-#EXTINF:-1 ,德州公共频道
-http://117.158.206.60:9080/kaifeng/kftv1.m3u8
-#EXTINF:-1 ,德州图文频道
-http://video.dztv.tv:1935/live/dztw_gq/playlist.m3u8
-#EXTINF:-1 ,滨州公共电视剧
-http://stream.bzcm.net/1/sd/live.m3u8
-#EXTINF:-1 ,滨州公共电视剧
-http://121.31.30.90:8085/ysten-business/live/hdhunanstv/1.m3u8
-#EXTINF:-1 ,东昌导视频道
-http://sddc.chinashadt.com:1936/live/gonggong.stream/playlist.m3u8
-#EXTINF:-1 ,新泰综合频道
-http://live.xtgdw.cn:1935/live/xtzh/playlist.m3u8
-#EXTINF:-1 ,新泰综合频道
-http://30539.hlsplay.aodianyun.com/lms_30539/tv_channel_296.m3u8
-#EXTINF:-1 ,新泰影视频道
-http://live.xtgdw.cn:1935/live/xtys/playlist.m3u8
-#EXTINF:-1 ,龙口新闻综合
-http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8
-#EXTINF:-1 ,龙口新闻综合
-http://223.110.245.170/ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8
-#EXTINF:-1 ,龙口生活频道
-http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8
-#EXTINF:-1 ,莒县电视二套
-http://61.162.225.122:8181/live/test2.m3u8
-#EXTINF:-1 ,莒县图文频道
-http://61.162.225.122:8181/live/test3.m3u8
-#EXTINF:-1 ,无棣综合频道
-http://sdwd.chinashadt.com:1935/live/wdzh.stream/playlist.m3u8
-#EXTINF:-1 ,无棣综艺频道
-http://sdwd.chinashadt.com:1935/live/wdzy.stream/playlist.m3u8
-#EXTINF:-1 ,临朐先锋频道
-http://184.154.28.210:1935/canal4/canal4/playlist.m3u8
-#EXTINF:-1 ,青州综合频道
-http://sdqz.chinashadt.com:2036/live/stream:1.stream/playlist.m3u8
-#EXTINF:-1 ,青州综合频道
-http://121.31.30.90:8085/ysten-business/live/shanxi1stv/yst.m3u8
-#EXTINF:-1 ,青州文化旅游
-http://sdqz.chinashadt.com:2036/live/stream:3.stream/playlist.m3u8
-#EXTINF:-1 ,山西科教
-http://sxxx.chinashadt.com:2037/live/4.stream/playlist.m3u8
-#EXTINF:-1 ,临汾综合频道
-http://sxxx.chinashadt.com:2037/live/1.stream/playlist.m3u8
-#EXTINF:-1 ,晋中公共频道
-http://aod.xjbs.com.cn:1935/live/my/32K/tzwj_video.m3u8
-#EXTINF:-1 ,晋中公共频道
-http://218.3.92.100:1937/live/yingshi/chunklist_w365370764.m3u8
-#EXTINF:-1 ,隰县新闻综合
-http://sxxx.chinashadt.com:2037/live/2.stream/playlist.m3u8
-#EXTINF:-1 ,交城电视台
-http://sxjc.chinashadt.com:2036/live/stream:jctv.stream/playlist.m3u8
-#EXTINF:-1 ,西山电视台
-http://218.26.97.12:5021/live_hls/1/c01.m3u8
-#EXTINF:-1 ,遂宁新闻综合
-http://snlive.scsntv.com:8091/live/xwzh.m3u8
-#EXTINF:-1 ,巴中综合频道
-http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8
-#EXTINF:-1 ,巴中综合频道
-http://ocj2.kksmg.com/ocj1/ocj1.m3u8
-#EXTINF:-1 ,巴中公共频道
-http://117.169.120.140:8080/live/hdshandongstv/.m3u8
-#EXTINF:-1 ,巴中公共频道
-http://223.82.250.72/live/hddongfangstv/1.m3u8
-#EXTINF:-1 ,阿坝综合频道
-http://35848.hlsplay.aodianyun.com/guangdianyun_35848/tv_channel_356.m3u8
-#EXTINF:-1 ,凤凰中文
-https://www.fanmingming.cn/hls/fhzw.m3u8
-#EXTINF:-1 ,凤凰资讯
-https://www.fanmingming.cn/hls/fhzx.m3u8
-#EXTINF:-1 ,凤凰电影
-https://www.fanmingming.cn/hls/fhdy.m3u8
-#EXTINF:-1 ,香港卫视
-http://zhibo.hkstv.tv/livestream/mutfysrq.flv
-#EXTINF:-1 ,星空卫视
-https://www.fanmingming.cn/hls/startv.m3u8
-#EXTINF:-1 ,翡翠明珠
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,翡翠综合
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv&_res_tag_=video
-#EXTINF:-1 ,TVB明珠
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=12
-#EXTINF:-1 ,国家地理
-https://www.fanmingming.cn/hls/natlgeo.m3u8
-#EXTINF:-1 ,佛陀教育
-http://js1.amtb.cn/liveedge/_definst_/livetv/chunklist_w891345404.m3u8
-#EXTINF:-1 ,番薯TV
-http://210.209.3.1/live/C02DD98E-593E-47A8-905C-3B101183A555?fmt=x264_500K_ts&cpid=admin&size
-#EXTINF:-1 ,澳视卫星
-http://61.244.22.4/ch3/ch3.live/playelist.m3u8
-#EXTINF:-1 ,澳视澳门
-http://61.244.22.4/ch1/ch1.live/playelist.m3u8
-#EXTINF:-1 ,澳视葡语
-http://61.244.22.4/ch2/ch2.live/playelist.m3u8
-#EXTINF:-1 ,澳视体育
-http://61.244.22.4/ch4/sport_ch4.live/playlist.m3u8
-#EXTINF:-1 ,澳门有线1
-http://202.175.127.77/live/show/ch1/index.m3u8
-#EXTINF:-1 ,澳门有线2
-http://202.175.127.77/live/show/ch2/index.m3u8
-#EXTINF:-1 ,澳门有线3
-http://202.175.127.77/live/show/ch3/index.m3u8
-#EXTINF:-1 ,憨豆特工
-https://zk.wb699.com/2018/12/22/ffrZIFvvmA4AxSaW/playlist.m3u8
-#EXTINF:-1 ,亚洲电影1
-http://tx.hls.huya.com/huyalive/30765679-2554414680-10971127511022305280-3048991634-10057-A-0-1.m3u8
-#EXTINF:-1 ,亚洲电影2
-http://tx.hls.huya.com/huyalive/30765679-2554414705-10971127618396487680-3048991636-10057-A-0-1.m3u8
-#EXTINF:-1 ,动作灾难
-http://tx2play1.douyucdn.cn/live/252802rbQGaZXUQi_2000p.flv?uuid=
-#EXTINF:-1 ,经典电影
-http://tx2play1.douyucdn.cn/85894rmovieChow_4000p.xs?uuid=
-#EXTINF:-1 ,BEST电影
-http://101.71.255.229:6610/zjhs/2/10052/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,BEST电影
-http://101.71.255.229:6610/zjhs/2/10037/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,BEST电影
-http://101.71.255.229:6610/zjhs/2/10043/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 ,BEST电影
-http://112.17.40.145/PLTV/88888888/224/3221226685/index.m3u8
-#EXTINF:-1 ,家庭影院
-http://61.161.250.44:8114/hls/index.m3u8?FvSeid=1&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=13&Fsv_rate_id=2&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=%26Pcontent_id=%26Fsv_chan_hls_s&Pcontent_id=%26Fsv_chan_hls_se_idx=13&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 ,原声电影
-http://61.161.250.44:8114/hls/index.m3u8?FvSeid=1%26Fsv_ctype=lives%26Fsv_otype=1%26Provider_id=%26Pcontent_id=%26Fsv_chan_hls_se_idx=3
-#EXTINF:-1 ,怀旧电影
-http://61.161.250.44:8114/hls/index.m3u8?FvSeid=1%26Fsv_ctype=lives%26Fsv_otype=1%26Provider_id=%26Pcontent_id=%26Fsv_chan_hls_se_idx=7
-#EXTINF:-1 ,中国电影频道
-http://61.58.60.230:9319/live/225.m3u8
-#EXTINF:-1 ,周口影视
-http://dlhdl-cdn.zhanqi.tv/zqlive/80918_cr4oy.flv
-#EXTINF:-1 ,周口电视剧
-http://dlhdl-cdn.zhanqi.tv/zqlive/194839_XtiBg.flv
-#EXTINF:-1 ,淮阳影视
-http://dlhdl-cdn.zhanqi.tv/zqlive/199301_y2bWG.flv
-#EXTINF:-1 ,热门网大
-http://hls-ott-zhibo.wasu.tv/live/363/index.m3u8
-#EXTINF:-1 ,动漫电影
-http://hls-ott-zhibo.wasu.tv/live/356/index.m3u8
-#EXTINF:-1 ,军事纪实
-http://hls-ott-zhibo.wasu.tv/live/392/index.m3u8
-#EXTINF:-1 ,科教人文
-http://hls-ott-zhibo.wasu.tv/live/391/index.m3u8
-#EXTINF:-1 ,少林问道
-http://hls-ott-zhibo.wasu.tv/live/160/index.m3u8
-#EXTINF:-1 ,学警雄心
-http://hls-ott-zhibo.wasu.tv/live/97/index.m3u8
-#EXTINF:-1 ,成龙电影
-http://tx.hls.huya.com/huyalive/94525224-2460685722-10568564701724147712-2789253838-10057-A-0-1_2000.m3u8
-#EXTINF:-1 ,周星驰电影
-https://tx.hls.huya.com/huyalive/94525224-2460685313-10568562945082523648-2789274524-10057-A-0-1_2000.m3u8
-#EXTINF:-1 ,周润发电影
-http://tx.hls.huya.com/huyalive/94525224-2460685774-10568564925062447104-2789253840-10057-A-0-1_1200.m3u8
-#EXTINF:-1 ,林正英
-https://tx.hls.huya.com/huyalive/94525224-2460686034-10568566041753944064-2789274542-10057-A-0-1_1200.m3u8
-#EXTINF:-1 ,华数美食
-http://hls-ott-zhibo.wasu.tv/live/256/index.m3u8
-#EXTINF:-1 ,地道战
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/312e39c68cc441feb79d1c2d7e16cbbd/850.m3u8
-#EXTINF:-1 ,跟踪追击
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/059096230b4e46c0b5d4929ff98435d0/850.m3u8
-#EXTINF:-1 ,红牡丹
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/921b8081b58b4c2f81fb233b6c8e89ac/850.m3u8
-#EXTINF:-1 ,侦察兵
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/3e4727a0fca34aa8b9774472a4908eaf/850.m3u8
-#EXTINF:-1 ,三毛流浪记
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/b9ce94c233b043bebe30340f09868ed1/850.m3u8
-#EXTINF:-1 ,红色娘子军
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/2ea3b03b3a414303b830f92579243001/850.m3u8
-#EXTINF:-1 ,五朵金花
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/ae639196cf3949368c1b05776bb1d4fa/850.m3u8
-#EXTINF:-1 ,洪湖赤卫队
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/2a58afdece3342eaac927648a2cccabd/850.m3u8
-#EXTINF:-1 ,狼牙山五壮士
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/71c649af833c43a9b61e4f5c913bbd6b/850.m3u8
-#EXTINF:-1 ,海鹰
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/00f88e15028648cab76156c5635effe2/850.m3u8
-#EXTINF:-1 ,海鹰
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/412ae4c1c5fe4150a14197c437391fe2/850.m3u8
-#EXTINF:-1 ,战上海
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/e84b188d1bf7484fb4907d99827cbd45/850.m3u8
-#EXTINF:-1 ,铁道游击队
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/46d8664dacad4dbb9c790256688048dc/850.m3u8
-#EXTINF:-1 ,红孩子
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/bf55b84744d64eeaaedc5ea603855597/850.m3u8
-#EXTINF:-1 ,宝葫芦的秘密
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/866474add7224067877bed430d9380ab/850.m3u8
-#EXTINF:-1 ,董存瑞
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/b657281ba44a4b279f55ec860c12543b/850.m3u8
-#EXTINF:-1 ,地下尖兵
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/188d5706e5774f06850e06e4f181c4bd/850.m3u8
-#EXTINF:-1 ,三毛从军记
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/919a08437d44499b87b7b4903f2b2ae6/850.m3u8
-#EXTINF:-1 ,小兵张嘎
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/d8c05f3ca36d48e6b1997b523e885c5c/850.m3u8
-#EXTINF:-1 ,闪闪的红星
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/b90fcf1a5425479baf3a045282a1f263/850.m3u8
-#EXTINF:-1 ,祖国的花朵
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/ef10a9a9b1534fe38fd4fdfdac1ed493/850.m3u8
-#EXTINF:-1 ,花儿朵朵
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/53a44d8649024b58b69f4468b922b8f0/850.m3u8
-#EXTINF:-1 ,上甘岭
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/c91f7aae9b8b4c578a7d9ecdf94b9dca/850.m3u8
-#EXTINF:-1 ,平原游击队
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/180ef18dec9a4edeb9d2b520d57cfc7f/850.m3u8
-#EXTINF:-1 ,神秘的旅伴
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/ef95b9f13e2c47b882b67ef52139786a/850.m3u8
-#EXTINF:-1 ,前哨
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/1e9c4ffe4002492484c0f50235299759/850.m3u8
-#EXTINF:-1 ,刘三姐
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/680e102dc8614632862cf49a236def6e/850.m3u8
-#EXTINF:-1 ,赛虎
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/34505162ca0848af9e23d33ed4018088/850.m3u8
-#EXTINF:-1 ,犬王
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/08d97be6d296434098297a505e2f05b5/850.m3u8
-#EXTINF:-1 ,特别攻击队
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/c69eed95a2cd4752850bcac109151e37/850.m3u8
-#EXTINF:-1 ,举起手来-追击阿多丸
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/a1093561ad0a4071b68eeae884de01e7/850.m3u8
-#EXTINF:-1 ,鸡毛信
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/41fcf9fefcf247c78e2d64c7af5d6edd/850.m3u8
-#EXTINF:-1 ,马兰花
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/c89d105b9661464bb8c5c5f46977f6c4/850.m3u8
-#EXTINF:-1 ,南征北战
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/9557e1bfd91b4319975dfeffcc44d6b7/850.m3u8
-#EXTINF:-1 ,羊城暗哨
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/215e7a6713884bcab8cc461e245531af/850.m3u8
-#EXTINF:-1 ,冰山上的来客
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/c86d45b176d642738dabf9da7361653b/850.m3u8
-#EXTINF:-1 ,51号兵站
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/fa6557276d644b5ea399956a6bf94e59/850.m3u8
-#EXTINF:-1 ,红日
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/f2ee6e22cd894be1bc8c90b19f47ae2e/850.m3u8
-#EXTINF:-1 ,战火中的青春
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/be0d797e3b494f5fa1cb6d48d29643f3/850.m3u8
-#EXTINF:-1 ,英雄虎胆
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/b7fcd0d4ebb045fe8e653ee71b4ef8fc/850.m3u8
-#EXTINF:-1 ,突破乌江
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/bf8ccfff8bc949a6a2ed6bcda45eb4e2/850.m3u8
-#EXTINF:-1 ,三进山城
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ee157540ff2540ada0250edf3f6a3e0a/850.m3u8
-#EXTINF:-1 ,苦菜花
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ec47d310d888464f8446af5e6e04ded8/850.m3u8
-#EXTINF:-1 ,智取华山
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ef243e3fa20544df9cc24b72ace8efa0/850.m3u8
-#EXTINF:-1 ,渡江侦察记
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/d708e9c64aa34519af5490a793756c38/850.m3u8
-#EXTINF:-1 ,奇袭
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ac8b28fb66104aa7a5e3cd5a10ea986b/850.m3u8
-#EXTINF:-1 ,小花
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/f97fb71bff5947ddaf905cc121c42ee4/850.m3u8
-#EXTINF:-1 ,少林寺
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/8af9ff377238407e927e597a1af47788/850.m3u8
-#EXTINF:-1 ,英雄儿女
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/479d044b7a3d465fa3a5b850d36b219c/850.m3u8
-#EXTINF:-1 ,大气层消失
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/45122e56521f49b68020e3e66bc28ce8/850.m3u8
-#EXTINF:-1 ,霹雳贝贝
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/7accc94d5590415284af5db904e4be5a/850.m3u8
-#EXTINF:-1 ,泉水叮咚
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/8b039f6988a04ca8b086d35031a77204/850.m3u8
-#EXTINF:-1 ,柳堡的故事
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/706b979b8a934aaab677a11c410bb119/850.m3u8
-#EXTINF:-1 ,李双双
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/bac928d747984ed3bd17550879522f89/850.m3u8
-#EXTINF:-1 ,大闹天宫
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/a57c9e5e1696486e97d229a3ddb13749/850.m3u8
-#EXTINF:-1 ,柳毅传书
-http://hls.cntv.kcdnvip.com/asp/hls/2000/0303000a/3/default/2ee71b96a3574889829e17d70b3f3c02/2000.m3u8
-#EXTINF:-1 ,卷席筒
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/8bebd13583e341e1b9d9e1180d36aaaa/850.m3u8
-#EXTINF:-1 ,铡刀下的红梅
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/6f0817bfbedd42c682d9152abd5402a3/850.m3u8
-#EXTINF:-1 ,墙头马上
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/c45285c6b2ac46a58d49c9351b18e369/850.m3u8
-#EXTINF:-1 ,花为媒
-http://hls.cntv.kcdnvip.com/asp/hls/2000/0303000a/3/default/48da40a19746409997717371a80fd9e6/2000.m3u8
-#EXTINF:-1 ,牛郎织女
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/adc6931516694659a7b54176e4b38299/2000.m3u8
-#EXTINF:-1 ,梁山伯与祝英台
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/427eb50cc6844d47bcd35d2fac737a0a/850.m3u8
-#EXTINF:-1 ,铁弓缘
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/e19f3238b0ba4849aa50d6b7f1118ab9/2000.m3u8
-#EXTINF:-1 ,碧玉簪
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/9e90b1a2872b476b8a4f9882f9b63cde/850.m3u8
-#EXTINF:-1 ,野猪林
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/d2ddcbd8cdba4473a541687e683c1aca/850.m3u8
-#EXTINF:-1 ,五女拜寿
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/c38771a355214e97a855c213693a1153/850.m3u8
-#EXTINF:-1 ,杜鹃山01
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/f468a89e0e394a718474523afe37c702/850.m3u8
-#EXTINF:-1 ,杜鹃山02
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/5f76957927c5421e8bd75d0f53c95e4a/850.m3u8
-#EXTINF:-1 ,红灯记
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/84fd88d42e65413a90b9a8b54b685fde/850.m3u8
-#EXTINF:-1 ,奇袭白虎团
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/8d476d0de4a343bd8c77c8a83331fc16/850.m3u8
-#EXTINF:-1 ,智取威虎山
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/b59e746e354d4c0baefaca2f031eec25/850.m3u8
-#EXTINF:-1 ,沙家浜
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/6241c3f25a9a4dda9b05b9ba185500e0/850.m3u8
-#EXTINF:-1 ,红楼梦01
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/f66e935661b44ff6b80a290537d5d204/2000.m3u8
-#EXTINF:-1 ,红楼梦02
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/10470613ead24f5cb435137b5f39ab98/2000.m3u8
-#EXTINF:-1 ,追鱼
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/3515e586d18743be99eb6cc2004cb995/2000.m3u8
-#EXTINF:-1 ,穆桂英大战洪州
-http://hls.cntv.kcdnvip.com/asp/hls/2000/0303000a/3/default/aaa5a373d97a47d1bc95b1418b672b33/2000.m3u8
-#EXTINF:-1 ,秦香莲
-http://hls.cntv.myalicdn.com/asp/hls/2000/0303000a/3/default/f8daefadadef41989225543875268a70/2000.m3u8
-#EXTINF:-1 ,望江亭
-http://hls.cntv.kcdnvip.com/asp/hls/2000/0303000a/3/default/292e3c967f2b469e96878d6047f1cc92/2000.m3u8
-#EXTINF:-1 ,王老虎抢亲
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/3b6ae81ae49f4c72b0c977023565c762/850.m3u8
-#EXTINF:-1 ,女驸马
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ba29b790f8ec435ba94fc072558431f0/850.m3u8
-#EXTINF:-1 ,天仙配
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/1cd056751daf430a943e63e6428c40d7/850.m3u8
-#EXTINF:-1 ,李二嫂改嫁01
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/90846f6758524d78997aad89df8c37e0/850.m3u8
-#EXTINF:-1 ,李二嫂改嫁02
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/47a9c8216d344c2dd45f11949dbbecb5/850.m3u8
-#EXTINF:-1 ,林海雪原
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/5023f1dcc73b4090962ee31e017fb8e3/850.m3u8
-#EXTINF:-1 ,万水千山
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/8804d527d9d94b818b42624730203fa9/850.m3u8
-#EXTINF:-1 ,孙悟空三打白骨精
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/1e34b7a2f93d4efeaf7a583409b270cc/850.m3u8
-#EXTINF:-1 ,巴黎圣母院
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/dd86918aafb042c5b51584ffcf5b0e00/850.m3u8
-#EXTINF:-1 ,罗密欧与朱丽叶
-http://hls.cntv.myalicdn.com/asp/hls/850/0303000a/3/default/95193e30bd454e77bc59a140f4e32ad2/850.m3u8
-#EXTINF:-1 ,魂断蓝桥
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/7fc704c5b2e04e65bab92b3986883ab3/850.m3u8
-#EXTINF:-1 ,茜茜公主
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/ffa8a73877194632b0278898f297d07b/850.m3u8
-#EXTINF:-1 ,出水芙蓉
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/28f9967b04984830b3a1f6fb27561000/850.m3u8
-#EXTINF:-1 ,桂河大桥
-http://hls.cntv.kcdnvip.com/asp/hls/850/0303000a/3/default/b125a3edccb34637b336cb867e8a5d5d/850.m3u8
\ No newline at end of file
diff --git a/extraResources/电视频道_4.m3u b/extraResources/电视频道_4.m3u
deleted file mode 100644
index f5390fe..0000000
--- a/extraResources/电视频道_4.m3u
+++ /dev/null
@@ -1,816 +0,0 @@
-#EXTM3U
-
-#EXTINF:-1 logo="" group-title="" ,CCTV-1
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-1
-http://112.50.243.8/PLTV/88888888/224/3221225922/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-1
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/8380729188125675257/1.m3u8?stbId=005301FF001589101611549359B92C46&channel-id=shvoolive&Contentid=8380729188125675257&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=8380729188125675257&owchid=shvoolive&owsid=9810361579531242552&AuthInfo=2TOfGIahP4HrGWrHbpJXVOhAZZf%2B%2BRvFCOimr7PCGr9K%2B8TGA2jGwhx%2FP%2B9zbDc6lyCFd7nUPkjV5yhX4M591q%2Bjz%2FVPZBSXzMBonFGRPep2MwYhKpmBifYKbDBIkjbE
-#EXTINF:-1 logo="" group-title="" ,CCTV-2
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-2
-http://112.50.243.8/PLTV/88888888/224/3221225923/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-2
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/9059700522149664924/1.m3u8?stbId=005301FF00158910000000212621A0DD&channel-id=shvoolive&Contentid=9059700522149664924&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=9059700522149664924&owchid=shvoolive&owsid=9176631579531299298&AuthInfo=2TOfGIahP4HrGWrHbpJXVOJq5SVvpOdgyIf7tzyuJqdYhL2umVWk4VA%2BiWro6vS%2FGYbJQ4PkF2oGSeOSrHR8kErWftutbDOGxkGeSWuC8HvRlxrsJs3srD2VEDgCtlA%2B
-#EXTINF:-1 logo="" group-title="" ,CCTV-3
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-3/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-3
-http://223.110.241.130:6610/gitv/live1/G_CCTV-3-HQ/.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-3
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/7583927553614607925/1.m3u8?stbId=005301FF001589101611549359B9531C&channel-id=shvoolive&Contentid=7583927553614607925&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=7583927553614607925&owchid=shvoolive&owsid=4975061579531175360&AuthInfo=2TOfGIahP4HrGWrHbpJXVMtGfw%2Bi1RmSk6DRVWhSYHpPQhuPB3gB9HD2kYmj6h2ghYJH%2BZemKqNLOjvtazNyyelvyYAlIu0Li8OHrMDUf9T6xYM6NbVkTDG8Dli2hoZV
-#EXTINF:-1 logo="" group-title="" ,CCTV-4
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226314/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-4
-http://112.50.243.8/PLTV/88888888/224/3221225802/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-4
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000002000031664/1.m3u8?channel-id=ystenlive&Contentid=1000000002000031664&livemode=1&stbId=00000250001B50800001B401420BC069&userToken=&usergroup=&version=1.0&owaccmark=1000000002000031664&owchid=ystenlive&owsid=4493204828580187354&AuthInfo=zmDeINsczUw%2bXOm6icTIplPJYM0PdJZ7nyJeCqAhmgD4h2W12vkSCe%2bw8qoQi5%2fj1BMuqFcEHMRAJlgQD47XRVqqHN3O4Si9Wv7MjAX%2b8AK0eHLMDmPByGK0oSB43DB7
-#EXTINF:-1 logo="" group-title="" ,CCTV-5
-http://223.110.241.130:6610/gitv/live1/G_CCTV-5-HQ/G_CCTV-5-HQ/
-#EXTINF:-1 logo="" group-title="" ,CCTV-5
-http://112.17.40.145/PLTV/88888888/224/3221226687/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-5
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/8134369599538150431/1.m3u8?stbId=005301FF001589101611549359B91F12&channel-id=shvoolive&Contentid=8134369599538150431&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=8134369599538150431&owchid=shvoolive&owsid=9856681579531396965&AuthInfo=2TOfGIahP4HrGWrHbpJXVHgbCHVZZF5UUv019%2FSsh88KJM1EuxjKGjHOptOCA%2B9qy7SUSUSlFcfpzdjGKbaNwXQPpC5RWUW%2BWPXxlyqlAmmp3eZqD0kAJRbC1HQjeP48
-#EXTINF:-1 logo="" group-title="" ,CCTV-5+
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226225/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-5+
-http://117.169.124.46:6410/ysten-businessmobile/live/hdcctv05plus/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-5+
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000020505/1.m3u8?stbId=005301FF001589101611549359B92F26&channel-id=ystenlive&Contentid=1000000001000020505&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000001000020505&owchid=ystenlive&owsid=3007521579531929012&AuthInfo=2TOfGIahP4HrGWrHbpJXVPo6e%2BHF%2BrVo6xQQtyKDSuqu3lLj0NrV6tPDBIsVEpn3e3h8FJNoRfXgk2fJ%2B8A%2BC9FKxw7DogGmhnFazyXoBZJZPx01aV9Q%2Bs%2B%2FVnd4tZOQ
-#EXTINF:-1 logo="" group-title="" ,CCTV-6
-http://223.110.243.139/PLTV/3/224/3221225548/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-6
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-6/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-6
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6705015643145867202/1.m3u8?stbId=005301FF00158910000000212621A501&channel-id=shvoolive&Contentid=6705015643145867202&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=6705015643145867202&owchid=shvoolive&owsid=7641431579531463387&AuthInfo=2TOfGIahP4HrGWrHbpJXVGtyhHJPIcRRegoBYBxkr5gU2nvM3aYRu9pk6g1cfGsxitbm7ri6Y%2BkjLjny72IEdjBnss%2Faslq1wPHTyGHeHFYaAuxUDnXfdynLgAo%2FAhgd
-#EXTINF:-1 logo="" group-title="" ,CCTV-7
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-7
-http://112.50.243.8/PLTV/88888888/224/3221225927/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-7
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/9021776916726275968/1.m3u8?stbId=005303FF00010060000100E400EDD522&channel-id=shvoolive&Contentid=9021776916726275968&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=9021776916726275968&owchid=shvoolive&owsid=1117721579531499433&AuthInfo=dIshjDc3shv8ei%2BWF5V%2F4V6lf0HKCsUdpGR8CeY5ZvwycVHGQkBt0T4Mgr0s8ldsXtd9fDrW5osGZSl1tYFcN4xKXGPanSFGs4GR6kXBOyjKyNYEmAQ7njzvrMpDpEoy
-#EXTINF:-1 logo="" group-title="" ,CCTV-8
-http://117.169.124.36:6610/ysten-businessmobile/live/cctv-8/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-8
-http://223.110.247.161:6610/cntv/live1/HD-2500k-1080P-cctv8/HD-2500k-1080P-cctv8
-#EXTINF:-1 logo="" group-title="" ,CCTV-8
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6718199708332952607/1.m3u8?stbId=005303FF00010060000100E400EDD522&channel-id=shvoolive&Contentid=6718199708332952607&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=6718199708332952607&owchid=shvoolive&owsid=5415971579531545952&AuthInfo=dIshjDc3shv8ei%2BWF5V%2F4V6lf0HKCsUdpGR8CeY5ZvwhPD49%2ByoYvwp35mAdL%2Fiv3IhMa6%2BWOwlWxbCOH9ParUjWZpISKyxZZPoQtekRP1dMl%2BCp9T%2BIEdj1ckDKKfLV
-#EXTINF:-1 logo="" group-title="" ,CCTV-9
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226236/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-9
-http://112.50.243.8/PLTV/88888888/224/3221225820/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-9
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000014583/1.m3u8?stbId=005303FF00010060000100E400EDD522&channel-id=ystenlive&Contentid=1000000001000014583&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000001000014583&owchid=ystenlive&owsid=7167961579531601678&AuthInfo=dIshjDc3shv8ei%2BWF5V%2F4V6lf0HKCsUdpGR8CeY5Zvyu3lLj0NrV6tPDBIsVEpn34sImpRHeOmdxmKUDLs1%2BcZ4JMWbvuFdY7IsuWCFdW392C%2BvFQjyH4LwQq4yRWFvT
-#EXTINF:-1 logo="" group-title="" ,CCTV-10
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-10
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225814/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-10
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5505774374187257095/1.m3u8?stbId=005301FF001589101611549359B928C9&channel-id=shvoolive&Contentid=5505774374187257095&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=5505774374187257095&owchid=shvoolive&owsid=1848841579531638041&AuthInfo=2TOfGIahP4HrGWrHbpJXVO9dhnpYCD6yZADsu%2BE3e1z0TmJ04Et2oauQoqLXutIbfy6yerDX1KNDnX4OGB2ZvZf3QlZMt7Oj%2B5HhHlpl0nNoTgXky6K2iYWb1eX3xCek
-#EXTINF:-1 logo="" group-title="" ,CCTV-11
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226315/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-11
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225815/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-11
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000002000019789/1.m3u8?stbId=005301FF001589101611549359B96031&channel-id=ystenlive&Contentid=1000000002000019789&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000002000019789&owchid=ystenlive&owsid=5070431579531812673&AuthInfo=2TOfGIahP4HrGWrHbpJXVDOD3a2KOxiKxQ3OD0iK1ACjKNizoRlMOkuvsTe1URoeoCCSRcfgLDg%2FiG7BT3%2BNlEIMer5%2BuzAqyByddFhoQVMoMRKerLoSM5qM9Az%2Bea7u
-#EXTINF:-1 logo="" group-title="" ,CCTV-12
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-12
-http://112.50.243.8/PLTV/88888888/224/3221225816/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-12
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6417486185316863297/1.m3u8?stbId=005301FF001589101611549359B92F26&channel-id=shvoolive&Contentid=6417486185316863297&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=6417486185316863297&owchid=shvoolive&owsid=9153671579531878340&AuthInfo=2TOfGIahP4HrGWrHbpJXVPo6e%2BHF%2BrVo6xQQtyKDSurAX3PB%2FnVIr3xix20cl8xPdgGi1rpRM1DYWZnyEDgQSmvEeryqwyIWUPNfICRzKqmuU3YFsCIaBI4jHMacn12g
-#EXTINF:-1 logo="" group-title="" ,CCTV-13
-http://223.110.241.130:6610/gitv/live1/G_CCTV-13-HQ/.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-13
-http://223.110.247.161:6610/gitv/live1/G_CCTV-13-HQ/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-14
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-14
-http://117.148.187.37/PLTV/88888888/224/3221226126/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-14
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5554452538079056392/1.m3u8?stbId=005301FF001589101611549359B92F26&channel-id=shvoolive&Contentid=5554452538079056392&mos=jbjhhzstsl&livemode=1&proto=7&version=1.0&owaccmark=5554452538079056392&owchid=shvoolive&owsid=1386521579531934459&AuthInfo=2TOfGIahP4HrGWrHbpJXVPo6e%2BHF%2BrVo6xQQtyKDSuraKH2KM768ZNQcj3PAdtOdSSlj5RtbM3onnzvUC8Txgj%2BRYROAJoRcjfZ4YOPHclFuVVM2CqA1FqqLFpU5t7y%2B
-#EXTINF:-1 logo="" group-title="" ,CCTV-15
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226333/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-15
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225818/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-15
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000002000008163/1.m3u8?stbId=005301FF00158910000000212621B0EF&channel-id=ystenlive&Contentid=1000000002000008163&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000002000008163&owchid=ystenlive&owsid=8159411579531758075&AuthInfo=2TOfGIahP4HrGWrHbpJXVCfBjPWQNL5VnKaoeN%2FnWIWjKNizoRlMOkuvsTe1URoev67GfI1oIH4w2vVjbaVRzv3Enx1RBixVDhCnZtdnlMixFs9te0%2Bpvr2OpfN5d0VT
-#EXTINF:-1 logo="" group-title="" ,CCTV-17
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-17
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226990/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-17
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000005000056836/1.m3u8?stbId=005301FF001589101611549359B9325E&channel-id=ystenlive&Contentid=1000000005000056836&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000005000056836&owchid=ystenlive&owsid=9164551579532003738&AuthInfo=2TOfGIahP4HrGWrHbpJXVGO0L8hMYc%2BQSE26r5BPa9COQyZOTKfJypXfULnzEX8ov4wHfTVtjr5%2BH1gBPIHFdZVbPTqDjqKmcARryOXhfL7mPOk1Na7QiYpdWHg0hz19
-#EXTINF:-1 logo="" group-title="" ,CCTV-4K
-http://112.17.40.12/PLTV/88888888/224/3221226758/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-4K
-http://112.17.40.140/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-4K
-http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,CCTV-4K
-http://117.148.187.83/PLTV/88888888/224/3221226758/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,纯享4K源码1
-http://112.50.243.8/PLTV/88888888/224/3221226825/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,纯享4K源码2
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn/000000001000/1000000004000011651/index.m3u8?channel-id=ystenlive&Contentid=1000000004000011651&livemode=1&authCode=3a&stbId=8A3603DD004735200000049573C4E39B&version=1.0&owaccmark=1000000004000011651&owchid=ystenlive&owsid=6721581571186720581&AuthInfo=QejU%2ByFkapDLEHjn7Vi7Bsh98cz5RjIeOqbMi0Qqlame2O8Id%2BgCUUdS4cJUD1ieqKIx8wFJ0pPdF5P8MGRzRrjFLuuRCIZ2D2ha%2Fr9iiM%2BAnSOfyc4s5zWrjzUdrEbf
-#EXTINF:-1 logo="" group-title="" ,百事4K频道
-http://112.17.40.145/PLTV/88888888/224/3221226718/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,凤凰资讯
-http://112.17.40.140/PLTV/88888888/224/3221226491/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,凤凰资讯
-http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,凤凰中文
-http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,凤凰中文
-http://117.169.120.138:8080/live/fhchinese/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,北京卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,北京卫视
-http://111.40.205.87/PLTV/88888888/224/3221225728/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,天津卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,天津卫视
-http://112.17.40.140/PLTV/88888888/224/3221226412/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,河北卫视超清1
-http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,河北卫视超清2
-http://223.110.247.161:6610/gitv/live1/G_HEBEI/G_HEBEI
-#EXTINF:-1 logo="" group-title="" ,东方卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226237/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,东方卫视
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000005866/1.m3u8?stbId=005301FF001589101611549359B9656A&channel-id=ystenlive&Contentid=1000000001000005866&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000001000005866&owchid=ystenlive&owsid=6312751579529792174&AuthInfo=2TOfGIahP4HrGWrHbpJXVB51rvh1oS437liFJd26gOOu3lLj0NrV6tPDBIsVEpn3OZnoLrZwa8b70lofXkPptSAmb4xhM2tKBJ0VUyBQsWCEzNrIVXcTeS%2F12UFJevdi
-#EXTINF:-1 logo="" group-title="" ,湖南卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226241/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,湖南卫视
-http://112.17.40.140/PLTV/88888888/224/3221226553/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,浙江卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,浙江卫视
-http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,江苏卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,江苏卫视
-http://112.17.40.140/PLTV/88888888/224/3221226414/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,东南卫视
-http://117.169.124.37:6610/ysten-businessmobile/live/dongnanstv/yst.m3u8
-#EXTINF:-1 logo="" group-title="" ,东南卫视
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000002000009263/1.m3u8?channel-id=ystenlive&Contentid=1000000002000009263&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=bd8bb70bdb2b54bd84b587dffa024f7621vv&usergroup=g21077200000&version=1.0&owaccmark=1000000002000009263&owchid=ystenlive&owsid=1106497909461310172&AuthInfo=yOLXJswzZFfV3FvB8MhHuElKGJKLbU5H0jB3qAhfSE5oj7lZFbEKIj3xJcvQPkjhM1XYZKCRYYY%2ff447%2bzETLijqfFgMTSA9x9T2lf3pyhagZIF%2fdE1lc49i65lODYA%2f
-#EXTINF:-1 logo="" group-title="" ,山东卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226308/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,山东卫视
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000012807/1.m3u8?channel-id=ystenlive&Contentid=1000000001000012807&livemode=1&stbId=005203FF000360100001001A34C0CD33&userToken=bd8bb70bdb2b54bd84b587dffa024f7621vv&usergroup=g21077200000&version=1.0&owaccmark=1000000001000012807&owchid=ystenlive&owsid=1106497909461291586&AuthInfo=yOLXJswzZFfV3FvB8MhHuElKGJKLbU5H0jB3qAhfSE7AORAoVDZDWbFnJ0sXJEaR3cBsIsjm7UHdGO3a4NjD1C4TiYtYt%2by66pvMI%2bkz57DAkgjzetftIzpJRR8RWa0K
-#EXTINF:-1 logo="" group-title="" ,湖北卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226310/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,湖北卫视
-http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,安徽卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226223/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,安徽卫视
-http://223.110.247.161:6610/gitv/live1/G_ANHUI-CQ/G_ANHUI-CQ
-#EXTINF:-1 logo="" group-title="" ,广东卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226238/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,广东卫视
-http://112.17.40.140/PLTV/88888888/224/3221226225/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,深圳卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,深圳卫视
-http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,辽宁卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225947/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,辽宁卫视
-http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,龙江卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,龙江卫视
-http://112.17.40.140/PLTV/88888888/224/3221226555/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,吉林卫视
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=25&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,吉林卫视
-http://223.110.247.161:6610/gitv/live1/G_JILIN/G_JILIN
-#EXTINF:-1 logo="" group-title="" ,江西卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,江西卫视
-http://112.17.40.140/PLTV/88888888/224/3221226557/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,四川卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221227006/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,四川卫视
-http://223.110.247.161:6610/gitv/live1/SCWS/SCWS
-#EXTINF:-1 logo="" group-title="" ,重庆卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225949/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,重庆卫视
-http://ivi.bupt.edu.cn/hls/cqhd.m3u8
-#EXTINF:-1 logo="" group-title="" ,厦门卫视
-http://ott.fj.chinamobile.com/PLTV/88888888/224/3221226781/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,厦门卫视
-http://223.110.247.161:6610/gitv/live1/G_XIAMEN/G_XIAMEN
-#EXTINF:-1 logo="" group-title="" ,河南卫视
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=19&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,河南卫视超清2
-http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,贵州卫视
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=41&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,贵州卫视超清2
-http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,海南卫视超清1
-http://hnhbxww.com/live.php?http://mlive1.91kds.cn/b9/hitv.m3u8?id=lywshd
-#EXTINF:-1 logo="" group-title="" ,海南卫视
-http://112.50.243.8/PLTV/88888888/224/3221225855/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,甘肃卫视超清1
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=142&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,甘肃卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225877/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,青海卫视超清1
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=206&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,青海卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225893/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,云南卫视超清1
-http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,云南卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225902/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,陕西卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225896/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,陕西卫视
-http://223.110.247.161:6610/gitv/live1/G_SHANXI/G_SHANXI
-#EXTINF:-1 logo="" group-title="" ,宁夏卫视超清1
-http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,宁夏卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225892/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,内蒙卫视超清1
-http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,内蒙卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225891/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,西藏卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225900/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,西藏卫视
-http://223.110.247.161:6610/gitv/live1/G_XIZANG/G_XIZANG
-#EXTINF:-1 logo="" group-title="" ,山西卫视
-http://223.110.247.161:6610/gitv/live1/SXWS/SXWS
-#EXTINF:-1 logo="" group-title="" ,山西卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225895/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,广西卫视
-http://112.50.243.8/PLTV/88888888/224/3221225836/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,广西卫视
-http://223.110.247.161:6610/gitv/live1/GXWS/GXWS
-#EXTINF:-1 logo="" group-title="" ,新疆卫视
-http://223.110.247.161:6610/gitv/live1/G_XINJIANG/G_XINJIANG
-#EXTINF:-1 logo="" group-title="" ,新疆卫视
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225901/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,南方卫视高清
-http://223.110.247.161:6610/gitv/live1/G_NANFANG/G_NANFANG
-#EXTINF:-1 logo="" group-title="" ,兵团卫视高清
-http://223.110.247.161:6610/gitv/live1/G_BINGTUAN/G_BINGTUAN
-#EXTINF:-1 logo="" group-title="" ,延边卫视高清
-http://223.110.247.161:6610/gitv/live1/G_YANBIAN/G_YANBIAN
-#EXTINF:-1 logo="" group-title="" ,农林卫视高清
-http://223.110.247.161:6610/gitv/live1/G_NONGLIN/G_NONGLIN
-#EXTINF:-1 logo="" group-title="" ,康巴卫视高清
-http://223.110.247.161:6610/gitv/live1/G_KANGBA/G_KANGBA
-#EXTINF:-1 logo="" group-title="" ,安多卫视高清
-http://223.110.247.161:6610/gitv/live1/G_ANDUO/G_ANDUO
-#EXTINF:-1 logo="" group-title="" ,高清影视1台
-http://112.50.243.8/PLTV/88888888/224/3221226736/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视2台
-http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视3台
-http://112.50.243.8/PLTV/88888888/224/3221226708/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视4台
-http://112.50.243.8/PLTV/88888888/224/3221226712/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视5台
-http://112.50.243.8/PLTV/88888888/224/3221225893/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视6台
-http://112.50.243.8/PLTV/88888888/224/3221226692/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视7台
-http://112.50.243.8/PLTV/88888888/224/3221226754/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视8台
-http://112.17.40.145/PLTV/88888888/224/3221226608/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视9台
-http://112.17.40.145/PLTV/88888888/224/3221226606/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视10台
-http://112.17.40.145/PLTV/88888888/224/3221226360/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清动画11台
-http://112.50.243.8/PLTV/88888888/224/3221226732/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清动画12台
-http://112.50.243.8/PLTV/88888888/224/3221226741/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清动漫13台
-http://112.50.243.8/PLTV/88888888/224/3221226743/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,高清影视14台
-http://ivi.bupt.edu.cn/hls/chchd.m3u8
-#EXTINF:-1 logo="" group-title="" ,东方影视高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5000000010000032212/index.m3u8?channel-id=bestzb&Contentid=5000000010000032212&livemode=1&authCode=3a&stbId=005301FF00158910000000212621B1F2&version=1.0&owaccmark=5000000010000032212&owchid=bestzb&owsid=2093431579530013084&AuthInfo=2TOfGIahP4HrGWrHbpJXVC70y2PVjmhUubUspsIcpqbPt3njBIzWc%2Fam35vTsnvWPWGkzpZH3A16MnnNHKq3GxKdDnIii87ggbdt%2FwooaevY4cuAtO0vMGGwXuHO%2Biok
-#EXTINF:-1 logo="" group-title="" ,纪实人文高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000010606/1.m3u8?stbId=005301FF001589101611549359B92C46&channel-id=ystenlive&Contentid=1000000001000010606&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000001000010606&owchid=ystenlive&owsid=5474771579530255373&AuthInfo=2TOfGIahP4HrGWrHbpJXVOhAZZf%2B%2BRvFCOimr7PCGr%2Bu3lLj0NrV6tPDBIsVEpn3QZdNn969VxaznG4qedKIxPvWqo6nkyvxK0SnJLSEP%2FF4Wxm5gCchMH9VO%2BhWyofF
-#EXTINF:-1 logo="" group-title="" ,上海外语高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5000000010000030951/index.m3u8?channel-id=bestzb&Contentid=5000000010000030951&livemode=1&authCode=3a&stbId=005303FF0002189018212C1875540E0E&version=1.0&owaccmark=5000000010000030951&owchid=bestzb&owsid=5275181579530295306&AuthInfo=%2FcylGCbqLdFJuk2wbal8%2B%2FwyUq8npJ58oVaJUzBhF9PPt3njBIzWc%2Fam35vTsnvW6JhDYuiodydLTeMKHTm0L2zYfQnHdO1Iw0VU34c0CqRBZ788c%2Fr%2FVjoxJ5D0QVcG
-#EXTINF:-1 logo="" group-title="" ,第一财经高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5000000010000027146/index.m3u8?channel-id=bestzb&Contentid=5000000010000027146&livemode=1&authCode=3a&stbId=005301FF00158910000000212621B272&version=1.0&owaccmark=5000000010000027146&owchid=bestzb&owsid=2047321579530436324&AuthInfo=2TOfGIahP4HrGWrHbpJXVGQxu5HMK%2BIheH%2BppAJUFQfPt3njBIzWc%2Fam35vTsnvW%2Bh72VHwN1p1HFLVpAXsbYI0I2J%2FhJvUENkmrKWvJBWHflOM1WROOndOSHiRR8ilK
-#EXTINF:-1 logo="" group-title="" ,冬奥纪实高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/1000000001000001910/1.m3u8?stbId=005301FF001589101611549359B93B82&channel-id=ystenlive&Contentid=1000000001000001910&mos=jbjhhzstsl&livemode=1&version=1.0&owaccmark=1000000001000001910&owchid=ystenlive&owsid=6204131579532167784&AuthInfo=2TOfGIahP4HrGWrHbpJXVB3TJIR2vriLvDYSdNB63hOu3lLj0NrV6tPDBIsVEpn3tQTMvk8FXaCJplQYdE%2FaRS95e%2BAlAk4PMAmwzVuVNoUAyrBQjkJ2X3eTsBSYe8ta
-#EXTINF:-1 logo="" group-title="" ,北京纪实高清
-http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,五星体育高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5000000010000017540/index.m3u8?channel-id=bestzb&Contentid=5000000010000017540&livemode=1&stbId=004003FF0017301364008422F151297C&userToken=22da83031e59d012e61af366ad30871e02vv&usergroup=g02020000000&version=1.0&owaccmark=5000000010000017540&owchid=bestzb&owsid=4493204831455228383&AuthInfo=N%2biD7%2bHgi9LcszGFRGa51uAqiHNpkS5d0%2fEIXqMyy8J6GNpZ%2bE47AWi696WsOzmj7u8gynrDaeemmd3KgHvW7jm8s%2fkPykV1GmMdpMkc7doBK82U9CVAXx34x1%2fYjl4A
-#EXTINF:-1 logo="" group-title="" ,生活时尚高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/8538616372715313491/index.m3u8?channel-id=bestzb&Contentid=8538616372715313491&livemode=1&authCode=3a&stbId=005301FF001589101611549359B95001&version=1.0&owaccmark=8538616372715313491&owchid=bestzb&owsid=9384351579529030195&AuthInfo=2TOfGIahP4HrGWrHbpJXVMf9GKsKSOxo3z9oMCSFNzfvIfeh1IeRuYy1UKStuEqgLEq69vAaIVm8yJ1Bv9Ubfc12nlc%2FSga%2FjQ8%2F3mwUrQxWfqFwePA0JQWqj9IZCH10
-#EXTINF:-1 logo="" group-title="" ,五星体育高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/4612233678249154892/index.m3u8?channel-id=bestzb&Contentid=4612233678249154892&livemode=1&authCode=3a&stbId=005301FF001589101611549359B95001&version=1.0&owaccmark=4612233678249154892&owchid=bestzb&owsid=1779721579529023740&AuthInfo=2TOfGIahP4HrGWrHbpJXVMf9GKsKSOxo3z9oMCSFNzd9hkuYOs2VB84It64D80NJi4eXOKW3GuNNz9Fm%2FKg8xywLT7mM729fPyVIkI9Esx1ZNxN%2F6BsKFZl0vwsL8fqK
-#EXTINF:-1 logo="" group-title="" ,上海都市高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6789517052815334336/index.m3u8?channel-id=bestzb&Contentid=6789517052815334336&livemode=1&authCode=3a&stbId=005301FF001589101611549359B94488&version=1.0&owaccmark=6789517052815334336&owchid=bestzb&owsid=3529791579529328057&AuthInfo=2TOfGIahP4HrGWrHbpJXVG%2BEERpEQIU%2FdtpJfuYgRAZD6434P427oxBuLbFRCJn4JFqerLYeYbaWyhUzdTsyRsJkPPbC14Prjj67uIG3APHUBp7pkUo1m6jlajTP1QwT
-#EXTINF:-1 logo="" group-title="" ,风尚音乐高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5529729098703832176/z.m3u8?authCode=07110409322147352675&stbId=005301FF001589101611549359B92801&Contentid=5529729098703832176&mos=jbjhhzstsl&livemode=1&channel-id=wasusyt&version=1.0&owaccmark=5529729098703832176&owchid=wasusyt&owsid=3246571579530794909&AuthInfo=2TOfGIahP4HrGWrHbpJXVM8tIjUabzvkQw3IFgi64wePjBmkxCliyfsNixolB3vk0fJDbsUHwM4ZMkLD2%2FuFtJVT%2FBKMSil0ujuXkiQNzBbZ5U6pNSIVxD4YjUWtTd0X
-#EXTINF:-1 logo="" group-title="" ,精品剧场高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/8230197131234717902/z.m3u8?authCode=07110409322147352675&stbId=005303FF000218901813C88F26C4CD9A&Contentid=8230197131234717902&mos=jbjhhzstsl&livemode=1&channel-id=wasusyt&version=1.0&owaccmark=8230197131234717902&owchid=wasusyt&owsid=7188071579532237669&AuthInfo=%2FcylGCbqLdFJuk2wbal8%2B0%2FXYYDGLpWdBEstTIR1PqI%2FOctjqHm7uarF9hdI%2FegylabK%2B2Kjwr6YmfYB%2B0U4%2FVMlD9%2BUH6H5BTAiFyR%2BGJWsoX2Ruwovu0ZMFHxX6702
-#EXTINF:-1 logo="" group-title="" ,亚洲影院高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/5841816227539527643/z.m3u8?authCode=07110409322147352675&stbId=005301FF001589101611549359B93B82&Contentid=5841816227539527643&mos=jbjhhzstsl&livemode=1&channel-id=wasusyt&version=1.0&owaccmark=5841816227539527643&owchid=wasusyt&owsid=1431411579532174401&AuthInfo=2TOfGIahP4HrGWrHbpJXVB3TJIR2vriLvDYSdNB63hPyA9qk2%2BTKLoJATlqPnb0MXm7l%2FiHeo2whk7VLomWH7w5GNiHxzOX6JECr7x0TLTmTY895HMYgWz4jiaElB1nN
-#EXTINF:-1 logo="" group-title="" ,上海都市高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6789517052815334336/index.m3u8?channel-id=bestzb&Contentid=6789517052815334336&livemode=1&stbId=004003FF0041848666008422F155939C&userToken=22da83031e59d012e61af366ad30871e02vv&usergroup=g02020000000&version=1.0&owaccmark=6789517052815334336&owchid=bestzb&owsid=4493204831455331826&AuthInfo=zI7Ouajzmvoo0pGb64%2fbgLE2RFvrprmD90MrWZVi%2bL3HPQnDcXoFLI6SzbzVwjU3sNLudmh14A4CtBNHjWANkrrgGz1D3dYfcKudsIt%2bpr%2fjXiUqpuQHmAckVE8okPuA
-#EXTINF:-1 logo="" group-title="" ,上海ICS高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/6032059665143203976/index.m3u8?channel-id=bestzb&Contentid=6032059665143203976&livemode=1&authCode=3a&stbId=8A3603DD004735200000049573C4E39B&version=1.0&owaccmark=6032059665143203976&owchid=bestzb&owsid=8862091567733940095&AuthInfo=QejU%2ByFkapDLEHjn7Vi7Bsh98cz5RjIeOqbMi0QqlalAzdP65EW1KAjwws9eqr8onRppCkq5lhXK46o%2BFK3dV%2BCK3fxe9S11%2B88%2FynrqkhlXX%2BzVbd%2F5J%2FreUEsqODX5
-#EXTINF:-1 logo="" group-title="" ,生活时尚高清
-http://121.18.168.149/cache.ott.ystenlive.itv.cmvideo.cn:80/000000001000/8538616372715313491/index.m3u8?channel-id=bestzb&Contentid=8538616372715313491&livemode=1&authCode=3a&stbId=8A3603DD004735200000049573C4E39B&version=1.0&owaccmark=8538616372715313491&owchid=bestzb&owsid=5457861567734659356&AuthInfo=QejU%2ByFkapDLEHjn7Vi7Bsh98cz5RjIeOqbMi0QqlakS%2FOYtRGR5wcGJDIS9OeTlipH2OO8alDz%2F1TUrW3QAaMFdRScr5Z2333r7naICD73KmBnoU9%2B3A5Ot%2BJeysO4p
-#EXTINF:-1 logo="" group-title="" ,峨眉电影高清
-http://scgctvshow.sctv.com/hdlive/emei/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,欢笑剧场高清
-http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,纪实频道高清
-http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,极速汽车高清
-http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,动漫秀场高清
-http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,黑莓动画高清
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225914/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,黑莓电竞高清
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225931/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,黑莓电影高清
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225927/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,求索纪录
-http://112.17.40.145/PLTV/88888888/224/3221226610/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,求索科学
-http://125.210.152.18:9090/live/QSKX_1200.m3u8
-#EXTINF:-1 logo="" group-title="" ,求索动物
-http://125.210.152.18:9090/live/QSDW_1200.m3u8
-#EXTINF:-1 logo="" group-title="" ,求索生活
-http://125.210.152.18:9090/live/QSSH_1200.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本天気预报
-http://movie.mcas.jp/mcas/wn1_2/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国教育1台
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225905/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国教育2台
-http://cctvalih5ca.v.myalicdn.com/cstv/cetv2_2/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国教育3台
-http://cctvalih5ca.v.myalicdn.com/cstv/cetv3_2/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国教育4台
-http://cctvalih5ca.v.myalicdn.com/cstv/cetv4_2/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,山东教育
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225908/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,奥林匹克高清
-http://ott-live.olympicchannel.com/out/u/OC1_2.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,奥铃匹克高清
-http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,超级电影
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226233/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,超级综艺
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226231/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,超级体育
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226232/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,超级剧集
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225864/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国功夫
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226298/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,金牌综艺
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226296/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,农业致富
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226304/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,潮妈辣婆
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226286/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,炫舞未来
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226248/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,明星大片
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226295/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,自由搏击
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226297/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,海外综合
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226302/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,惊梀悬疑
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226294/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱情喜剧
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226299/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,精品记录
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226293/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,精品体育
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226328/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,精品大剧
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226331/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,古装剧场
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226323/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,军旅剧场
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226324/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,军事评论
-http://111.13.111.167/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226326/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,健康有约
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225919/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,家庭剧场
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225918/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,动作电影
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226288/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱电竞
-http://101.71.255.229:6610/zjhs/2/10110/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱动漫
-http://101.71.255.229:6610/zjhs/2/10107/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱都市
-http://101.71.255.229:6610/zjhs/2/10111/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱江湖
-http://101.71.255.229:6610/zjhs/2/10114/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱解密
-http://101.71.255.229:6610/zjhs/2/10109/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱经典
-http://101.71.255.229:6610/zjhs/2/10106/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱军武
-http://101.71.255.229:6610/zjhs/2/10119/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱科幻
-http://101.71.255.229:6610/zjhs/2/10113/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱历史
-http://101.71.255.229:6610/zjhs/2/10120/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱美食
-http://101.71.255.229:6610/zjhs/2/10108/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱奇谈
-http://101.71.255.229:6610/zjhs/2/10103/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱时尚
-http://101.71.255.229:6610/zjhs/2/10118/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱世界
-http://101.71.255.229:6610/zjhs/2/10121/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱玩具
-http://101.71.255.229:6610/zjhs/2/10117/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱喜剧
-http://101.71.255.229:6610/zjhs/2/10105/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱悬疑
-http://101.71.255.229:6610/zjhs/2/10104/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱幼教
-http://101.71.255.229:6610/zjhs/2/10112/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱院线
-http://101.71.255.229:6610/zjhs/2/10116/index.m3u8?virtualDomain=zjhs.live_hls.zte.com
-#EXTINF:-1 logo="" group-title="" ,爱青春
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230130/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱家庭
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230118/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱探索
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱科学
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230106/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱猎奇
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230097/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱谍战
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱娱乐
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230077/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱旅行
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱怀旧
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230049/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱体育
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱赛车
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,爱浪漫
-http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230005/index.m3u8?fmt=ts2hls
-#EXTINF:-1 logo="" group-title="" ,票房大片
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_heibangdianying_1080p_t10/c16_lb_heibangdianying_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,惊悚午夜
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_jingnawuyechang_1080p_t10/c16_lb_jingnawuyechang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,动画电影
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_donghuadianying_1080p_t10/c16_lb_donghuadianying_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,怀旧剧场
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_huaijiujuchang_1080p_t10/c16_lb_huaijiujuchang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,温情影院
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c15_lb_chenglong_1080p_t10/c15_lb_chenglong_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,周末影院
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_fengxiaogang_1080p_t10/c16_lb_fengxiaogang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,经典重温
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_jingdianjuchang_1080p_t10/c16_lb_jingdianjuchang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,谍战剧场
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_diezhanjuchang_1080p_t10/c16_lb_diezhanjuchang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,军旅剧场
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_junlvjuchang_1080p_t10/c16_lb_junlvjuchang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,青春剧场
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c15_lb_weizhangzhe_1080p_t10/c15_lb_weizhangzhe_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,抗战剧场
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c15_lb_kangzhanjuchang_1080p_t10/c15_lb_kangzhanjuchang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,侦探柯南
-http://jvc.flashapp.cn/baiducdnct.inter.iqiyi.com/tslive/c20_lb_mingzhentankenan_720p_t10/c20_lb_mingzhentankenan_720p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,喜羊灰狼
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c15_lb_xiyangyang_1080p_t10/c15_lb_xiyangyang_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,儿子爸爸
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c16_lb_datouerzi_1080p_t10/c16_lb_datouerzi_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,儿歌大全
-http://101.72.196.41/r/baiducdnct.inter.iqiyi.com/tslive/c15_lb_ergedaquan_1080p_t10/c15_lb_ergedaquan_1080p_t10.m3u8
-#EXTINF:-1 logo="" group-title="" ,北京少儿
-http://ivi.bupt.edu.cn/hls/btv10.m3u8
-#EXTINF:-1 logo="" group-title="" ,动漫电影
-http://112.17.40.140/PLTV/88888888/224/3221226178/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,云南少儿
-http://edge2.yntv.cn/channels/yntv/ynse/flv:sd/live
-#EXTINF:-1 logo="" group-title="" ,重庆少儿
-http://219.153.252.50/PLTV/88888888/224/3221225646/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,嘉佳卡通
-http://112.17.40.140/PLTV/88888888/224/3221226461/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,金鹰卡通
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225906/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,哈哈卡通
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225909/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,优漫卡通
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225910/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,卡酷少儿
-http://111.13.111.242/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225907/1.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导一年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv1.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导二年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv2.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导三年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv3.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导四年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv4.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导五年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv5.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导六年级
-http://live-edu.wasu.tv/live/QiEFuDao-lv6.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导初一
-http://live-edu.wasu.tv/live/QiEFuDao-lv7.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导初二
-http://live-edu.wasu.tv/live/QiEFuDao-lv8.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导初三
-http://live-edu.wasu.tv/live/QiEFuDao-lv9.m3u8
-#EXTINF:-1 logo="" group-title="" ,企鹅辅导高一
-http://live-edu.wasu.tv/live/QiEFuDao-lv10.m3u8
-#EXTINF:-1 logo="" group-title="" ,八大精彩台
-http://hdtv.ub1818.com/ublive/index_1.m3u8
-#EXTINF:-1 logo="" group-title="" ,民视第一台
-http://hdtv.ub1818.com/ublive/index_2.m3u8
-#EXTINF:-1 logo="" group-title="" ,民视台湾台
-http://hdtv.ub1818.com/ublive/index_3.m3u8
-#EXTINF:-1 logo="" group-title="" ,民视HD
-http://hdtv.ub1818.com/ublive/index_4.m3u8
-#EXTINF:-1 logo="" group-title="" ,TvbsHD
-http://hdtv.ub1818.com/ublive/index_5.m3u8
-#EXTINF:-1 logo="" group-title="" ,非凡新闻HD
-http://hdtv.ub1818.com/ublive/index_8.m3u8
-#EXTINF:-1 logo="" group-title="" ,中视新闻HD
-http://hdtv.ub1818.com/ublive/index_9.m3u8
-#EXTINF:-1 logo="" group-title="" ,华视新闻资讯HD
-http://hdtv.ub1818.com/ublive/index_10.m3u8
-#EXTINF:-1 logo="" group-title="" ,FTV综艺
-http://hdtv.ub1818.com/ublive/index_11.m3u8
-#EXTINF:-1 logo="" group-title="" ,八大综合台
-http://hdtv.ub1818.com/ublive/index_12.m3u8
-#EXTINF:-1 logo="" group-title="" ,ELTA娱乐
-http://hdtv.ub1818.com/ublive/index_13.m3u8
-#EXTINF:-1 logo="" group-title="" ,亮社
-http://hdtv.ub1818.com/ublive/index_14.m3u8
-#EXTINF:-1 logo="" group-title="" ,华视CTS
-http://hdtv.ub1818.com/ublive/index_15.m3u8
-#EXTINF:-1 logo="" group-title="" ,公视戏剧
-http://hdtv.ub1818.com/ublive/index_16.m3u8
-#EXTINF:-1 logo="" group-title="" ,动漫
-http://hdtv.ub1818.com/ublive/index_17.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖洋卡通台
-http://hdtv.ub1818.com/ublive/index_18.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天综合台
-http://hdtv.ub1818.com/ublive/index_19.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天日本台
-http://hdtv.ub1818.com/ublive/index_20.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天卡通台
-http://hdtv.ub1818.com/ublive/index_21.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天戏剧台
-http://hdtv.ub1818.com/ublive/index_22.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天电影台
-http://hdtv.ub1818.com/ublive/index_23.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天音乐台
-http://hdtv.ub1818.com/ublive/index_24.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天国际台
-http://hdtv.ub1818.com/ublive/index_25.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天映画
-http://hdtv.ub1818.com/ublive/index_26.m3u8
-#EXTINF:-1 logo="" group-title="" ,台湾采昌
-http://hdtv.ub1818.com/ublive/index_27.m3u8
-#EXTINF:-1 logo="" group-title="" ,台湾影迷电影
-http://hdtv.ub1818.com/ublive/index_28.m3u8
-#EXTINF:-1 logo="" group-title="" ,台湾CNEX
-http://hdtv.ub1818.com/ublive/index_29.m3u8
-#EXTINF:-1 logo="" group-title="" ,台湾AMC电影
-http://hdtv.ub1818.com/ublive/index_30.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天资讯台
-http://hdtv.ub1818.com/ublive/index_31.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖天欢乐台
-http://hdtv.ub1818.com/ublive/index_32.m3u8
-#EXTINF:-1 logo="" group-title="" ,靖洋戏剧台
-http://hdtv.ub1818.com/ublive/index_33.m3u8
-#EXTINF:-1 logo="" group-title="" ,台湾音乐
-http://hdtv.ub1818.com/ublive/index_34.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国娱乐台
-http://hdtv.ub1818.com/ublive/index_35.m3u8
-#EXTINF:-1 logo="" group-title="" ,旅游频道
-http://hdtv.ub1818.com/ublive/index_36.m3u8
-#EXTINF:-1 logo="" group-title="" ,户外频道
-http://hdtv.ub1818.com/ublive/index_37.m3u8
-#EXTINF:-1 logo="" group-title="" ,台视财经HD
-http://hdtv.ub1818.com/ublive/index_38.m3u8
-#EXTINF:-1 logo="" group-title="" ,TRACE体育
-http://hdtv.ub1818.com/ublive/index_39.m3u8
-#EXTINF:-1 logo="" group-title="" ,TVB明珠
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Pcontent_id=&Provider_id=&Fsv_chan_hls_se_idx=12
-#EXTINF:-1 logo="" group-title="" ,香港卫视
-http://zhibo.hkstv.tv/livestream/mutfysrq.flv
-#EXTINF:-1 logo="" group-title="" ,翡翠明珠
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=12&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,翡翠综合
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=188&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv&_res_tag_=video
-#EXTINF:-1 logo="" group-title="" ,耀才财经
-http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,亚旅卫视
-http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,赛马频道
-http://tvbilive11-i.akamaihd.net/hls/live/494672/CH88/CH88-01.m3u8
-#EXTINF:-1 logo="" group-title="" ,東森新聞
-http://104.250.154.42:8080/ZZ_dongsenxinwen/ZZ_dongsenxinwen.m3u8
-#EXTINF:-1 logo="" group-title="" ,東森電影
-http://104.250.154.42:8080/ZZ_dongsendianying/ZZ_dongsendianying.m3u8
-#EXTINF:-1 logo="" group-title="" ,東森洋片
-http://192.154.103.75:8080/ZZ_dongsenyangpian/ZZ_dongsenyangpian.m3u8
-#EXTINF:-1 logo="" group-title="" ,東森洋片
-http://104.250.154.42:8080/ZZ_dongsenyangpian/ZZ_dongsenyangpian.m3u8
-#EXTINF:-1 logo="" group-title="" ,中天新闻
-http://104.250.154.42:8080/ZZ_zhongtiannews/ZZ_zhongtiannews.m3u8
-#EXTINF:-1 logo="" group-title="" ,中天综合
-http://104.250.154.42:8080/ZZ_zhongtianzonghe/ZZ_zhongtianzonghe.m3u8
-#EXTINF:-1 logo="" group-title="" ,中天綜合
-http://192.154.103.75:8080//ZZ_zhongtianzonghe/ZZ_zhongtianzonghe.m3u8
-#EXTINF:-1 logo="" group-title="" ,中天娱乐
-http://192.154.103.75:8080//ZZ_zhongtianyule/ZZ_zhongtianyule.m3u8
-#EXTINF:-1 logo="" group-title="" ,中天娱乐
-http://104.250.154.42:8080/ZZ_zhongtianyule/ZZ_zhongtianyule.m3u8
-#EXTINF:-1 logo="" group-title="" ,中視综合
-http://192.154.103.75:8080//ZZ_zhongshi/ZZ_zhongshi.m3u8
-#EXTINF:-1 logo="" group-title="" ,中视综合
-http://104.250.154.42:8080/ZZ_zhongshi/ZZ_zhongshi.m3u8
-#EXTINF:-1 logo="" group-title="" ,华视综合
-http://104.250.154.42:8080/ZZ_huashi/ZZ_huashi.m3u8
-#EXTINF:-1 logo="" group-title="" ,华视综合
-http://192.154.103.75:8080//ZZ_huashi/ZZ_huashi.m3u8
-#EXTINF:-1 logo="" group-title="" ,年代新聞
-http://192.154.103.75:8080/ZZ_niandaixinwen/ZZ_niandianxinwen.m3u8
-#EXTINF:-1 logo="" group-title="" ,年代新闻
-http://104.250.154.42:8080/ZZ_niandaixinwen/ZZ_niandianxinwen.m3u8
-#EXTINF:-1 logo="" group-title="" ,八大綜合
-http://192.154.103.75:8080//ZZ_zhongtianyazhou/ZZ_zhongtianyazhou.m3u8
-#EXTINF:-1 logo="" group-title="" ,八大综合
-http://104.250.154.42:8080/ZZ_zhongtianyazhou/ZZ_zhongtianyazhou.m3u8
-#EXTINF:-1 logo="" group-title="" ,信吉电视
-http://220.130.241.203:1935/sjtv/livestream_360p/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,人間衛視
-http://54.64.23.79:1935/live/vod/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,唯心電視
-http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8
-#EXTINF:-1 logo="" group-title="" ,卫视卡视
-http://iliketot.dyndns.tv/c8233976dbba4a06a101780907447375.m3u8?&wmsAuthSign=c2VydmVyX3RpbWU9MTAvMjIvMjAxNyAxOjM2OjExIEFNJmhhc2hfdmFsdWU9T1lvZDZ5TjFaWk53M3J4OWZOTWtFUT09JnZhbGlkbWludXRlcz0yJmlkPW1jZ2x5bWFyfDc2MXxpcHR2aGVyb3wxNTA4NjM2MTcxfDIyMy4yMDUuMTIyLjE2Nw
-#EXTINF:-1 logo="" group-title="" ,国家地理
-http://104.250.154.42:8080/ZZ_hbo/ZZ_hbo.m3u8
-#EXTINF:-1 logo="" group-title="" ,百事通台
-http://112.17.40.145/PLTV/88888888/224/3221226596/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,MTV音乐
-http://116.199.5.52:8114/00000000/index.m3u8?&Fsv_ctype=LIVES&Fsv_otype=1&FvSeid=5abd1660af1babb4&Fsv_filetype=1&Fsv_ctype=LIVES&Fsv_cid=0&Fsv_chan_hls_se_idx=202&Fsv_rate_id=0&Fsv_SV_PARAM1=0&Fsv_ShiftEnable=0&Fsv_ShiftTsp=0&Provider_id=&Pcontent_id=&Fsv_CMSID=&Fsv_otype=1
-#EXTINF:-1 logo="" group-title="" ,HBO2台
-http://161.0.157.5/PLTV/88888888/224/3221227026/03.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,动物星球
-http://104.250.154.42:8080/ZZ_dongwuxingqiu/ZZ_dongwuxingqiu.m3u8
-#EXTINF:-1 logo="" group-title="" ,歐美影院
-http://101.71.255.229:6610/zjhs/2/10037/z.m3u8?ZTEUPSTREAM=1&IASHttpSessionId=SLB4328320190321203540013412&m3u8_level=2&ztecid=10037&virtualDomain=zjhs.live_hls.zte.com&ispcode=3&tid=Q894B3E8EEZ3T19UG09L8B03GSWB&ts=1553493266
-#EXTINF:-1 logo="" group-title="" ,亞洲影院
-http://101.71.255.229:6610/zjhs/2/10052/z.m3u8?ZTEUPSTREAM=1&IASHttpSessionId=SLB4328320190321203540013412&m3u8_level=2&ztecid=10052&virtualDomain=zjhs.live_hls.zte.com&ispcode=3&tid=C3V7K4ET1VFDUJY6C1IASRV55G66&ts=1553493153
-#EXTINF:-1 logo="" group-title="" ,华纳电视
-http://104.250.154.42:8080/ZZ_huanadianying/ZZ_huanadianying.m3u8
-#EXTINF:-1 logo="" group-title="" ,福克斯动作
-http://104.250.154.42:8080/ZZ_foxaction/ZZ_foxaction.m3u8
-#EXTINF:-1 logo="" group-title="" ,福克斯动作
-http://192.154.103.75:8080/ZZ_foxaction/ZZ_foxaction.m3u8
-#EXTINF:-1 logo="" group-title="" ,大众影视
-http://39.134.52.206/wh7f454c46tw2522585283_-1736190513/hwottcdn.ln.chinamobile.com/PLTV/88888890/224/3221226752/index.m3u8?icpid=88888890&RTS=1575014274&from=1&ocs=2_39.134.52.206_80&hms_devid=835&vqe=3
-#EXTINF:-1 logo="" group-title="" ,点掌财经
-http://cclive2.aniu.tv/live/anzb.m3u8
-#EXTINF:-1 logo="" group-title="" ,澳门卫视
-http://stream.mastvnet.com/MSTV/SD/live.m3u8
-#EXTINF:-1 logo="" group-title="" ,澳亚卫视
-http://stream.mastvnet.com/MSTV/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本NHK华语
-https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本NHK英语
-https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp/index_1M.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本Japan News 24
-http://www.news24.jp/livestream/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本JapanetChannelDX
-http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_1200.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本QVC
-http://cdn-live1.qvc.jp/iPhone/800/800.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国EBS 第一频道
-http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国EBS 少儿频道
-http://ebsonairios.ebs.co.kr/ebsutablet500k/tablet500k/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国KCTV
-http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国UBC SBS
-http://59.25.202.81:1935/live/UBCstream/chunklist_w1495115977.m3u8
-#EXTINF:-1 logo="" group-title="" ,朝鲜中央台
-http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国KTV 韩国电视
-http://218.38.152.31:1935/klive/klive.stream/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国EBS 儿童频道
-http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国YTN 联合新闻
-http://ytnmmd.mmdlive.lldns.net/ytnmmd/9484b70302db4786886ae40308bf45a1/chunklist_b2592000.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国阿里郎WORLDworld
-http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国阿里郎WORLD
-http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国MBC MAX
-http://63.237.48.3/ios/MBC_MAX/MBC_MAX.m3u8
-#EXTINF:-1 logo="" group-title="" ,KOREA YTN Science
-http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,Luxury World
-http://nano.teleservice.su:8080/hls/luxury.m3u8
-#EXTINF:-1 logo="" group-title="" ,韩国BBS佛教广播
-http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8
-#EXTINF:-1 logo="" group-title="" ,CPAC
-http://bcoveliveios-i.akamaihd.net/hls/live/248519/1242843915001_1/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,CGTN 记录频道
-http://live.cgtn.com/1000d/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,中国环球
-http://live.cgtn.com/1000/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,狗狗宠物
-http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8
-#EXTINF:-1 logo="" group-title="" ,法国时尚
-http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8
-#EXTINF:-1 logo="" group-title="" ,亚洲新闻
-http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8
-#EXTINF:-1 logo="" group-title="" ,朝阳频道
-http://d11h6a6nhl9kj9.cloudfront.net/hls/suriactv/master02.m3u8
-#EXTINF:-1 logo="" group-title="" ,越南人民报
-http://27.118.16.98:1935/live/truyenhinhnhandan720/chunklist_w2006762604.m3u8
-#EXTINF:-1 logo="" group-title="" ,越南人民报
-http://vietcago.net/vstv/thnd.m3u8
-#EXTINF:-1 logo="" group-title="" ,印度音乐电视
-http://104.237.60.234/live/gabruutv.m3u8?dsjtv.m3u8
-#EXTINF:-1 logo="" group-title="" ,法国中国环球
-http://live.cgtn.com/1000f/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,法国第五世界台
-http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8
-#EXTINF:-1 logo="" group-title="" ,阿拉伯中国环球
-http://live.cgtn.com/1000a/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,俄罗斯中国环球
-http://live.cgtn.com/1000r/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,俄罗斯HD时尚频道
-http://95.67.47.115/hls/hdfashion_ua_hi/index.m3u8
-#EXTINF:-1 logo="" group-title="" ,乌克兰M2 音乐频道
-http://live.m2.tv/hls3/stream.m3u8
-#EXTINF:-1 logo="" group-title="" ,西班牙中国环球
-http://livees.cgtn.com/1000e/prog_index.m3u8
-#EXTINF:-1 logo="" group-title="" ,意大利Rai高清
-http://b2everyrai-lh.akamaihd.net/i/raigulp_1@66350/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,意大利Rai 少儿
-http://b2everyrai-lh.akamaihd.net/i/raiyoyo_1@191405/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,意大利Rai 电影
-http://b2everyrai-lh.akamaihd.net/i/raimovie_1@67348/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,意大利意大利电台
-http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8
-#EXTINF:-1 logo="" group-title="" ,意大利V2 音乐频道
-http://de1se01.v2beat.live/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,墨西哥墨西哥电视
-http://bcoveliveios-i.akamaihd.net/hls/live/201661/57828478001/milenio_center_512k@51752.m3u8
-#EXTINF:-1 logo="" group-title="" ,音乐20TV
-http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8
-#EXTINF:-1 logo="" group-title="" ,当红MTV
-http://unilivemtveu-lh.akamaihd.net/i/mtvno_1@346424/index_3500_av-b.m3u8
-#EXTINF:-1 logo="" group-title="" ,WSVI-TV
-http://dcunilive30-lh.akamaihd.net/i/dclive_1@534251/master.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,酷酷频道
-http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/chunklist_w981409619_b1105254.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,红牛电视
-http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8
-#EXTINF:-1 logo="" group-title="" ,NBC电视
-http://161.0.157.51/PLTV/88888888/224/3221227040/index.m3u8?fluxustv.m3u8
-#EXTINF:-1 logo="" group-title="" ,Jewelry电视
-http://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,Darcizzle电视
-http://30a-tv.com/darcizzle.m3u8
-#EXTINF:-1 logo="" group-title="" ,CBS新闻
-http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,美国Deutsche Welle
-http://dwstream4-lh.akamaihd.net/i/dwstream4_live@131329/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,美国360 North
-http://wowzaprod3-i.akamaihd.net/hls/live/252236/2147483647_360north_247/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,美国Fox News Talk Radio
-http://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本NHK台
-http://nhkwtvglobal-i.akamaihd.net/hls/live/263941/nhkwtvglobal/index_600.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本cgntv
-http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本映画
-http://192.240.127.34:1935/live/cs19.stream/playlist.m3u8
-#EXTINF:-1 logo="" group-title="" ,日本Japanet Channel DX
-http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_600.m3u8
diff --git a/package.json b/package.json
deleted file mode 100644
index 5dc2e95..0000000
--- a/package.json
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "name": "zy",
- "version": "2.5.2-1",
- "private": true,
- "scripts": {
- "serve": "vue-cli-service serve",
- "build": "vue-cli-service build",
- "lint": "vue-cli-service lint",
- "dev": "vue-cli-service electron:serve",
- "electron:build": "vue-cli-service electron:build",
- "electron:serve": "vue-cli-service electron:serve",
- "postinstall": "electron-builder install-app-deps",
- "postuninstall": "electron-builder install-app-deps",
- "electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
- "release": "vue-cli-service electron:build -p always",
- "dist": "vue-cli-service electron:build --win --ia32"
- },
- "main": "background.js",
- "dependencies": {
- "axios": "^0.19.2",
- "cheerio": "^1.0.0-rc.3",
- "child_process": "^1.0.2",
- "core-js": "^3.6.5",
- "cors": "^2.8.5",
- "dexie": "^3.0.1",
- "electron-localshortcut": "^3.2.1",
- "element-ui": "^2.13.2",
- "express": "^4.17.1",
- "fast-xml-parser": "^3.17.4",
- "html2canvas": "^1.0.0-rc.5",
- "iptv-playlist-parser": "^0.5.0",
- "m3u": "0.0.2",
- "modern-normalize": "^0.6.0",
- "mousetrap": "^1.6.5",
- "qrcode.vue": "^1.7.0",
- "randomstring": "^1.1.5",
- "vue": "^2.6.11",
- "vue-infinite-loading": "^2.4.5",
- "vue-waterfall-plugin": "^1.0.7",
- "vuedraggable": "^2.24.1",
- "vuex": "^3.4.0",
- "xgplayer": "^2.9.10",
- "xgplayer-hls.js": "^2.2.3"
- },
- "devDependencies": {
- "@vue/cli-plugin-babel": "~4.4.0",
- "@vue/cli-plugin-eslint": "~4.4.0",
- "@vue/cli-plugin-vuex": "~4.4.0",
- "@vue/cli-service": "~4.4.0",
- "@vue/eslint-config-standard": "^5.1.2",
- "babel-eslint": "^10.1.0",
- "babel-plugin-component": "^1.1.1",
- "electron": "^9.3.1",
- "electron-devtools-installer": "^3.1.0",
- "eslint": "^6.7.2",
- "eslint-plugin-import": "^2.20.2",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-promise": "^4.2.1",
- "eslint-plugin-standard": "^4.0.0",
- "eslint-plugin-vue": "^6.2.2",
- "sass": "^1.26.5",
- "sass-loader": "^8.0.2",
- "vue-cli-plugin-electron-builder": "2.0.0-rc.4",
- "vue-template-compiler": "^2.6.11"
- }
-}
diff --git a/public/icon.png b/public/icon.png
deleted file mode 100644
index 7fae0b6..0000000
Binary files a/public/icon.png and /dev/null differ
diff --git a/public/index.html b/public/index.html
deleted file mode 100644
index 4123528..0000000
--- a/public/index.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
- <%= htmlWebpackPlugin.options.title %>
-
-
-
- We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.
-
-
-
-
-
diff --git a/src/App.vue b/src/App.vue
deleted file mode 100644
index fb79975..0000000
--- a/src/App.vue
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/assets/image/dark.png b/src/assets/image/dark.png
deleted file mode 100644
index e509a3d..0000000
Binary files a/src/assets/image/dark.png and /dev/null differ
diff --git a/src/assets/image/green.png b/src/assets/image/green.png
deleted file mode 100644
index 858c92d..0000000
Binary files a/src/assets/image/green.png and /dev/null differ
diff --git a/src/assets/image/light.png b/src/assets/image/light.png
deleted file mode 100644
index 2b4ecb9..0000000
Binary files a/src/assets/image/light.png and /dev/null differ
diff --git a/src/assets/image/logo.png b/src/assets/image/logo.png
deleted file mode 100644
index 6f3646b..0000000
Binary files a/src/assets/image/logo.png and /dev/null differ
diff --git a/src/assets/image/pink.png b/src/assets/image/pink.png
deleted file mode 100644
index 01daed4..0000000
Binary files a/src/assets/image/pink.png and /dev/null differ
diff --git a/src/assets/image/wepay-hunlongyu.png b/src/assets/image/wepay-hunlongyu.png
deleted file mode 100644
index b84ce28..0000000
Binary files a/src/assets/image/wepay-hunlongyu.png and /dev/null differ
diff --git a/src/assets/image/wepay_cuiocean.jpg b/src/assets/image/wepay_cuiocean.jpg
deleted file mode 100644
index 49c5b09..0000000
Binary files a/src/assets/image/wepay_cuiocean.jpg and /dev/null differ
diff --git a/src/assets/scss/style.scss b/src/assets/scss/style.scss
deleted file mode 100644
index 52668c2..0000000
--- a/src/assets/scss/style.scss
+++ /dev/null
@@ -1,236 +0,0 @@
-// svg
-.zy-svg{
- display: flex;
- justify-content: center;
- align-items: center;
- svg{
- width: 24px;
- height: 24px;
- stroke-width: 1;
- stroke-linecap: round;
- stroke-linejoin: round;
- fill: none;
- }
-}
-
-// select
-.zy-select{
- position: relative;
- display: inline-block;
- width: 200px;
- height: 30px;
- cursor: pointer;
- border-radius: 3px;
- user-select: none;
- vertical-align: middle;
- .vs-placeholder{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-left: 25px;
- padding-right: 25px;
- &::after{
- display: inline-block;
- margin-left: .255em;
- vertical-align: .255em;
- content: "";
- border-top: .3em solid;
- border-right: .3em solid transparent;
- border-bottom: 0;
- border-left: .3em solid transparent;
- }
- }
- .vs-input{
- height: 30px;
- input{
- border: none;
- width: 200px;
- height: 30px;
- text-indent: 22px;
- background-color: #ffffff00;
- outline: none;
- }
- }
- .vs-noAfter{
- &::after{
- display: none;
- }
- }
- .vs-options{
- z-index: 2;
- width: 100%;
- overflow-y: auto;
- min-height: 0;
- ul{
- padding: 0;
- margin: 0;
- list-style: none;
- li{
- width: 100%;
- height: 30px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding-left: 25px;
- }
- }
- }
-}
-.zy-input{
- position: relative;
- display: inline-block;
- white-space: nowrap;
- width: 200px;
- height: 30px;
- cursor: pointer;
- input{
- vertical-align: bottom;
- position: relative;
- border: none;
- width: 20px;
- height: 15px;
- background-color: #ffffff00;
- text-indent: 10px;
- }
-}
-.zy-highlighted{
- color: var(--highlight-color);
-}
-// table
-.zy-table{
- display: flex;
- flex-direction: column;
- height: 100%;
- font-size: 15px;
- .tHeader{
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 50px;
- min-height: 50px;
- width: 100%;
- border-bottom: 1px solid;
- .btn{
- user-select: none;
- margin-left: 15px;
- margin-right: 15px;
- cursor: pointer;
- font-size: 14px;
- }
- }
- .tBody{
- flex: 1;
- border-bottom: 1px solid;
- overflow: auto;
- ul{
- list-style: none;
- padding: 0;
- margin: 0;
- li{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- flex-direction: row;
- height: 50px;
- border-bottom: 1px solid;
- cursor: pointer;
- span{
- display: flex;
- font-size: 13px;
- height: 50px;
- line-height: 50px;
- overflow: hidden;
- margin-right: 5px;
- &.name{
- flex: 1;
- min-width: 100px;
- white-space: nowrap;
- margin-left: 10px;
- }
- &.type{
- width: 10%;
- }
- &.time{
- width: 10%;
- }
- &.last{
- width: 10%;
- }
- &.site{
- width: 10%;
- }
- &.note{
- width: 10%;
- }
- &.operate{
- .btn{
- width: 40px;
- }
- }
- }
- }
- }
- }
-}
-// scroll
-.zy-scroll{
- &::-webkit-scrollbar{
- width: 5px;
- height: 1px;
- }
- &::-webkit-scrollbar-thumb {
- border-radius: 10px;
- position: absolute;
- }
- &::-webkit-scrollbar-track {
- border-radius: 10px;
- position: absolute;
- }
-}
-// loading
-.zy-loading{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- .loader {
- font-size: 8px;
- width: 1em;
- height: 1em;
- border-radius: 50%;
- position: relative;
- text-indent: -9999em;
- animation: load4 1.3s infinite linear;
- transform: translateZ(0);
- }
- @keyframes load4 {
- 0%,
- 100% {
- box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
- }
- 12.5% {
- box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
- }
- 25% {
- box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
- }
- 37.5% {
- box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
- }
- 50% {
- box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
- }
- 62.5% {
- box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
- }
- 75% {
- box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
- }
- 87.5% {
- box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
- }
- }
-}
\ No newline at end of file
diff --git a/src/assets/scss/theme.scss b/src/assets/scss/theme.scss
deleted file mode 100644
index e00ce85..0000000
--- a/src/assets/scss/theme.scss
+++ /dev/null
@@ -1,82 +0,0 @@
-:root{
- // general
- --highlight-color: #38dd77;
- // light
- --l-c-0: #823aa0;
- --l-c-1: #823aa011;
- --l-c-2: #823aa022;
- --l-c-3: #823aa033;
- --l-c-5: #823aa055;
- --l-c-8: #823aa088;
- --l-c-9: #823aa099;
- --l-fc-1: #808695;
- --l-fc-2: #332f5c;
- --l-fc-3: #823aa0;
- --l-bgc-1: #ffffff;
- --l-bgc-2: #f2f6f9;
- --l-bsc: 0 1px 3px #8e8da233, 0 1px 2px #8e8da244;
- --l-bsc-hover: 0 14px 28px #8e8da255, 0 10px 10px #8e8da244;
- --l-bsc-2: 0 -4px 23px 0 #8e8da233;
- --l-bsc-scroll: inset 0 0 5px #823aa000;
-
- // dark
- --d-c-0: #38dd77;
- --d-c-1: #38dd7711;
- --d-c-2: #38dd7722;
- --d-c-3: #38dd7733;
- --d-c-5: #38dd7755;
- --d-c-8: #38dd7788;
- --d-c-9: #38dd7799;
- --d-fc-1: #808695;
- --d-fc-2: #acacac;
- --d-fc-3: #38dd77;
- --d-bgc-1: #222222;
- --d-bgc-2: #2f2f2f;
- --d-bsc: 0 1px 3px #38dd7733, 0 1px 2px #38dd7744;
- --d-bsc-hover: 0 14px 28px #38dd7755, 0 10px 10px #38dd7744;
- --d-bsc-2: 0 -4px 23px 0 #38dd7733;
- --d-bsc-scroll: inset 0 0 5px #38dd7705;
-
- // green
- --g-c-0: #EAEF9D;
- --g-c-1: #EAEF9D11;
- --g-c-2: #EAEF9D22;
- --g-c-3: #EAEF9D33;
- --g-c-5: #EAEF9D55;
- --g-c-8: #EAEF9D88;
- --g-c-9: #EAEF9D99;
- --g-fc-1: #ffffff;
- --g-fc-2: #d2dedc;
- --g-fc-3: #C1D95C;
- --g-bgc-1: #4baea0;
- --g-bgc-2: #74b4ac;
- --g-bsc: 0 1px 3px #e1ebe033, 0 1px 2px #e1ebe044;
- --g-bsc-hover: 0 14px 28px #e1ebe055, 0 10px 10px #e1ebe044;
- --g-bsc-2: 0 -4px 23px 0 #e1ebe033;
- --g-bsc-scroll: inset 0 0 5px #e1ebe005;
-
- // pink
- --p-c-0: #f4f7f7;
- --p-c-1: #f4f7f711;
- --p-c-2: #f4f7f722;
- --p-c-3: #f4f7f733;
- --p-c-5: #f4f7f755;
- --p-c-8: #f4f7f788;
- --p-c-9: #f4f7f799;
- --p-fc-1: #ffffff;
- --p-fc-2: #FFFFF3;
- --p-fc-3: #f15c5c;
- --p-bgc-1: #ff8499;
- --p-bgc-2: #fea1b2;
- --p-bsc: 0 1px 3px #ef528533, 0 1px 2px #ef528544;
- --p-bsc-hover: 0 14px 28px #ef528555, 0 10px 10px #ef528544;
- --p-bsc-2: 0 -4px 23px 0 #ef528533;
- --p-bsc-scroll: inset 0 0 5px #ef528505;
-}
-
-@import './theme/light.scss';
-@import './theme/dark.scss';
-@import './theme/green.scss';
-@import './theme/pink.scss';
-
-@import './style.scss';
diff --git a/src/assets/scss/theme/dark.scss b/src/assets/scss/theme/dark.scss
deleted file mode 100644
index 8f424c6..0000000
--- a/src/assets/scss/theme/dark.scss
+++ /dev/null
@@ -1,356 +0,0 @@
-.theme-dark{
- background-color: var(--d-bgc-1);
- .zy-select{
- color: var(--d-fc-1);
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--d-bsc-hover);
- }
- .vs-options{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- ul{
- overflow-y: scroll;
- li{
- &:hover{
- background-color: var(--d-c-1);
- }
- &.active{
- background-color: var(--d-c-3);
- }
- }
- }
- }
- .vs-input{
- color: var(--d-fc-1);
- background-color: var(--d-bgc-1);
- input{
- color: var(--d-fc-1);
- &::-webkit-input-placeholder{
- color: var(--d-fc-1);
- }
- }
- }
- }
- .zy-input{
- color: var(--d-fc-1);
- background-color: var(--d-bgc-1);
- input{
- color: var(--d-fc-1);
- }
- }
- .zy-checkbox{
- color: var(--d-fc-1);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- }
- .zy-table{
- color: var(--d-fc-2);
- .tHeader{
- border-bottom-color: var(--d-c-3);
- .btn{
- &:hover{
- color: var(--d-fc-3)
- }
- }
- }
- .tBody{
- border-bottom-color: var(--d-c-3);
- ul{
- li{
- border-bottom-color: var(--d-c-2);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--d-bsc-hover);
- }
- span{
- &.btn:hover{
- color: var(--d-fc-3)
- }
- }
- }
- }
- }
- }
- .zy-scroll{
- &:hover{
- &::-webkit-scrollbar-thumb {
- box-shadow: var(--d-bsc-scroll);
- background: var(--d-c-5);
- }
- &::-webkit-scrollbar-track {
- box-shadow: var(--d-bsc-scroll);
- background: var(--d-bgc-1);
- }
- }
- }
- .zy-loading{
- .loader{
- color: var(--d-c-3);
- }
- }
- .zy-body{
- background-color: var(--d-bgc-2);
- }
- .aside{
- .zy-svg{
- svg{
- stroke: var(--d-c-0);
- }
- &:hover{
- background-color: var(--d-c-2);
- }
- &.active{
- background-color: var(--d-bgc-2);
- svg{
- stroke: var(--d-c-0);
- stroke-width: 2;
- fill: var(--d-c-2);
- }
- }
- }
- }
- .frame{
- span{
- &.min{
- background-color: #32dc36;
- }
- &.max{
- background-color: #ffbe2a;
- }
- &.close{
- background-color: #ff5f56;
- }
- &.top{
- background-color: #f3bab7;
- }
- }
- }
- .detail{
- color: var(--d-fc-1) !important;
- background-color:var(--d-bgc-1);
- box-shadow: var(--d-bsc-2);
- .detail-content{
- .detail-close{
- svg{
- stroke-width: 1;
- stroke: var(--d-c-8);
- &:hover{
- stroke-width: 2px;
- stroke: var(--d-c-9);
- }
- }
- }
- .detail-body{
- .info, .desc, .m3u8, .operate{
- border-color: var(--d-c-2);
- }
- .operate{
- span{
- &:hover{
- color: var(--d-fc-2);
- }
- }
- }
- .m3u8{
- .box{
- span{
- border-color: var(--d-c-5);
- &:hover{
- color: var(--d-fc-2);
- background-color: var(--d-c-1);
- border-color: var(--d-c-8);
- }
- }
- }
- }
- }
- }
- }
- .film{
- .body{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- .show-img{
- color: var(--d-fc-1);
- .card{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--d-bsc-hover);
- }
- }
- }
- }
- }
- .play{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- .title{
- color: var(--d-fc-1);
- .right {
- svg {
- fill: var(--d-fc-1);
- }
- }
- }
- .box{
- .more{
- span{
- svg{
- stroke: var(--d-c-5);
- stroke-width: 1;
- fill: none;
- }
- &:hover{
- svg{
- stroke: var(--d-c-8);
- stroke-width: 1.5;
- fill: var(--d-c-2);
- }
- }
- &.active{
- svg{
- stroke: var(--d-c-9);
- stroke-width: 2;
- fill: var(--d-c-3);
- }
- }
- &.last-tip {
- color: var(--d-fc-1);
- font-size: 14px;
- }
- }
- }
- }
- .list{
- border: 1px solid var(--d-c-3);
- background-color: var(--d-bgc-2);
- .list-top{
- color: var(--d-fc-2);
- .list-top-close{
- svg{
- stroke: var(--d-c-5);
- stroke-width: 1;
- fill: none;
- &:hover{
- stroke: var(--d-c-8);
- stroke-width: 1.5;
- fill: var(--d-c-2);
- }
- }
- }
- }
- .list-body{
- .list-item{
- li{
- color: var(--d-fc-1);
- &.active{
- background-color: var(--d-c-2);
- color: var(--d-fc-3);
- }
- &:hover{
- background-color: var(--d-c-3);
- }
- }
- }
- .list-history{
- li{
- .title{
- color: var(--d-fc-1);
- }
- &.active{
- background-color: var(--d-c-2);
- .title{
- color: var(--d-fc-3);
- }
- }
- &:hover{
- background-color: var(--d-c-3);
- .detail-delete{
- display: inline-block;
- color: var(--d-fc-2);
- }
- }
- .detail-delete{
- &:hover{
- background-color: var(--d-c-2);
- }
- }
- }
- }
- }
- }
- }
- .star{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- }
- .setting{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- .info{
- a{
- color: var(--d-fc-1);
- &:hover{
- color: var(--d-fc-2);
- }
- }
- }
- .view, .search, .shortcut, .site{
- .title{
- color: var(--d-fc-1);
- }
- }
- .theme{
- .title{
- color: var(--d-fc-1);
- }
- .theme-item{
- box-shadow: var(--d-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--d-bsc-hover);
- .theme-name{
- color: var(--d-fc-2)
- }
- }
- .theme-name{
- color: var(--d-fc-1);
- }
- }
- }
- .qrcode{
- .title{
- color: var(--d-fc-1);
- }
- .qrcode-item{
- box-shadow: var(--d-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--d-bsc-hover);
- }
- }
- }
- }
- .share{
- background-color: var(--d-bgc-1);
- color: var(--d-fc-1);
- border: 1px solid var(--d-c-8);
- .right{
- color: var(--d-fc-1);
- .tops{
- color: var(--d-fc-2);
- }
- }
- .share-mask{
- background-color: var(--d-bgc-1);
- }
- }
- .history{
- background-color: var(--d-bgc-1);
- box-shadow: var(--d-bsc);
- }
-}
diff --git a/src/assets/scss/theme/green.scss b/src/assets/scss/theme/green.scss
deleted file mode 100644
index 858d8b6..0000000
--- a/src/assets/scss/theme/green.scss
+++ /dev/null
@@ -1,354 +0,0 @@
-.theme-green{
- background-color: var(--g-bgc-1);
- .zy-select{
- color: var(--g-fc-1);
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--g-bsc-hover);
- }
- .vs-options{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- ul{
- overflow-y: scroll;
- li{
- &:hover{
- background-color: var(--g-c-1);
- }
- &.active{
- background-color: var(--g-c-3);
- }
- }
- }
- }
- .vs-input{
- input{
- color: var(--g-fc-1);
- &::-webkit-input-placeholder{
- color: var(--g-fc-1);
- }
- }
- }
- }
- .zy-input{
- color: var(--g-fc-1);
- background-color: var(--g-bgc-1);
- input{
- color: var(--g-fc-1);
- background-color: var(--g-bgc-1);
- }
- }
- .zy-checkbox{
- color: var(--g-fc-1);
- }
- .zy-table{
- color: var(--g-fc-2);
- .tHeader{
- border-bottom-color: var(--g-c-3);
- .btn{
- &:hover{
- color: var(--g-fc-3)
- }
- }
- }
- .tBody{
- border-bottom-color: var(--g-c-3);
- ul{
- li{
- border-bottom-color: var(--g-c-2);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--g-bsc-hover);
- }
- span{
- &.btn:hover{
- color: var(--g-fc-3)
- }
- }
- }
- }
- }
- }
- .zy-scroll{
- &:hover{
- &::-webkit-scrollbar-thumb {
- box-shadow: var(--g-bsc-scroll);
- background: var(--g-c-5);
- }
- &::-webkit-scrollbar-track {
- box-shadow: var(--g-bsc-scroll);
- background: var(--g-bgc-1);
- }
- }
- }
- .zy-loading{
- .loader{
- color: var(--g-c-3);
- }
- }
- .zy-body{
- background-color: var(--g-bgc-2);
- }
- .aside{
- .zy-svg{
- svg{
- stroke: var(--g-c-0);
- }
- &:hover{
- background-color: var(--g-c-2);
- }
- &.active{
- background-color: var(--g-bgc-2);
- svg{
- stroke: var(--g-c-0);
- stroke-width: 2;
- fill: var(--g-c-2);
- }
- }
- }
- }
- .frame{
- span{
- &.min{
- background-color: #32dc36;
- }
- &.max{
- background-color: #ffbe2a;
- }
- &.close{
- background-color: #ff5f56;
- }
- &.top{
- background-color: #f3bab7;
- }
- }
- }
- .detail{
- color: var(--g-fc-1) !important;
- background-color:var(--g-bgc-1);
- box-shadow: var(--g-bsc-2);
- .detail-content{
- .detail-close{
- svg{
- stroke-width: 1;
- stroke: var(--g-c-8);
- &:hover{
- stroke-width: 2px;
- stroke: var(--g-c-9);
- }
- }
- }
- .detail-body{
- .info, .desc, .m3u8, .operate{
- border-color: var(--g-c-2);
- }
- .operate{
- span{
- &:hover{
- color: var(--g-fc-2);
- }
- }
- }
- .m3u8{
- .box{
- span{
- border-color: var(--g-c-5);
- &:hover{
- color: var(--g-fc-2);
- background-color: var(--g-c-1);
- border-color: var(--g-c-8);
- }
- }
- }
- }
- }
- }
- }
- .film{
- .body{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- .show-img{
- color: var(--g-fc-1);
- .card{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--g-bsc-hover);
- }
- }
- }
- }
- }
- .play{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- .title{
- color: var(--g-fc-1);
- .right {
- svg {
- fill: var(--g-fc-1);
- }
- }
- }
- .box{
- .more{
- span{
- svg{
- stroke: var(--g-c-5);
- stroke-width: 1;
- fill: none;
- }
- &:hover{
- svg{
- stroke: var(--g-c-8);
- stroke-width: 1.5;
- fill: var(--g-c-2);
- }
- }
- &.active{
- svg{
- stroke: var(--g-c-9);
- stroke-width: 2;
- fill: var(--g-c-3);
- }
- }
- &.last-tip {
- color: var(--g-fc-1);
- font-size: 14px;
- }
- }
- }
- }
- .list{
- border: 1px solid var(--g-c-3);
- background-color: var(--g-bgc-2);
- .list-top{
- color: var(--g-fc-2);
- .list-top-close{
- svg{
- stroke: var(--g-c-5);
- stroke-width: 1;
- fill: none;
- &:hover{
- stroke: var(--g-c-8);
- stroke-width: 1.5;
- fill: var(--g-c-2);
- }
- }
- }
- }
- .list-body{
- .list-item{
- li{
- color: var(--g-fc-1);
- &.active{
- background-color: var(--g-c-2);
- color: var(--g-fc-3);
- }
- &:hover{
- background-color: var(--d-c-3);
- }
- }
- }
- .list-history{
- li{
- .title{
- color: var(--g-fc-1);
- }
- &.active{
- background-color: var(--g-c-2);
- .title{
- color: var(--g-fc-3);
- }
- }
- &:hover{
- background-color: var(--g-c-3);
- .detail-delete{
- display: inline-block;
- color: var(--g-fc-2);
- }
- }
- .detail-delete{
- &:hover{
- background-color: var(--g-c-2);
- }
- }
- }
- }
- }
- }
- }
- .star{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- }
- .setting{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- .info{
- a{
- color: var(--g-fc-1);
- &:hover{
- color: var(--g-fc-2);
- }
- }
- }
- .view, .search, .shortcut, .site{
- .title{
- color: var(--g-fc-1);
- }
- }
- .theme{
- .title{
- color: var(--g-fc-1);
- }
- .theme-item{
- box-shadow: var(--g-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--g-bsc-hover);
- .theme-name{
- color: var(--g-fc-2)
- }
- }
- .theme-name{
- color: var(--g-fc-1);
- }
- }
- }
- .qrcode{
- .title{
- color: var(--g-fc-1);
- }
- .qrcode-item{
- box-shadow: var(--g-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--g-bsc-hover);
- }
- }
- }
- }
- .share{
- background-color: var(--g-bgc-1);
- color: var(--g-fc-1);
- border: 1px solid var(--g-c-8);
- .right{
- color: var(--g-fc-1);
- .tops{
- color: var(--g-fc-2);
- }
- }
- .share-mask{
- background-color: var(--g-bgc-1);
- }
- }
- .history{
- background-color: var(--g-bgc-1);
- box-shadow: var(--g-bsc);
- }
-}
diff --git a/src/assets/scss/theme/light.scss b/src/assets/scss/theme/light.scss
deleted file mode 100644
index 1ddda00..0000000
--- a/src/assets/scss/theme/light.scss
+++ /dev/null
@@ -1,354 +0,0 @@
-.theme-light{
- background-color: var(--l-bgc-1);
- .zy-select{
- color: var(--l-fc-1);
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--l-bsc-hover);
- }
- .vs-options{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- ul{
- overflow-y: scroll;
- li{
- &:hover{
- background-color: var(--l-c-1);
- }
- &.active{
- background-color: var(--l-c-3);
- }
- }
- }
- }
- .vs-input{
- input{
- color: var(--l-fc-1);
- &::-webkit-input-placeholder{
- color: var(--l-fc-1);
- }
- }
- }
- }
- .zy-input{
- color: var(--l-fc-1);
- background-color: var(--l-bgc-1);
- input{
- color: var(--l-fc-1);
- background-color: var(--l-bgc-1);
- }
- }
- .zy-checkbox{
- color: var(--l-fc-1);
- }
- .zy-table{
- color: var(--l-fc-2);
- .tHeader{
- border-bottom-color: var(--l-c-3);
- .btn{
- &:hover{
- color: var(--l-fc-3)
- }
- }
- }
- .tBody{
- border-bottom-color: var(--l-c-3);
- ul{
- li{
- border-bottom-color: var(--l-c-2);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--l-bsc-hover);
- }
- span{
- &.btn:hover{
- color: var(--l-fc-3)
- }
- }
- }
- }
- }
- }
- .zy-scroll{
- &:hover{
- &::-webkit-scrollbar-thumb {
- box-shadow: var(--l-bsc-scroll);
- background: var(--l-c-5);
- }
- &::-webkit-scrollbar-track {
- box-shadow: var(--l-bsc-scroll);
- background: var(--l-bgc-1);
- }
- }
- }
- .zy-loading{
- .loader{
- color: var(--l-c-3);
- }
- }
- .zy-body{
- background-color: var(--l-bgc-2);
- }
- .aside{
- .zy-svg{
- svg{
- stroke: var(--l-c-0);
- }
- &:hover{
- background-color: var(--l-c-2);
- }
- &.active{
- background-color: var(--l-bgc-2);
- svg{
- stroke: var(--l-c-0);
- stroke-width: 2;
- fill: var(--l-c-2);
- }
- }
- }
- }
- .frame{
- span{
- &.min{
- background-color: #32dc36;
- }
- &.max{
- background-color: #ffbe2a;
- }
- &.close{
- background-color: #ff5f56;
- }
- &.top{
- background-color: #f3bab7;
- }
- }
- }
- .detail{
- color: var(--l-fc-1) !important;
- background-color:var(--l-bgc-1);
- box-shadow: var(--l-bsc-2);
- .detail-content{
- .detail-close{
- svg{
- stroke-width: 1;
- stroke: var(--l-c-8);
- &:hover{
- stroke-width: 2px;
- stroke: var(--l-c-9);
- }
- }
- }
- .detail-body{
- .info, .desc, .m3u8, .operate{
- border-color: var(--l-c-2);
- }
- .operate{
- span{
- &:hover{
- color: var(--l-fc-2);
- }
- }
- }
- .m3u8{
- .box{
- span{
- border-color: var(--l-c-5);
- &:hover{
- color: var(--l-fc-2);
- background-color: var(--l-c-1);
- border-color: var(--l-c-8);
- }
- }
- }
- }
- }
- }
- }
- .film{
- .body{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- .show-img{
- color: var(--l-fc-1);
- .card{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--l-bsc-hover);
- }
- }
- }
- }
- }
- .play{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- .title{
- color: var(--l-fc-1);
- .right {
- svg {
- fill: var(--l-fc-1);
- }
- }
- }
- .box{
- .more{
- span{
- svg{
- stroke: var(--l-c-5);
- stroke-width: 1;
- fill: none;
- }
- &:hover{
- svg{
- stroke: var(--l-c-8);
- stroke-width: 1.5;
- fill: var(--l-c-2);
- }
- }
- &.active{
- svg{
- stroke: var(--l-c-9);
- stroke-width: 2;
- fill: var(--l-c-3);
- }
- }
- &.last-tip {
- color: var(--l-fc-1);
- font-size: 14px;
- }
- }
- }
- }
- .list{
- border: 1px solid var(--l-c-3);
- background-color: var(--l-bgc-2);
- .list-top{
- color: var(--l-fc-2);
- .list-top-close{
- svg{
- stroke: var(--l-c-5);
- stroke-width: 1;
- fill: none;
- &:hover{
- stroke: var(--l-c-8);
- stroke-width: 1.5;
- fill: var(--l-c-2);
- }
- }
- }
- }
- .list-body{
- .list-item{
- li{
- color: var(--l-fc-1);
- &.active{
- background-color: var(--l-c-2);
- color: var(--l-fc-3);
- }
- &:hover{
- background-color: var(--d-c-3);
- }
- }
- }
- .list-history{
- li{
- .title{
- color: var(--l-fc-1);
- }
- &.active{
- background-color: var(--l-c-2);
- .title{
- color: var(--l-fc-3);
- }
- }
- &:hover{
- background-color: var(--l-c-3);
- .detail-delete{
- display: inline-block;
- color: var(--l-fc-2);
- }
- }
- .detail-delete{
- &:hover{
- background-color: var(--l-c-2);
- }
- }
- }
- }
- }
- }
- }
- .star{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- }
- .setting{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- .info{
- a{
- color: var(--l-fc-1);
- &:hover{
- color: var(--l-fc-2);
- }
- }
- }
- .view, .search, .shortcut, .site{
- .title{
- color: var(--l-fc-1);
- }
- }
- .theme{
- .title{
- color: var(--l-fc-1);
- }
- .theme-item{
- box-shadow: var(--l-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--l-bsc-hover);
- .theme-name{
- color: var(--l-fc-2)
- }
- }
- .theme-name{
- color: var(--l-fc-1);
- }
- }
- }
- .qrcode{
- .title{
- color: var(--l-fc-1);
- }
- .qrcode-item{
- box-shadow: var(--l-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--l-bsc-hover);
- }
- }
- }
- }
- .share{
- background-color: var(--l-bgc-1);
- color: var(--l-fc-1);
- border: 1px solid var(--l-c-8);
- .right{
- color: var(--l-fc-1);
- .tops{
- color: var(--l-fc-2);
- }
- }
- .share-mask{
- background-color: var(--l-bgc-1);
- }
- }
- .history{
- background-color: var(--l-bgc-1);
- box-shadow: var(--l-bsc);
- }
-}
diff --git a/src/assets/scss/theme/pink.scss b/src/assets/scss/theme/pink.scss
deleted file mode 100644
index 5dbee6c..0000000
--- a/src/assets/scss/theme/pink.scss
+++ /dev/null
@@ -1,353 +0,0 @@
-.theme-pink{
- background-color: var(--p-bgc-1);
- .zy-select{
- color: var(--p-fc-1);
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--p-bsc-hover);
- }
- .vs-options{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- ul{
- overflow-y: scroll;
- li{
- &:hover{
- background-color: var(--p-c-1);
- }
- &.active{
- background-color: var(--p-c-3);
- }
- }
- }
- }
- .vs-input{
- input{
- color: var(--p-fc-1);
- &::-webkit-input-placeholder{
- color: var(--p-fc-1);
- }
- }
- }
- }
- .zy-input{
- color: var(--p-fc-1);
- background-color: var(--p-bgc-1);
- input{
- color: var(--p-fc-1);
- }
- }
- .zy-checkbox{
- color: var(--p-fc-1);
- }
- .zy-table{
- color: var(--p-fc-2);
- .tHeader{
- border-bottom-color: var(--p-c-3);
- .btn{
- &:hover{
- color: var(--p-fc-3)
- }
- }
- }
- .tBody{
- border-bottom-color: var(--p-c-3);
- ul{
- li{
- border-bottom-color: var(--p-c-2);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--p-bsc-hover);
- }
- span{
- &.btn:hover{
- color: var(--p-fc-3)
- }
- }
- }
- }
- }
- }
- .zy-scroll{
- &:hover{
- &::-webkit-scrollbar-thumb {
- box-shadow: var(--p-bsc-scroll);
- background: var(--p-c-5);
- }
- &::-webkit-scrollbar-track {
- box-shadow: var(--p-bsc-scroll);
- background: var(--p-bgc-1);
- }
- }
- }
- .zy-loading{
- .loader{
- color: var(--p-c-3);
- }
- }
- .zy-body{
- background-color: var(--p-bgc-2);
- }
- .aside{
- .zy-svg{
- svg{
- stroke: var(--p-c-0);
- }
- &:hover{
- background-color: var(--p-c-2);
- }
- &.active{
- background-color: var(--p-bgc-2);
- svg{
- stroke: var(--p-c-0);
- stroke-width: 2;
- fill: var(--p-c-2);
- }
- }
- }
- }
- .frame{
- span{
- &.min{
- background-color: #32dc36;
- }
- &.max{
- background-color: #ffbe2a;
- }
- &.close{
- background-color: #ff5f56;
- }
- &.top{
- background-color: #f3bab7;
- }
- }
- }
- .detail{
- color: var(--p-fc-1) !important;
- background-color:var(--p-bgc-1);
- box-shadow: var(--p-bsc-2);
- .detail-content{
- .detail-close{
- svg{
- stroke-width: 1;
- stroke: var(--p-c-8);
- &:hover{
- stroke-width: 2px;
- stroke: var(--p-c-9);
- }
- }
- }
- .detail-body{
- .info, .desc, .m3u8, .operate{
- border-color: var(--p-c-2);
- }
- .operate{
- span{
- &:hover{
- color: var(--p-fc-2);
- }
- }
- }
- .m3u8{
- .box{
- span{
- border-color: var(--p-c-5);
- &:hover{
- color: var(--p-fc-2);
- background-color: var(--p-c-1);
- border-color: var(--p-c-8);
- }
- }
- }
- }
- }
- }
- }
- .film{
- .body{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- .show-img{
- color: var(--p-fc-1);
- .card{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--p-bsc-hover);
- }
- }
- }
- }
- }
- .play{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- .title{
- color: var(--p-fc-1);
- .right {
- svg {
- fill: var(--p-fc-1);
- }
- }
- }
- .box{
- .more{
- span{
- svg{
- stroke: var(--p-c-5);
- stroke-width: 1;
- fill: none;
- }
- &:hover{
- svg{
- stroke: var(--p-c-8);
- stroke-width: 1.5;
- fill: var(--p-c-2);
- }
- }
- &.active{
- svg{
- stroke: var(--p-c-9);
- stroke-width: 2;
- fill: var(--p-c-3);
- }
- }
- &.last-tip {
- color: var(--p-fc-1);
- font-size: 14px;
- }
- }
- }
- }
- .list{
- border: 1px solid var(--p-c-3);
- background-color: var(--p-bgc-2);
- .list-top{
- color: var(--p-fc-2);
- .list-top-close{
- svg{
- stroke: var(--p-c-5);
- stroke-width: 1;
- fill: none;
- &:hover{
- stroke: var(--p-c-8);
- stroke-width: 1.5;
- fill: var(--p-c-2);
- }
- }
- }
- }
- .list-body{
- .list-item{
- li{
- color: var(--p-fc-1);
- &.active{
- background-color: var(--p-c-2);
- color: var(--p-fc-3);
- }
- &:hover{
- background-color: var(--d-c-3);
- }
- }
- }
- .list-history{
- li{
- .title{
- color: var(--p-fc-1);
- }
- &.active{
- background-color: var(--p-c-2);
- .title{
- color: var(--p-fc-3);
- }
- }
- &:hover{
- background-color: var(--p-c-3);
- .detail-delete{
- display: inline-block;
- color: var(--p-fc-2);
- }
- }
- .detail-delete{
- &:hover{
- background-color: var(--p-c-2);
- }
- }
- }
- }
- }
- }
- }
- .star{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- }
- .setting{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- .info{
- a{
- color: var(--p-fc-1);
- &:hover{
- color: var(--p-fc-2);
- }
- }
- }
- .view, .search, .shortcut, .site{
- .title{
- color: var(--p-fc-1);
- }
- }
- .theme{
- .title{
- color: var(--p-fc-1);
- }
- .theme-item{
- box-shadow: var(--p-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--p-bsc-hover);
- .theme-name{
- color: var(--p-fc-2)
- }
- }
- .theme-name{
- color: var(--p-fc-1);
- }
- }
- }
- .qrcode{
- .title{
- color: var(--p-fc-1);
- }
- .qrcode-item{
- box-shadow: var(--p-bsc);
- transition: all 0.3s cubic-bezier(.25,.8,.25,1);
- &:hover{
- box-shadow: var(--p-bsc-hover);
- }
- }
- }
- }
- .share{
- background-color: var(--p-bgc-1);
- color: var(--p-fc-1);
- border: 1px solid var(--p-c-8);
- .right{
- color: var(--p-fc-1);
- .tops{
- color: var(--p-fc-2);
- }
- }
- .share-mask{
- background-color: var(--p-bgc-1);
- }
- }
- .history{
- background-color: var(--p-bgc-1);
- box-shadow: var(--p-bsc);
- }
-}
diff --git a/src/background.js b/src/background.js
deleted file mode 100644
index c53c170..0000000
--- a/src/background.js
+++ /dev/null
@@ -1,140 +0,0 @@
-'use strict'
-
-import './lib/site/server'
-import { app, protocol, BrowserWindow, globalShortcut, ipcMain } from 'electron'
-import { createProtocol } from 'vue-cli-plugin-electron-builder/lib'
-import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer'
-const isDevelopment = process.env.NODE_ENV !== 'production'
-
-// 允许跨域
-app.commandLine.appendSwitch('disable-features', 'OutOfBlinkCors')
-
-let win
-let mini
-
-protocol.registerSchemesAsPrivileged([{ scheme: 'app', privileges: { secure: true, standard: true } }])
-
-function createWindow () {
- win = new BrowserWindow({
- width: 1080,
- height: 720,
- frame: false,
- resizable: true,
- webPreferences: {
- webSecurity: false,
- nodeIntegration: process.env.ELECTRON_NODE_INTEGRATION
- }
- })
-
- if (process.env.WEBPACK_DEV_SERVER_URL) {
- win.loadURL(process.env.WEBPACK_DEV_SERVER_URL)
- if (!process.env.IS_TEST) win.webContents.openDevTools()
- } else {
- createProtocol('app')
- win.loadURL('app://./index.html')
- }
-
- win.on('closed', () => {
- win = null
- })
-}
-
-function createMini () {
- mini = new BrowserWindow({
- width: 550,
- miniWidth: 860,
- height: 340,
- miniHeight: 180,
- frame: false,
- resizable: true,
- webPreferences: {
- webSecurity: false,
- nodeIntegration: process.env.ELECTRON_NODE_INTEGRATION
- }
- })
-
- if (process.env.WEBPACK_DEV_SERVER_URL) {
- mini.loadURL(process.env.WEBPACK_DEV_SERVER_URL + 'mini')
- if (!process.env.IS_TEST) mini.webContents.openDevTools()
- } else {
- createProtocol('app')
- mini.loadURL('app://./mini.html')
- }
-
- mini.on('closed', () => {
- mini = null
- })
-}
-
-if (process.platform === 'darwin') {
- app.dock.show()
-}
-if (process.platform === 'Linux') {
- app.disableHardwareAcceleration()
-}
-app.allowRendererProcessReuse = true
-
-app.on('window-all-closed', () => {
- app.quit()
-})
-
-app.on('activate', () => {
- if (win === null) {
- createWindow()
- }
-})
-
-ipcMain.on('mini', () => {
- createMini()
- win.hide()
-})
-
-ipcMain.on('win', () => {
- mini.destroy()
- win.show()
- win.webContents.send('miniClosed')
-})
-
-const gotTheLock = app.requestSingleInstanceLock()
-if (!gotTheLock) {
- app.quit()
-} else {
- app.on('second-instance', (event, commandLine, workingDirectory) => {
- if (win) {
- if (win.isMinimized()) win.restore()
- win.focus()
- }
- })
- app.on('ready', async () => {
- if (isDevelopment && !process.env.IS_TEST) {
- try {
- await installExtension(VUEJS_DEVTOOLS)
- } catch (e) {
- console.error('Vue Devtools failed to install:', e.toString())
- }
- }
- createWindow()
- globalShortcut.register('Alt+Space', () => {
- if (win) {
- win.isFocused() ? win.blur() : win.focus()
- }
- if (mini) {
- mini.isFocused() ? mini.blur() : mini.focus()
- }
- })
- })
-}
-
-if (isDevelopment) {
- if (process.platform === 'win32') {
- process.on('message', data => {
- if (data === 'graceful-exit') {
- app.quit()
- }
- })
- } else {
- process.on('SIGTERM', () => {
- app.quit()
- })
- }
-}
diff --git a/src/components/Aside.vue b/src/components/Aside.vue
deleted file mode 100644
index f043b96..0000000
--- a/src/components/Aside.vue
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
- 电影
-
-
-
-
-
-
-
-
-
-
-
-
-
- 电视直播
-
-
-
-
-
-
- 播放
-
-
-
-
-
- 收藏
-
-
-
-
-
- 历史记录
-
-
-
-
-
-
- 设置
-
-
-
-
-
-
-
-
diff --git a/src/components/Detail.vue b/src/components/Detail.vue
deleted file mode 100644
index e94cdec..0000000
--- a/src/components/Detail.vue
+++ /dev/null
@@ -1,486 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
{{info.name}}
-
导演: {{info.director}}
-
主演: {{info.actor}}
-
类型: {{info.type}}
-
地区: {{info.area}}
-
语言: {{info.lang}}
-
上映: {{info.year}}
-
更新: {{info.last}}
-
备注: {{info.note}}
-
豆瓣评分: {{info.rate}}
-
-
-
- 播放
- 收藏
- 下载
- 分享
- 豆瓣
-
- 播放在线高清视频
-
-
-
- Please select one
- {{i}}
-
-
-
-
{{info.des}}
-
-
-
-
-
-
-
-
diff --git a/src/components/EditSites.vue b/src/components/EditSites.vue
deleted file mode 100644
index e140fa5..0000000
--- a/src/components/EditSites.vue
+++ /dev/null
@@ -1,268 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{i.name}}
-
- 删除
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Film.vue b/src/components/Film.vue
deleted file mode 100644
index 05f3fe9..0000000
--- a/src/components/Film.vue
+++ /dev/null
@@ -1,586 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{{props.data.name}}
-
- {{props.data.year}}
- {{props.data.note}}
- {{props.data.type}}
-
-
-
-
-
-
-
-
-
-
-
- {{i.name}}
- {{i.type}}
- {{i.year}}
- {{i.note}}
- {{i.last}}
-
- 播放
- 收藏
- 分享
- 下载
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{i.name}}
- {{i.type}}
- {{i.last}}
- {{i.site.name}}
- {{i.note}}
-
- 播放
- 收藏
- 分享
- 下载
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Frame.vue b/src/components/Frame.vue
deleted file mode 100644
index 7e81e9b..0000000
--- a/src/components/Frame.vue
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/History.vue b/src/components/History.vue
deleted file mode 100644
index 275e366..0000000
--- a/src/components/History.vue
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-
-
- 无数据
-
- 名字
- 片源
- 观看至
-
-
-
-
-
-
-
-
- {{i.name}}
- {{getSiteName(i.site)}}
- 第{{i.index+1}}集
-
- 播放
- 分享
- 下载
- 删除
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/IPTV.vue b/src/components/IPTV.vue
deleted file mode 100644
index 58734a2..0000000
--- a/src/components/IPTV.vue
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{i.name}}
-
- 播放
- 删除
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Play.vue b/src/components/Play.vue
deleted file mode 100644
index 138fd96..0000000
--- a/src/components/Play.vue
+++ /dev/null
@@ -1,1311 +0,0 @@
-
-
-
-
-
『第 {{(video.info.index + 1)}} 集』 {{name}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 下一集
-
-
-
-
-
- 播放列表
-
-
-
-
-
-
-
-
-
- 历史记录
-
-
-
-
-
-
- 收藏
-
-
-
-
-
- 详情
-
-
-
-
-
-
-
-
- 精简模式
-
-
-
-
-
-
- 分享
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
上次播放到【{{right.history[0].site}}】{{right.history[0].name}} 第{{right.history[0].index+1}}集
-
-
-
-
-
-
{{ right.type === 'list' ? '播放列表' : '历史记录' }}
-
-
- 关闭
-
-
-
-
-
-
- 导出
- 无数据
- {{i | ftName(j)}}
-
-
- 清空
- 无数据
- 【{{m.site}}】{{m.name}} 第{{m.index+1}}集 删除
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Setting.vue b/src/components/Setting.vue
deleted file mode 100644
index 007322c..0000000
--- a/src/components/Setting.vue
+++ /dev/null
@@ -1,493 +0,0 @@
-
-
-
-
-
diff --git a/src/components/Share.vue b/src/components/Share.vue
deleted file mode 100644
index 0491824..0000000
--- a/src/components/Share.vue
+++ /dev/null
@@ -1,205 +0,0 @@
-
-
-
-
-
-
-
{{ share.info.name }}
-
-
-
长按二维码,识别播放。
-
-
『ZY Player』技术支持,严禁传播违法资源。
-
-
-
-
-
-
-
diff --git a/src/components/Star.vue b/src/components/Star.vue
deleted file mode 100644
index e818fd3..0000000
--- a/src/components/Star.vue
+++ /dev/null
@@ -1,412 +0,0 @@
-
-
-
-
-
-
-
-
-
- 名字
- 类型
- 上映
- 片源
- 备注
- 观看至
-
-
-
-
-
-
-
-
-
-
-
- {{ i.name }}
- {{ i.type }}
- {{ i.year }}
- {{ getSiteName(i.key) }}
- {{ i.note }}
- {{ getHistoryNote(i.index) }}
-
- 播放
- 分享
- 同步
- 下载
- 删除
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/components/register.js b/src/components/register.js
deleted file mode 100644
index 644e5f1..0000000
--- a/src/components/register.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import Vue from 'vue'
-import Aside from './Aside'
-import Frame from './Frame'
-import Film from './Film'
-import Play from './Play'
-import Star from './Star'
-import Setting from './Setting'
-import Detail from './Detail'
-import Share from './Share'
-import History from './History'
-import EditSites from './EditSites'
-import IPTV from './IPTV'
-
-export default {
- registerComponents () {
- Vue.component('Aside', Aside)
- Vue.component('Frame', Frame)
- Vue.component('Film', Film)
- Vue.component('Play', Play)
- Vue.component('Star', Star)
- Vue.component('Setting', Setting)
- Vue.component('Detail', Detail)
- Vue.component('Share', Share)
- Vue.component('History', History)
- Vue.component('EditSites', EditSites)
- Vue.component('IPTV', IPTV)
- }
-}
diff --git a/src/lib/dexie/dexie.js b/src/lib/dexie/dexie.js
deleted file mode 100644
index d83609d..0000000
--- a/src/lib/dexie/dexie.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import Dexie from 'dexie'
-import { setting, sites, localKey, iptv } from './initData'
-
-const db = new Dexie('zy')
-
-db.version(3).stores({
- search: '++id, keywords',
- iptvSearch: '++id, keywords',
- setting: 'id, theme, site, shortcut, view, externalPlayer, searchAllSites, excludeRootClasses, excludeR18Films, forwardTimeInSec',
- shortcut: 'name, key, desc',
- star: '++id, site, ids, name, type, year, index',
- sites: '++id, key, name, json, xml, down, level',
- history: '++id, site, ids, name, type, year, index, time',
- mini: 'id, site, ids, name, index, time',
- iptv: '++id, name, url'
-})
-
-db.on('populate', () => {
- db.setting.bulkAdd(setting)
- db.sites.bulkAdd(sites)
- db.shortcut.bulkAdd(localKey)
- db.iptv.bulkAdd(iptv)
-})
-
-db.open()
-
-export default db
diff --git a/src/lib/dexie/history.js b/src/lib/dexie/history.js
deleted file mode 100644
index 6ca8112..0000000
--- a/src/lib/dexie/history.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import db from './dexie'
-const { history } = db
-export default {
- async add (doc) {
- return await history.add(doc)
- },
- async find (doc) {
- return await history.get(doc)
- },
- async update (id, docs) {
- return await history.update(id, docs)
- },
- async all () {
- return await history.toArray()
- },
- async remove (id) {
- return await history.delete(id)
- },
- async clear () {
- return await history.clear()
- }
-}
diff --git a/src/lib/dexie/index.js b/src/lib/dexie/index.js
deleted file mode 100644
index 9e03e72..0000000
--- a/src/lib/dexie/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import history from './history'
-import mini from './mini'
-import setting from './setting'
-import shortcut from './shortcut'
-import star from './star'
-import sites from './sites'
-import search from './search'
-import iptvSearch from './iptvSearch'
-import iptv from './iptv'
-
-export {
- history,
- mini,
- setting,
- shortcut,
- star,
- sites,
- iptv,
- search,
- iptvSearch
-}
diff --git a/src/lib/dexie/initData.js b/src/lib/dexie/initData.js
deleted file mode 100644
index 0e58005..0000000
--- a/src/lib/dexie/initData.js
+++ /dev/null
@@ -1,1728 +0,0 @@
-const setting = [
- {
- id: 0,
- theme: 'light',
- shortcut: true,
- view: 'picture',
- externalPlayer: '',
- searchAllSites: true,
- excludeRootClasses: true,
- excludeR18Films: true,
- forwardTimeInSec: 5
- }
-]
-
-const sites = [
- {
- id: 1,
- key: 'okzy',
- name: 'OK 资源网',
- api: 'http://cj.okzy.tv/inc/api.php',
- download: 'http://cj.okzy.tv/inc/apidown.php'
- },
- {
- id: 2,
- key: 'zuidazy',
- name: '最大资源网',
- api: 'http://www.zdziyuan.com/inc/api.php',
- download: 'http://www.zdziyuan.com/inc/apidown.php'
- },
- {
- id: 3,
- key: 'doubanzy',
- name: '豆瓣电影资源',
- api: 'http://v.1988cj.com/inc/api.php',
- download: 'http://v.1988cj.com/inc/apidown.php'
- },
- {
- id: 4,
- key: '135zy',
- name: '135 资源网',
- api: 'http://cj.zycjw1.com/inc/api.php',
- download: 'http://cj.zycjw1.com/inc/apidown.php'
- },
- {
- id: 5,
- key: 'kuyunzy',
- name: '酷云资源',
- api: 'http://caiji.kuyun98.com/inc/ldg_api.php',
- download: 'http://caiji.kuyun98.com/inc/apidown.php'
- },
- {
- id: 6,
- key: 'mgtvzy',
- name: '芒果 TV 资源网',
- api: 'https://api.shijiapi.com/api.php/provide/vod/at/xml/',
- download: ''
- },
- {
- id: 7,
- key: 'subo988',
- name: '速播资源站',
- api: 'https://www.subo988.com/inc/api.php',
- download: ''
- },
- {
- id: 8,
- key: '209zy',
- name: '209 资源',
- api: 'http://cj.1156zy.com/inc/api.php',
- download: ''
- },
- {
- id: 9,
- key: 'zuixinzy',
- name: '最新资源',
- api: 'http://api.zuixinapi.com/inc/api.php',
- download: ''
- },
- {
- id: 10,
- key: 'kubozy',
- name: '酷播资源',
- api: 'http://api.kbzyapi.com/inc/api.php',
- download: ''
- },
- {
- id: 11,
- key: 'yongjiuzy',
- name: '永久资源',
- api: 'http://cj.yongjiuzyw.com/inc/api.php',
- download: ''
- },
- {
- id: 12,
- key: '123ku',
- name: '123 资源',
- api: 'http://cj.123ku2.com:12315/inc/api.php',
- download: ''
- },
- {
- id: 13,
- key: '88zyw',
- name: '88 影视资源站',
- api: 'http://www.88zyw.net/inc/api.php',
- download: ''
- },
- {
- id: 14,
- key: 'wolongzy',
- name: '卧龙资源',
- api: 'http://cj.wlzy.tv/inc/api_mac.php',
- download: ''
- },
- {
- id: 15,
- key: 'mahuazy',
- name: '麻花资源',
- api: 'https://www.mhapi123.com/inc/api.php',
- download: ''
- },
- {
- id: 16,
- key: 'kkzy',
- name: '快快资源',
- api: 'https://api.kkzy.tv/inc/api.php',
- download: ''
- },
- {
- id: 17,
- key: '158zy',
- name: '壹伍捌资源网',
- api: 'http://cj.158zyz.net:158/inc/api.php',
- download: ''
- },
- {
- id: 18,
- key: 'rrzy',
- name: '人人资源',
- api: 'https://www.rrzyw.cc/api.php/provide/vod/from/rrm3u8/at/xml/',
- download: ''
- },
- {
- id: 19,
- key: 'mokazy',
- name: '魔卡资源网',
- api: 'https://cj.heiyap.com/api.php/provide/vod/at/xml/',
- download: ''
- },
- {
- id: 20,
- key: 'kyzy',
- name: '快影资源站',
- api: 'https://www.kyzy.tv/api.php/kyyun/vod/at/xml/',
- download: ''
- },
- {
- id: 21,
- key: 'solezy',
- name: '搜乐资源网',
- api: 'https://www.caijizy.vip/api.php/provide/vod/at/xml/',
- download: ''
- },
- {
- id: 22,
- key: 'bbkdj',
- name: '步步高顶尖资源网',
- api: 'http://api.bbkdj.com/api',
- download: ''
- },
- {
- id: 23,
- key: '1886zy',
- name: '1886 资源',
- api: 'http://cj.1886zy.co/inc/api.php',
- download: ''
- },
- {
- id: 24,
- key: 'mbo',
- name: '秒播资源',
- api: 'http://caiji.mb77.vip/inc/api.php',
- download: ''
- },
- {
- id: 25,
- key: '605zy',
- name: '605资源',
- api: 'http://www.605zy.net/inc/seacmsapi.php',
- download: ''
- }
-]
-
-const localKey = [
- {
- name: 'playAndPause',
- desc: '播放或暂停',
- key: 'space'
- },
- {
- name: 'forward',
- desc: '快进',
- key: 'right'
- },
- {
- name: 'back',
- desc: '快退',
- key: 'left'
- },
- {
- name: 'volumeUp',
- desc: '音量调高',
- key: 'up'
- },
- {
- name: 'volumeDown',
- desc: '音量调低',
- key: 'down'
- },
- {
- name: 'mute',
- desc: '静音',
- key: 'm'
- },
- {
- name: 'top',
- desc: '置顶或退出置顶',
- key: 't'
- },
- {
- name: 'fullscreen',
- desc: '进入或退出全屏',
- key: 'f'
- },
- {
- name: 'escape',
- desc: '退出全屏',
- key: 'esc'
- },
- {
- name: 'next',
- desc: '下一集',
- key: 'alt+right'
- },
- {
- name: 'prev',
- desc: '上一集',
- key: 'alt+left'
- },
- {
- name: 'home',
- desc: '跳到视频开始位置',
- key: 'home'
- },
- {
- name: 'end',
- desc: '跳到视频结束位置',
- key: 'end'
- },
- {
- name: 'opacityUp',
- desc: '透明度调高',
- key: 'alt+up'
- },
- {
- name: 'opacityDown',
- desc: '透明度调低',
- key: 'alt+down'
- },
- {
- name: 'playbackRateUp',
- desc: '播放倍速加快',
- key: 'pageup'
- },
- {
- name: 'playbackRateDown',
- desc: '播放倍速减慢',
- key: 'pagedown'
- },
- {
- name: 'mini',
- desc: '进入或退出mini模式',
- key: 'alt+m'
- }
-]
-
-const getSite = (key) => {
- for (const i of sites) {
- if (key === i.key) {
- return i
- }
- }
-}
-
-const iptv = [
- {
- name: 'CCTV1-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/4000000/mnf.m3u8',
- id: 16912
- },
- {
- name: 'CCTV-1HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cctv1hd/2300000/mnf.m3u8',
- id: 16913
- },
- {
- name: 'CCTV1 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225924/1.m3u8',
- id: 16914
- },
- {
- name: 'CCTV1 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226154/1.m3u8',
- id: 16915
- },
- {
- name: 'CCTV1 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226155/1.m3u8',
- id: 16916
- },
- {
- name: 'CCTV1 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226226/1.m3u8',
- id: 16917
- },
- {
- name: 'CCTV1 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226346/1.m3u8',
- id: 16918
- },
- {
- name: 'CCTV1 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226431/1.m3u8',
- id: 16919
- },
- {
- name: 'CCTV2 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226230/1.m3u8',
- id: 16920
- },
- {
- name: 'CCTV2 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226371/1.m3u8',
- id: 16921
- },
- {
- name: 'CCTV2 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226472/1.m3u8',
- id: 16922
- },
- {
- name: 'CCTV3 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226471/1.m3u8',
- id: 16923
- },
- {
- name: 'CCTV4 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226314/1.m3u8',
- id: 16924
- },
- {
- name: 'CCTV4 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226335/1.m3u8',
- id: 16925
- },
- {
- name: 'CCTV4 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226470/1.m3u8',
- id: 16926
- },
- {
- name: 'CCTV5 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226469/1.m3u8',
- id: 16927
- },
- {
- name: 'CCTV5+ HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226225/1.m3u8',
- id: 16928
- },
- {
- name: 'CCTV5+ CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226349/1.m3u8',
- id: 16929
- },
- {
- name: 'CCTV5+ CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226458/1.m3u8',
- id: 16930
- },
- {
- name: 'CCTV6 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226468/1.m3u8',
- id: 16931
- },
- {
- name: 'CCTV7 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226234/1.m3u8',
- id: 16932
- },
- {
- name: 'CCTV7 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226467/1.m3u8',
- id: 16933
- },
- {
- name: 'CCTV8 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226485/1.m3u8',
- id: 16934
- },
- {
- name: 'CCTV9 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226236/1.m3u8',
- id: 16935
- },
- {
- name: 'CCTV9 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226465/1.m3u8',
- id: 16936
- },
- {
- name: 'CCTV10 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226227/1.m3u8',
- id: 16937
- },
- {
- name: 'CCTV10 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226464/1.m3u8',
- id: 16938
- },
- {
- name: 'CCTV11 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226334/1.m3u8',
- id: 16939
- },
- {
- name: 'CCTV11 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226315/1.m3u8',
- id: 16940
- },
- {
- name: 'CCTV11 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226463/1.m3u8',
- id: 16941
- },
- {
- name: 'CCTV12 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226228/1.m3u8',
- id: 16942
- },
- {
- name: 'CCTV12 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226462/1.m3u8',
- id: 16943
- },
- {
- name: 'CCTV13 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226316/1.m3u8',
- id: 16944
- },
- {
- name: 'CCTV14 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226229/1.m3u8',
- id: 16945
- },
- {
- name: 'CCTV14 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226461/1.m3u8',
- id: 16946
- },
- {
- name: 'CCTV15 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226460/1.m3u8',
- id: 16947
- },
- {
- name: 'CCTV15 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226317/1.m3u8',
- id: 16948
- },
- {
- name: 'CCTV15 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226333/1.m3u8',
- id: 16949
- },
- {
- name: 'CCTV17 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226318/1.m3u8',
- id: 16950
- },
- {
- name: 'CCTV17 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226459/1.m3u8',
- id: 16951
- },
- {
- name: 'CCTV-4K',
- url: 'http://112.17.40.12/PLTV/88888888/224/3221226758/1.m3u8',
- id: 16952
- },
- {
- name: 'CCTV-4K',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226758/index.m3u8',
- id: 16953
- },
- {
- name: 'CCTV-4K',
- url: 'http://39.134.176.148/PLTV/88888888/224/3221226758/index.m3u8',
- id: 16954
- },
- {
- name: 'CCTV-4K',
- url: 'http://117.148.187.83/PLTV/88888888/224/3221226758/index.m3u8',
- id: 16955
- },
- {
- name: '北京卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/4000000/mnf.m3u8',
- id: 16956
- },
- {
- name: '江苏卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/4000000/mnf.m3u8',
- id: 16957
- },
- {
- name: '浙江卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/4000000/mnf.m3u8',
- id: 16958
- },
- {
- name: '深圳卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/4000000/mnf.m3u8',
- id: 16959
- },
- {
- name: '山东卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/4000000/mnf.m3u8',
- id: 16960
- },
- {
- name: '湖北卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/4000000/mnf.m3u8',
- id: 16961
- },
- {
- name: '广东卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/4000000/mnf.m3u8',
- id: 16962
- },
- {
- name: '东方卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/4000000/mnf.m3u8',
- id: 16963
- },
- {
- name: '黑龙江卫视1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/4000000/mnf.m3u8',
- id: 16964
- },
- {
- name: '五星体育1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/4000000/mnf.m3u8',
- id: 16965
- },
- {
- name: '北京卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/1300000/mnf.m3u8',
- id: 16966
- },
- {
- name: '东方卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hddfws/1300000/mnf.m3u8',
- id: 16967
- },
- {
- name: '浙江卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/1300000/mnf.m3u8',
- id: 16968
- },
- {
- name: '湖北卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/1300000/mnf.m3u8',
- id: 16969
- },
- {
- name: '湖南卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/1300000/mnf.m3u8',
- id: 16970
- },
- {
- name: '山东卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/1300000/mnf.m3u8',
- id: 16971
- },
- {
- name: '江苏卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/1300000/mnf.m3u8',
- id: 16972
- },
- {
- name: '深圳卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/1300000/mnf.m3u8',
- id: 16973
- },
- {
- name: '广东卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/1300000/mnf.m3u8',
- id: 16974
- },
- {
- name: '黑龙江卫视高清',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/1300000/mnf.m3u8',
- id: 16975
- },
- {
- name: '湖南卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hnwshd/2300000/mnf.m3u8',
- id: 16976
- },
- {
- name: '北京卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/bjwshd/2300000/mnf.m3u8',
- id: 16977
- },
- {
- name: '江苏卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jswshd/2300000/mnf.m3u8',
- id: 16978
- },
- {
- name: '浙江卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/zjwshd/2300000/mnf.m3u8',
- id: 16979
- },
- {
- name: '深圳卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/szwshd/2300000/mnf.m3u8',
- id: 16980
- },
- {
- name: '山东卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sdwshd/2300000/mnf.m3u8',
- id: 16981
- },
- {
- name: '湖北卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbwshd/2300000/mnf.m3u8',
- id: 16982
- },
- {
- name: '广东卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gdwshd/2300000/mnf.m3u8',
- id: 16983
- },
- {
- name: '黑龙江卫视HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hljwshd/2300000/mnf.m3u8',
- id: 16984
- },
- {
- name: '五星体育HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/2300000/mnf.m3u8',
- id: 16985
- },
- {
- name: '中国教育1 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226494/1.m3u8',
- id: 16986
- },
- {
- name: '东南卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226406/1.m3u8',
- id: 16987
- },
- {
- name: '东南卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226496/1.m3u8',
- id: 16988
- },
- {
- name: '东方卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226237/1.m3u8',
- id: 16989
- },
- {
- name: '东方卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226364/1.m3u8',
- id: 16990
- },
- {
- name: '东方卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226505/1.m3u8',
- id: 16991
- },
- {
- name: '北京卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226224/1.m3u8',
- id: 16992
- },
- {
- name: '北京卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226367/1.m3u8',
- id: 16993
- },
- {
- name: '北京卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226441/1.m3u8',
- id: 16994
- },
- {
- name: '天津卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226246/1.m3u8',
- id: 16995
- },
- {
- name: '天津卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226502/1.m3u8',
- id: 16996
- },
- {
- name: '安徽卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226223/1.m3u8',
- id: 16997
- },
- {
- name: '安徽卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226499/1.m3u8',
- id: 16998
- },
- {
- name: '山东卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225894/1.m3u8',
- id: 16999
- },
- {
- name: '山东卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226244/1.m3u8',
- id: 17000
- },
- {
- name: '山东卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226308/1.m3u8',
- id: 17001
- },
- {
- name: '山东卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226501/1.m3u8',
- id: 17002
- },
- {
- name: '广东卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225878/1.m3u8',
- id: 17003
- },
- {
- name: '广东卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226238/1.m3u8',
- id: 17004
- },
- {
- name: '广东卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226508/1.m3u8',
- id: 17005
- },
- {
- name: '江苏卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226242/1.m3u8',
- id: 17006
- },
- {
- name: '江苏卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226366/1.m3u8',
- id: 17007
- },
- {
- name: '江苏卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226506/1.m3u8',
- id: 17008
- },
- {
- name: '江西卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226243/1.m3u8',
- id: 17009
- },
- {
- name: '河北卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226507/1.m3u8',
- id: 17010
- },
- {
- name: '浙江卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226247/1.m3u8',
- id: 17011
- },
- {
- name: '浙江卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226365/1.m3u8',
- id: 17012
- },
- {
- name: '浙江卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226504/1.m3u8',
- id: 17013
- },
- {
- name: '深圳卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221225897/1.m3u8',
- id: 17014
- },
- {
- name: '深圳卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226245/1.m3u8',
- id: 17015
- },
- {
- name: '深圳卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226495/1.m3u8',
- id: 17016
- },
- {
- name: '湖北卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226240/1.m3u8',
- id: 17017
- },
- {
- name: '湖北卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226310/1.m3u8',
- id: 17018
- },
- {
- name: '湖北卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226503/1.m3u8',
- id: 17019
- },
- {
- name: '湖南卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226241/1.m3u8',
- id: 17020
- },
- {
- name: '湖南卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226509/1.m3u8',
- id: 17021
- },
- {
- name: '贵州卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226497/1.m3u8',
- id: 17022
- },
- {
- name: '辽宁卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226500/1.m3u8',
- id: 17023
- },
- {
- name: '黑龙江卫视 HD',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226239/1.m3u8',
- id: 17024
- },
- {
- name: '黑龙江卫视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226498/1.m3u8',
- id: 17025
- },
- {
- name: '北京冬奥纪实 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226438/1.m3u8',
- id: 17026
- },
- {
- name: '北京影视 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226486/1.m3u8',
- id: 17027
- },
- {
- name: '北京文艺 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226440/1.m3u8',
- id: 17028
- },
- {
- name: '北京新闻 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226437/1.m3u8',
- id: 17029
- },
- {
- name: '安徽卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ahws/1300000/mnf.m3u8',
- id: 17030
- },
- {
- name: '兵团卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/btws/1300000/mnf.m3u8',
- id: 17031
- },
- {
- name: '甘肃卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gsws/1300000/mnf.m3u8',
- id: 17032
- },
- {
- name: '陕西卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/sxws/1300000/mnf.m3u8',
- id: 17033
- },
- {
- name: '山西卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/shanxiws/1300000/mnf.m3u8',
- id: 17034
- },
- {
- name: '吉林卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jlws/1300000/mnf.m3u8',
- id: 17035
- },
- {
- name: '河北卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hbws/1300000/mnf.m3u8',
- id: 17036
- },
- {
- name: '四川卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/scws/1300000/mnf.m3u8',
- id: 17037
- },
- {
- name: '贵州卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gzws/1300000/mnf.m3u8',
- id: 17038
- },
- {
- name: '云南卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ynws/1300000/mnf.m3u8',
- id: 17039
- },
- {
- name: '辽宁卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/lnws/1300000/mnf.m3u8',
- id: 17040
- },
- {
- name: '旅游卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/lyws/1300000/mnf.m3u8',
- id: 17041
- },
- {
- name: '东南卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dnws/1300000/mnf.m3u8',
- id: 17042
- },
- {
- name: '重庆卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/cqws/1300000/mnf.m3u8',
- id: 17043
- },
- {
- name: '广西卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/gxws/1300000/mnf.m3u8',
- id: 17044
- },
- {
- name: '青海卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/qhws/1300000/mnf.m3u8',
- id: 17045
- },
- {
- name: '江西卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jxws/1300000/mnf.m3u8',
- id: 17046
- },
- {
- name: '内蒙古卫视',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/nmgws/1300000/mnf.m3u8',
- id: 17047
- },
- {
- name: '天津卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226412/index.m3u8',
- id: 17048
- },
- {
- name: '河北卫视超清1',
- url: 'http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225840/index.m3u8',
- id: 17049
- },
- {
- name: '湖南卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226553/index.m3u8',
- id: 17050
- },
- {
- name: '浙江卫视',
- url: 'http://223.110.243.173/PLTV/3/224/3221227215/index.m3u8',
- id: 17051
- },
- {
- name: '江苏卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226414/index.m3u8',
- id: 17052
- },
- {
- name: '东南卫视',
- url: 'http://117.169.124.37:6610/ysten-businessmobile/live/dongnanstv/yst.m3u8',
- id: 17053
- },
- {
- name: '湖北卫视',
- url: 'http://223.110.243.171/PLTV/3/224/3221227211/index.m3u8',
- id: 17054
- },
- {
- name: '广东卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226225/index.m3u8',
- id: 17055
- },
- {
- name: '深圳卫视',
- url: 'http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8',
- id: 17056
- },
- {
- name: '辽宁卫视',
- url: 'http://223.110.245.145/ott.js.chinamobile.com/PLTV/3/224/3221227410/index.m3u8',
- id: 17057
- },
- {
- name: '龙江卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226555/index.m3u8',
- id: 17058
- },
- {
- name: '江西卫视',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226557/index.m3u8',
- id: 17059
- },
- {
- name: '四川卫视',
- url: 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221227006/1.m3u8',
- id: 17060
- },
- {
- name: '重庆卫视',
- url: 'http://ott.fj.chinamobile.com/PLTV/88888888/224/3221225949/1.m3u8',
- id: 17061
- },
- {
- name: '重庆卫视',
- url: 'http://ivi.bupt.edu.cn/hls/cqhd.m3u8',
- id: 17062
- },
- {
- name: '河南卫视超清2',
- url: 'http://223.110.245.157/ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8',
- id: 17063
- },
- {
- name: '贵州卫视超清2',
- url: 'http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225787/index.m3u8',
- id: 17064
- },
- {
- name: '海南卫视',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225855/1.m3u8',
- id: 17065
- },
- {
- name: '云南卫视超清1',
- url: 'http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221225838/index.m3u8',
- id: 17066
- },
- {
- name: '宁夏卫视超清1',
- url: 'http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8',
- id: 17067
- },
- {
- name: '内蒙卫视超清1',
- url: 'http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221225836/index.m3u8',
- id: 17068
- },
- {
- name: '广西卫视',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225836/1.m3u8',
- id: 17069
- },
- {
- name: '五星体育HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ssty/1300000/mnf.m3u8',
- id: 17070
- },
- {
- name: '北京卡酷少儿 CQ',
- url: 'http://221.179.217.9/otttv.bj.chinamobile.com/PLTV/88888888/224/3221226558/1.m3u8',
- id: 17071
- },
- {
- name: '法治天地HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/fztd/1300000/mnf.m3u8',
- id: 17072
- },
- {
- name: '欢笑剧场HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hxjc/1300000/mnf.m3u8',
- id: 17073
- },
- {
- name: '都市剧场HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjc/1300000/mnf.m3u8',
- id: 17074
- },
- {
- name: '七彩戏剧HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/qcxj/1300000/mnf.m3u8',
- id: 17075
- },
- {
- name: '动漫秀场HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dmxc/1300000/mnf.m3u8',
- id: 17076
- },
- {
- name: '劲爆体育HD',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jbty/1300000/mnf.m3u8',
- id: 17077
- },
- {
- name: '极速汽车',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jsqc/1300000/mnf.m3u8',
- id: 17078
- },
- {
- name: '游戏风云',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/yxfy/1300000/mnf.m3u8',
- id: 17079
- },
- {
- name: '金鹰卡通',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jykt/1300000/mnf.m3u8',
- id: 17080
- },
- {
- name: '炫动卡通',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/xdkt/1300000/mnf.m3u8',
- id: 17081
- },
- {
- name: '嘉佳卡通',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jjkt/1300000/mnf.m3u8',
- id: 17082
- },
- {
- name: '星尚',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/shss/1300000/mnf.m3u8',
- id: 17083
- },
- {
- name: '上海纪实',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/jspd/1300000/mnf.m3u8',
- id: 17084
- },
- {
- name: '上海新闻',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/xwzh/1300000/mnf.m3u8',
- id: 17085
- },
- {
- name: '上海娱乐',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ylpd/1300000/mnf.m3u8',
- id: 17086
- },
- {
- name: '上海电视剧',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dsjpd/1300000/mnf.m3u8',
- id: 17087
- },
- {
- name: '上海ICS外语频道',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/wypd/1300000/mnf.m3u8',
- id: 17088
- },
- {
- name: '上海艺术人文',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/ysrw/1300000/mnf.m3u8',
- id: 17089
- },
- {
- name: '东方财经浦东',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dfcj/1300000/mnf.m3u8',
- id: 17090
- },
- {
- name: '第一财经',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/dycj/1300000/mnf.m3u8',
- id: 17091
- },
- {
- name: '直播1-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba1/4000000/mnf.m3u8',
- id: 17092
- },
- {
- name: '直播2-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba2/4000000/mnf.m3u8',
- id: 17093
- },
- {
- name: '直播3-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba3/4000000/mnf.m3u8',
- id: 17094
- },
- {
- name: '直播4-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba4/4000000/mnf.m3u8',
- id: 17095
- },
- {
- name: '直播5-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba5/4000000/mnf.m3u8',
- id: 17096
- },
- {
- name: '直播6-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba6/4000000/mnf.m3u8',
- id: 17097
- },
- {
- name: '直播7-1080P',
- url: 'http://keonline.shanghai.liveplay.qq.com/live/program/live/hdnba7/4000000/mnf.m3u8',
- id: 17098
- },
- {
- name: '纯享4K源码1',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226825/1.m3u8',
- id: 17099
- },
- {
- name: '百事4K频道',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226718/index.m3u8',
- id: 17100
- },
- {
- name: '凤凰资讯',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226491/index.m3u8',
- id: 17101
- },
- {
- name: '凤凰资讯',
- url: 'http://117.169.124.37:6610/ysten-businessmobile/live/fhzixun/1.m3u8',
- id: 17102
- },
- {
- name: '凤凰中文',
- url: 'http://117.169.124.37:6610/ysten-businessmobile/live/fhchinese/1.m3u8',
- id: 17103
- },
- {
- name: '凤凰中文',
- url: 'http://117.169.120.138:8080/live/fhchinese/index.m3u8',
- id: 17104
- },
- {
- name: '高清影视1台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226736/1.m3u8',
- id: 17105
- },
- {
- name: '高清影视2台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225881/1.m3u8',
- id: 17106
- },
- {
- name: '高清影视3台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226708/1.m3u8',
- id: 17107
- },
- {
- name: '高清影视4台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226712/1.m3u8',
- id: 17108
- },
- {
- name: '高清影视5台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225893/1.m3u8',
- id: 17109
- },
- {
- name: '高清影视6台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226692/1.m3u8',
- id: 17110
- },
- {
- name: '高清影视7台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226754/1.m3u8',
- id: 17111
- },
- {
- name: '高清影视8台',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226608/index.m3u8',
- id: 17112
- },
- {
- name: '高清影视9台',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226606/index.m3u8',
- id: 17113
- },
- {
- name: '高清影视10台',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226360/index.m3u8',
- id: 17114
- },
- {
- name: '高清动画11台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226732/1.m3u8',
- id: 17115
- },
- {
- name: '高清动画12台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226741/1.m3u8',
- id: 17116
- },
- {
- name: '高清动漫13台',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226743/1.m3u8',
- id: 17117
- },
- {
- name: '高清影视14台',
- url: 'http://ivi.bupt.edu.cn/hls/chchd.m3u8',
- id: 17118
- },
- {
- name: '北京纪实高清',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225944/1.m3u8',
- id: 17119
- },
- {
- name: '峨眉电影高清',
- url: 'http://scgctvshow.sctv.com/hdlive/emei/1.m3u8',
- id: 17120
- },
- {
- name: '欢笑剧场高清',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226729/1.m3u8',
- id: 17121
- },
- {
- name: '纪实频道高清',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221225946/1.m3u8',
- id: 17122
- },
- {
- name: '极速汽车高清',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226140/1.m3u8',
- id: 17123
- },
- {
- name: '动漫秀场高清',
- url: 'http://112.50.243.8/PLTV/88888888/224/3221226141/1.m3u8',
- id: 17124
- },
- {
- name: '求索纪录',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226610/index.m3u8',
- id: 17125
- },
- {
- name: '求索科学',
- url: 'http://125.210.152.18:9090/live/QSKX_1200.m3u8',
- id: 17126
- },
- {
- name: '求索动物',
- url: 'http://125.210.152.18:9090/live/QSDW_1200.m3u8',
- id: 17127
- },
- {
- name: '求索生活',
- url: 'http://125.210.152.18:9090/live/QSSH_1200.m3u8',
- id: 17128
- },
- {
- name: '日本天気预报',
- url: 'http://movie.mcas.jp/mcas/wn1_2/master.m3u8',
- id: 17129
- },
- {
- name: '奥林匹克高清',
- url: 'http://ott-live.olympicchannel.com/out/u/OC1_2.m3u8?fluxustv.m3u8',
- id: 17130
- },
- {
- name: '奥铃匹克高清',
- url: 'http://ott-live.olympicchannel.com/out/u/OC1_1.m3u8?fluxustv.m3u8',
- id: 17131
- },
- {
- name: '爱青春',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230130/index.m3u8',
- id: 17132
- },
- {
- name: '爱家庭',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230118/index.m3u8',
- id: 17133
- },
- {
- name: '爱探索',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230112/index.m3u8',
- id: 17134
- },
- {
- name: '爱科学',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230106/index.m3u8',
- id: 17135
- },
- {
- name: '爱猎奇',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230097/index.m3u8',
- id: 17136
- },
- {
- name: '爱谍战',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230092/index.m3u8',
- id: 17137
- },
- {
- name: '爱娱乐',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230077/index.m3u8',
- id: 17138
- },
- {
- name: '爱旅行',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230052/index.m3u8',
- id: 17139
- },
- {
- name: '爱怀旧',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230049/index.m3u8',
- id: 17140
- },
- {
- name: '爱体育',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230034/index.m3u8',
- id: 17141
- },
- {
- name: '爱赛车',
- url: 'http://112.17.40.140/hwltc.tv.cdn.zj.chinamobile.com/PLTV/88888888/224/3221230032/index.m3u8',
- id: 17142
- },
- {
- name: '北京少儿',
- url: 'http://ivi.bupt.edu.cn/hls/btv10.m3u8',
- id: 17143
- },
- {
- name: '动漫电影',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226178/index.m3u8',
- id: 17144
- },
- {
- name: '重庆少儿',
- url: 'http://219.153.252.50/PLTV/88888888/224/3221225646/1.m3u8',
- id: 17145
- },
- {
- name: '嘉佳卡通',
- url: 'http://112.17.40.140/PLTV/88888888/224/3221226461/index.m3u8',
- id: 17146
- },
- {
- name: '耀才财经',
- url: 'http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8',
- id: 17147
- },
- {
- name: '亚旅卫视',
- url: 'http://hls.jingchangkan.tv/jingchangkan/156722438_0HaM/index.m3u8',
- id: 17148
- },
- {
- name: '信吉电视',
- url: 'http://220.130.241.203:1935/sjtv/livestream_360p/playlist.m3u8',
- id: 17149
- },
- {
- name: '唯心電視',
- url: 'http://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8',
- id: 17150
- },
- {
- name: '百事通台',
- url: 'http://112.17.40.145/PLTV/88888888/224/3221226596/index.m3u8',
- id: 17151
- },
- {
- name: 'HBO2台',
- url: 'http://161.0.157.5/PLTV/88888888/224/3221227026/03.m3u8?fluxustv.m3u8',
- id: 17152
- },
- {
- name: '点掌财经',
- url: 'http://cclive2.aniu.tv/live/anzb.m3u8',
- id: 17153
- },
- {
- name: '日本NHK华语',
- url: 'https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8',
- id: 17154
- },
- {
- name: '日本NHK英语',
- url: 'https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp/index_1M.m3u8',
- id: 17155
- },
- {
- name: '日本Japan News 24',
- url: 'http://www.news24.jp/livestream/index.m3u8',
- id: 17156
- },
- {
- name: '日本JapanetChannelDX',
- url: 'http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_1200.m3u8',
- id: 17157
- },
- {
- name: '日本QVC',
- url: 'http://cdn-live1.qvc.jp/iPhone/800/800.m3u8',
- id: 17158
- },
- {
- name: '韩国EBS 第一频道',
- url: 'http://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8',
- id: 17159
- },
- {
- name: '韩国EBS 少儿频道',
- url: 'http://ebsonairios.ebs.co.kr/ebsutablet500k/tablet500k/playlist.m3u8',
- id: 17160
- },
- {
- name: '韩国KCTV',
- url: 'http://119.77.96.184:1935/chn21/chn21/chunklist_w252131137.m3u8',
- id: 17161
- },
- {
- name: '朝鲜中央台',
- url: 'http://119.77.96.184:1935/chn05/chn05/chunklist_w644291506.m3u8',
- id: 17162
- },
- {
- name: '韩国KTV 韩国电视',
- url: 'http://218.38.152.31:1935/klive/klive.stream/playlist.m3u8',
- id: 17163
- },
- {
- name: '韩国EBS 儿童频道',
- url: 'http://ebsonairios.ebs.co.kr/ebsutablet500k/_definst_/tablet500k/chunklist_w1965791004.m3u8',
- id: 17164
- },
- {
- name: '韩国阿里郎WORLDworld',
- url: 'http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8',
- id: 17165
- },
- {
- name: '韩国阿里郎WORLD',
- url: 'http://amdlive.ctnd.com.edgesuite.net/arirang_1ch/smil:arirang_1ch/master.m3u8',
- id: 17166
- },
- {
- name: 'KOREA YTN Science',
- url: 'http://slive.sciencetv.kr:1935/science/yslive_20140419_1/playlist.m3u8',
- id: 17167
- },
- {
- name: 'Luxury World',
- url: 'http://nano.teleservice.su:8080/hls/luxury.m3u8',
- id: 17168
- },
- {
- name: '韩国BBS佛教广播',
- url: 'http://bbstv.clouducs.com:1935/bbstv-live/livestream/chunklist_w1403706733.m3u8',
- id: 17169
- },
- {
- name: 'CPAC',
- url: 'http://bcoveliveios-i.akamaihd.net/hls/live/248519/1242843915001_1/master.m3u8',
- id: 17170
- },
- {
- name: '中国环球',
- url: 'http://live.cgtn.com/1000/prog_index.m3u8',
- id: 17171
- },
- {
- name: '狗狗宠物',
- url: 'http://video.blivenyc.com/broadcast/prod/2061/22/file-3192k.m3u8',
- id: 17172
- },
- {
- name: '法国时尚',
- url: 'http://lb.streaming.sk/fashiontv/stream/chunklist_w1702070444.m3u8',
- id: 17173
- },
- {
- name: '亚洲新闻',
- url: 'http://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8',
- id: 17174
- },
- {
- name: '越南人民报',
- url: 'http://vietcago.net/vstv/thnd.m3u8',
- id: 17175
- },
- {
- name: '印度音乐电视',
- url: 'http://104.237.60.234/live/gabruutv.m3u8?dsjtv.m3u8',
- id: 17176
- },
- {
- name: '法国第五世界台',
- url: 'http://v3plusinfo247hls-i.akamaihd.net/hls/live/218877-b/v3plusinfo247hls/v3plusinfo247hls_1_1.m3u8',
- id: 17177
- },
- {
- name: '俄罗斯HD时尚频道',
- url: 'http://95.67.47.115/hls/hdfashion_ua_hi/index.m3u8',
- id: 17178
- },
- {
- name: '乌克兰M2 音乐频道',
- url: 'http://live.m2.tv/hls3/stream.m3u8',
- id: 17179
- },
- {
- name: '西班牙中国环球',
- url: 'http://livees.cgtn.com/1000e/prog_index.m3u8',
- id: 17180
- },
- {
- name: '意大利意大利电台',
- url: 'http://radioitaliatv-lh.akamaihd.net/i/radioitaliatv_1@329645/index_720x480_av-p.m3u8',
- id: 17181
- },
- {
- name: '意大利V2 音乐频道',
- url: 'http://de1se01.v2beat.live/playlist.m3u8',
- id: 17182
- },
- {
- name: '墨西哥墨西哥电视',
- url: 'http://bcoveliveios-i.akamaihd.net/hls/live/201661/57828478001/milenio_center_512k@51752.m3u8',
- id: 17183
- },
- {
- name: '音乐20TV',
- url: 'http://m2otv-lh.akamaihd.net/i/m2oTv_1@186074/index_600_av-p.m3u8',
- id: 17184
- },
- {
- name: '当红MTV',
- url: 'http://unilivemtveu-lh.akamaihd.net/i/mtvno_1@346424/index_3500_av-b.m3u8',
- id: 17185
- },
- {
- name: '酷酷频道',
- url: 'http://edge1.tikilive.com:1935/unrestricted_tikilive/25947/amlst:NWKlw6jwyXpz/chunklist_w981409619_b1105254.m3u8?fluxustv.m3u8',
- id: 17186
- },
- {
- name: '红牛电视',
- url: 'http://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master_1660.m3u8',
- id: 17187
- },
- {
- name: 'NBC电视',
- url: 'http://161.0.157.51/PLTV/88888888/224/3221227040/index.m3u8?fluxustv.m3u8',
- id: 17188
- },
- {
- name: 'Jewelry电视',
- url: 'http://wowzaprod134-i.akamaihd.net/hls/live/577814/ccddaf02/playlist.m3u8',
- id: 17189
- },
- {
- name: 'Darcizzle电视',
- url: 'http://30a-tv.com/darcizzle.m3u8',
- id: 17190
- },
- {
- name: 'CBS新闻',
- url: 'http://cbsnewshd-lh.akamaihd.net/i/CBSNHD_7@199302/master.m3u8',
- id: 17191
- },
- {
- name: '美国Deutsche Welle',
- url: 'http://dwstream4-lh.akamaihd.net/i/dwstream4_live@131329/master.m3u8',
- id: 17192
- },
- {
- name: '美国360 North',
- url: 'http://wowzaprod3-i.akamaihd.net/hls/live/252236/2147483647_360north_247/playlist.m3u8',
- id: 17193
- },
- {
- name: '美国Fox News Talk Radio',
- url: 'http://fnurtmp-f.akamaihd.net/i/FNRADIO_1@92141/master.m3u8',
- id: 17194
- },
- {
- name: '日本cgntv',
- url: 'http://cgntv-glive.ofsdelivery.net/live/_definst_/cgntv_jp/playlist.m3u8',
- id: 17195
- },
- {
- name: '日本Japanet Channel DX',
- url: 'http://bcsecurelivehls-i.akamaihd.net/hls/live/265320/5043843989001/140130JTDX/index_600.m3u8',
- id: 17196
- }
-]
-
-export {
- setting,
- sites,
- iptv,
- localKey,
- getSite
-}
diff --git a/src/lib/dexie/iptv.js b/src/lib/dexie/iptv.js
deleted file mode 100644
index 6a49027..0000000
--- a/src/lib/dexie/iptv.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import db from './dexie'
-const { iptv } = db
-export default {
- async all () {
- return await iptv.toArray()
- },
- async clear () {
- return await iptv.clear()
- },
- async add (doc) {
- return await iptv.add(doc)
- },
- async bulkAdd (doc) {
- return await iptv.bulkAdd(doc)
- },
- async find (doc) {
- return await iptv.get(doc)
- },
- async update (id, docs) {
- return await iptv.update(id, docs)
- },
- async remove (id) {
- return await iptv.delete(id)
- }
-}
diff --git a/src/lib/dexie/iptvSearch.js b/src/lib/dexie/iptvSearch.js
deleted file mode 100644
index 4e3a781..0000000
--- a/src/lib/dexie/iptvSearch.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import db from './dexie'
-const { iptvSearch } = db
-export default {
- async add (doc) {
- return await iptvSearch.add(doc)
- },
- async find (doc) {
- return await iptvSearch.get(doc)
- },
- async update (id, docs) {
- return await iptvSearch.update(id, docs)
- },
- async all () {
- return await iptvSearch.toArray()
- },
- async remove (id) {
- return await iptvSearch.delete(id)
- },
- async clear () {
- return await iptvSearch.clear()
- }
-}
diff --git a/src/lib/dexie/mini.js b/src/lib/dexie/mini.js
deleted file mode 100644
index 1957ddb..0000000
--- a/src/lib/dexie/mini.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import db from './dexie'
-const { mini } = db
-export default {
- async add (doc) {
- return await mini.add(doc)
- },
- async find () {
- return await mini.get({ id: 0 })
- },
- async update (docs) {
- return await mini.update(0, docs)
- }
-}
diff --git a/src/lib/dexie/search.js b/src/lib/dexie/search.js
deleted file mode 100644
index 9099cd4..0000000
--- a/src/lib/dexie/search.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import db from './dexie'
-const { search } = db
-export default {
- async add (doc) {
- return await search.add(doc)
- },
- async find (doc) {
- return await search.get(doc)
- },
- async update (id, docs) {
- return await search.update(id, docs)
- },
- async all () {
- return await search.toArray()
- },
- async remove (id) {
- return await search.delete(id)
- },
- async clear () {
- return await search.clear()
- }
-}
diff --git a/src/lib/dexie/setting.js b/src/lib/dexie/setting.js
deleted file mode 100644
index 649f68b..0000000
--- a/src/lib/dexie/setting.js
+++ /dev/null
@@ -1,11 +0,0 @@
-import db from './dexie'
-const { setting } = db
-
-export default {
- async find () {
- return await setting.get({ id: 0 })
- },
- async update (docs) {
- return await setting.update(0, docs)
- }
-}
diff --git a/src/lib/dexie/shortcut.js b/src/lib/dexie/shortcut.js
deleted file mode 100644
index 9404f35..0000000
--- a/src/lib/dexie/shortcut.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import db from './dexie'
-const { shortcut } = db
-
-export default {
- async all () {
- return await shortcut.toArray()
- },
- async clear () {
- return await shortcut.clear()
- },
- async add (doc) {
- return await shortcut.bulkAdd(doc)
- }
-}
diff --git a/src/lib/dexie/sites.js b/src/lib/dexie/sites.js
deleted file mode 100644
index 9b8db1c..0000000
--- a/src/lib/dexie/sites.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import db from './dexie'
-const { sites } = db
-export default {
- async all () {
- return await sites.toArray()
- },
- async clear () {
- return await sites.clear()
- },
- async bulkAdd (doc) {
- return await sites.bulkAdd(doc)
- },
- async find (doc) {
- return await sites.get(doc)
- },
- async add (doc) {
- return await sites.add(doc)
- },
- async remove (id) {
- return await sites.delete(id)
- }
-}
diff --git a/src/lib/dexie/star.js b/src/lib/dexie/star.js
deleted file mode 100644
index f0bc0d7..0000000
--- a/src/lib/dexie/star.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import db from './dexie'
-const { star } = db
-export default {
- async add (doc) {
- return await star.add(doc)
- },
- async bulkAdd (doc) {
- return await star.bulkAdd(doc)
- },
- async find (doc) {
- return await star.get(doc)
- },
- async update (id, docs) {
- return await star.update(id, docs)
- },
- async all () {
- return await star.toArray()
- },
- async remove (id) {
- return await star.delete(id)
- },
- async get (id) {
- return await star.get(id)
- },
- async clear () {
- return await star.clear()
- }
-}
diff --git a/src/lib/element/index.js b/src/lib/element/index.js
deleted file mode 100644
index fceffe3..0000000
--- a/src/lib/element/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import Vue from 'vue'
-import { Message } from 'element-ui'
-Vue.prototype.$message = Message
diff --git a/src/lib/site/onlineVideo.js b/src/lib/site/onlineVideo.js
deleted file mode 100644
index caaaa47..0000000
--- a/src/lib/site/onlineVideo.js
+++ /dev/null
@@ -1,219 +0,0 @@
-import open from 'open'
-import axios from 'axios'
-import cheerio from 'cheerio'
-
-const onlineVideo = {
- playVideoOnBde4 (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `https://bde4.com/search/${videoName}`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('div.search-list')
- var searchResult = $(e).find('div>div>div>div>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).attr('title')
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- var detailPageFullLink = 'https://bde4.com/' + detailPageLink
- // 解析详情页面
- axios.get(detailPageFullLink).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('div.info1')
- var videoList = $(e).find('a').toArray()
- var videoFullLink = detailPageFullLink
- // 获取index视频链接
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- if (indexVideoLink.includes('.htm')) {
- videoFullLink = 'https://bde4.com' + indexVideoLink
- }
- }
- open(videoFullLink)
- })
- }
- })
- },
- playVideoOnK1080 (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `https://k1080.net/vodsearch123/-------------.html?wd=${videoName}&submit=`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('#searchList')
- var searchResult = $(e).find('li>div>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).attr('title')
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- // 解析详情页面
- var detailPageFullLink = 'https://k1080.net' + detailPageLink
- axios.get(detailPageFullLink).then(res2 => {
- const $ = cheerio.load(res2.data)
- // 获取playlist1
- var e = $('#playlist1')
- // 获取所有视频链接
- var videoList = $(e).find('div>ul>li>a').toArray()
- var videoFullLink = detailPageFullLink
- // 获取index视频链接
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- if (indexVideoLink.includes('.htm')) {
- videoFullLink = 'https://k1080.net' + indexVideoLink
- }
- }
- open(videoFullLink)
- })
- }
- })
- },
- playVideoOnSubaibai (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `https://www.subaibai.com/xssearch?q=${videoName}`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('div.search_list')
- var searchResult = $(e).find('div>ul>li>h3>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).text()
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- // 解析详情页面
- var detailPageFullLink = detailPageLink
- axios.get(detailPageFullLink).then(res2 => {
- const $ = cheerio.load(res2.data)
- // 获取playlist1
- var e = $('div.paly_list_btn')
- // 获取所有视频链接
- var videoList = $(e).find('a').toArray()
- // 获取index视频链接
- var videoFullLink = detailPageFullLink
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- if (indexVideoLink.includes('.htm')) {
- videoFullLink = indexVideoLink
- }
- }
- open(videoFullLink)
- })
- }
- })
- },
- playVideoOnYhdm (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `http://www.yhdm.tv/search/${videoName}`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('div.lpic')
- var searchResult = $(e).find('div>ul>li>h2>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).attr('title')
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- // 解析详情页面
- var detailPageFullLink = 'http://www.yhdm.tv/' + detailPageLink
- axios.get(detailPageFullLink).then(res2 => {
- const $ = cheerio.load(res2.data)
- // 获取playlist1
- var e = $('div.movurl')
- // 获取所有视频链接
- var videoList = $(e).find('div>ul>li>a').toArray()
- // 获取index视频链接
- var videoFullLink = detailPageFullLink
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- if (indexVideoLink.includes('.htm')) {
- videoFullLink = 'http://www.yhdm.tv/' + indexVideoLink
- }
- }
- open(videoFullLink)
- })
- }
- })
- },
- playVideoOndmdm2020 (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `http://www.dmdm2020.com/dongmansearch.html?wd=${videoName}&submit=`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('#searchList')
- var searchResult = $(e).find('ul>li>div>h4>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).text()
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- // 解析详情页面
- var detailPageFullLink = 'http://www.dmdm2020.com' + detailPageLink
- axios.get(detailPageFullLink).then(res2 => {
- const $ = cheerio.load(res2.data)
- // 获取playlist1
- var e = $('#playlist1')
- // 获取所有视频链接
- var videoList = $(e).find('div>ul>li>a').toArray()
- // 获取index视频链接
- var videoFullLink = detailPageFullLink
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- if (indexVideoLink.includes('.htm')) {
- videoFullLink = 'http://www.dmdm2020.com' + indexVideoLink
- }
- }
- open(videoFullLink)
- })
- }
- })
- },
- playVideoOnSyrme (videoName, videoIndex) {
- videoName = videoName.replace(/\s/g, '')
- var url = `https://syrme.top/searchs?q=${videoName}`
- axios.get(url).then(res => {
- const $ = cheerio.load(res.data)
- var e = $('ul.MovieList')
- var searchResult = $(e).find('ul>li>article>a').toArray()
- // 获取第一个搜索结果的视频链接
- var detailPageLink = $(searchResult[0]).attr('href')
- // 获取第一个搜索结果的title
- var title = $(searchResult[0]).find('a>h2').text()
- if (title === null || title === undefined || !title.replace(/\s/g, '').includes(videoName)) {
- // 如果第一个搜索结果不符合,打开搜索页面
- open(url)
- } else {
- // 解析详情页面
- var detailPageFullLink = 'https://syrme.top' + detailPageLink
- axios.get(detailPageFullLink).then(res2 => {
- const $ = cheerio.load(res2.data)
- // 获取playlist1
- var e = $('#categories-2')
- // 获取所有视频链接
- var videoList = $(e).find('div>ul>li>a').toArray()
- // 获取index视频链接
- var videoFullLink = detailPageFullLink
- if (videoIndex < videoList.length) {
- var indexVideoLink = $(videoList[videoIndex]).attr('href')
- videoFullLink = 'https://syrme.top' + indexVideoLink
- }
- open(videoFullLink)
- })
- }
- })
- }
-}
-export default onlineVideo
diff --git a/src/lib/site/server.js b/src/lib/site/server.js
deleted file mode 100644
index 4c49dfe..0000000
--- a/src/lib/site/server.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import express from 'express'
-import cors from 'cors'
-const Axios = require('axios')
-
-const app = express()
-app.use(cors())
-app.use(express.json())
-app.use(express.urlencoded({ extended: true }))
-
-app.post('/api', async (req, res) => {
- const result = await Axios.get(req.body.url)
- res.json({
- code: 1,
- info: result.data
- })
-})
-
-app.listen(44444)
diff --git a/src/lib/site/tools.js b/src/lib/site/tools.js
deleted file mode 100644
index 3bfc384..0000000
--- a/src/lib/site/tools.js
+++ /dev/null
@@ -1,199 +0,0 @@
-import { sites } from '../dexie'
-import axios from 'axios'
-import parser from 'fast-xml-parser'
-const zy = {
- xmlConfig: { // XML 转 JSON 配置
- trimValues: true,
- textNodeName: '_t',
- ignoreAttributes: false,
- attributeNamePrefix: '_',
- parseAttributeValue: true
- },
- getSite (key) {
- return new Promise((resolve, reject) => {
- sites.all().then(res => {
- for (const i of res) {
- if (key === i.key) {
- resolve(i)
- }
- }
- }).catch(err => {
- reject(err)
- })
- })
- },
- /**
- * 获取资源分类 和 所有资源的总数, 分页等信息
- * @param {*} key 资源网 key
- * @returns
- */
- class (key) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const url = res.api
- axios.post(url).then(res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- const arr = []
- if (json.rss.class) {
- for (const i of json.rss.class.ty) {
- const j = {
- tid: i._id,
- name: i._t
- }
- arr.push(j)
- }
- }
- const doc = {
- class: arr,
- page: json.rss.list._page,
- pagecount: json.rss.list._pagecount,
- pagesize: json.rss.list._pagesize,
- recordcount: json.rss.list._recordcount
- }
- resolve(doc)
- }).catch(err => {
- reject(err)
- })
- })
- })
- },
- /**
- * 获取资源列表
- * @param {*} key 资源网 key
- * @param {number} [pg=1] 翻页 page
- * @param {*} t 分类 type
- * @returns
- */
- list (key, pg = 1, t) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const site = res
- let url = null
- if (t) {
- url = `${site.api}?ac=videolist&t=${t}&pg=${pg}`
- } else {
- url = `${site.api}?ac=videolist&pg=${pg}`
- }
- axios.post(url).then(async res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- const videoList = json.rss.list.video
- resolve(videoList)
- }).catch(err => {
- reject(err)
- })
- })
- })
- },
- /**
- * 获取总资源数, 以及页数
- * @param {*} key 资源网
- * @param {*} t 分类 type
- * @returns page object
- */
- page (key, t) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const site = res
- let url = ''
- if (t) {
- url = `${site.api}?ac=videolist&t=${t}`
- } else {
- url = `${site.api}?ac=videolist`
- }
- axios.post(url).then(async res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- const pg = {
- page: json.rss.list._page,
- pagecount: json.rss.list._pagecount,
- pagesize: json.rss.list._pagesize,
- recordcount: json.rss.list._recordcount
- }
- resolve(pg)
- }).catch(err => {
- reject(err)
- })
- })
- })
- },
- /**
- * 搜索资源
- * @param {*} key 资源网 key
- * @param {*} wd 搜索关键字
- * @returns
- */
- search (key, wd) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const site = res
- wd = encodeURI(wd)
- var url = `${site.api}?wd=${wd}`
- axios.post(url, { timeout: 3000 }).then(res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- if (json && json.rss && json.rss.list) {
- const videoList = json.rss.list.video
- resolve(videoList)
- }
- }).catch(err => {
- reject(err)
- })
- }).catch(err => {
- reject(err)
- })
- })
- },
- /**
- * 获取资源详情
- * @param {*} key 资源网 key
- * @param {*} id 资源唯一标识符 id
- * @returns
- */
- detail (key, id) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const url = `${res.api}?ac=videolist&ids=${id}`
- axios.post(url).then(res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- const videoList = json.rss.list.video
- resolve(videoList)
- }).catch(err => {
- reject(err)
- })
- }).catch(err => {
- reject(err)
- })
- })
- },
- /**
- * 下载资源
- * @param {*} key 资源网 key
- * @param {*} id 资源唯一标识符 id
- * @returns
- */
- download (key, id) {
- return new Promise((resolve, reject) => {
- this.getSite(key).then(res => {
- const site = res
- const url = `${site.download}?ac=videolist&ids=${id}&ct=1`
- if (url) {
- axios.post(url).then(res => {
- const data = res.data
- const json = parser.parse(data, this.xmlConfig)
- const videoList = json.rss.list.video
- resolve(videoList)
- }).catch(err => {
- reject(err)
- })
- } else {
- resolve([])
- }
- })
- })
- }
-}
-
-export default zy
diff --git a/src/main.js b/src/main.js
deleted file mode 100644
index 7962b64..0000000
--- a/src/main.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import Vue from 'vue'
-import App from './App.vue'
-import store from './store'
-import 'modern-normalize'
-import Register from './components/register'
-import './lib/element/index'
-Register.registerComponents()
-Vue.config.productionTip = false
-new Vue({
- store,
- render: h => h(App)
-}).$mount('#app')
diff --git a/src/mini/Mini.vue b/src/mini/Mini.vue
deleted file mode 100644
index fab6f7d..0000000
--- a/src/mini/Mini.vue
+++ /dev/null
@@ -1,524 +0,0 @@
-
-
-
-
-
- 『第 {{(video.index + 1)}} 集』 {{name}}
-
-
-
- 上一集
-
-
-
-
-
- 下一集
-
-
-
-
透明度: {{opacity}}
-
播放速率: {{rate}}
-
播放进度: {{progress}}%
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mini/main.js b/src/mini/main.js
deleted file mode 100644
index a873074..0000000
--- a/src/mini/main.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import Vue from 'vue'
-import Mini from './Mini'
-import 'modern-normalize'
-import '../lib/element/index'
-
-Vue.config.productionTip = false
-
-new Vue({
- render: h => h(Mini)
-}).$mount('#app')
diff --git a/src/store/index.js b/src/store/index.js
deleted file mode 100644
index 37d8863..0000000
--- a/src/store/index.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import Vue from 'vue'
-import Vuex from 'vuex'
-
-Vue.use(Vuex)
-
-export default new Vuex.Store({
- state: {
- view: 'Film',
- setting: {
- theme: 'light',
- site: 'zuidazy',
- view: 'picture',
- shortcut: true
- },
- detail: {
- show: false,
- key: '',
- info: {}
- },
- share: {
- show: false,
- key: '',
- info: {}
- },
- video: {
- key: '',
- info: {}
- },
- editSites: {
- show: false,
- sites: []
- }
- },
- getters: {
- getView: state => {
- return state.view
- },
- getSetting: state => {
- return state.setting
- },
- getDetail: state => {
- return state.detail
- },
- getShare: state => {
- return state.share
- },
- getVideo: state => {
- return state.video
- },
- getEditSites: state => {
- return state.editSites
- }
- },
- mutations: {
- SET_VIEW: (state, payload) => {
- state.view = payload
- },
- SET_SETTING: (state, payload) => {
- state.setting = payload
- },
- SET_DETAIL: (state, payload) => {
- state.detail = payload
- },
- SET_SHARE: (state, payload) => {
- state.share = payload
- },
- SET_VIDEO: (state, payload) => {
- state.video = payload
- },
- SET_EDITSITES: (state, payload) => {
- state.editSites = payload
- }
- }
-})
diff --git a/vue.config.js b/vue.config.js
deleted file mode 100644
index 2844ad1..0000000
--- a/vue.config.js
+++ /dev/null
@@ -1,45 +0,0 @@
-module.exports = {
- pages: {
- index: 'src/main.js',
- mini: 'src/mini/main.js'
- },
- pluginOptions: {
- electronBuilder: {
- nodeIntegration: true,
- builderOptions: {
- nsis: {
- oneClick: false,
- allowToChangeInstallationDirectory: true
- },
- appId: 'com.hunlongyu.zy',
- copyright: 'Copyright @ 2020 Hunlongyu',
- productName: 'ZY Player',
- publish: [
- {
- provider: 'github',
- owner: 'Hunlongyu',
- repo: 'ZY-Player'
- }
- ],
- mac: {
- icon: 'build/icon/icon.icns',
- category: 'public.app-category.developer-tools',
- target: 'default',
- extendInfo: {
- LSUIElement: 1
- }
- },
- win: {
- icon: 'build/icons/icon.ico',
- target: 'nsis'
- },
- linux: {
- icon: 'build/icons/'
- },
- snap: {
- publish: ['github']
- }
- }
- }
- }
-}