diff --git a/plugin.video.alfa/channels/animeyt.json b/plugin.video.alfa/channels/animeyt.json
new file mode 100644
index 00000000..d5672f1a
--- /dev/null
+++ b/plugin.video.alfa/channels/animeyt.json
@@ -0,0 +1,36 @@
+{
+ "id": "animeyt",
+ "name": "AnimeYT",
+ "active": true,
+ "adult": false,
+ "language": "es",
+ "thumbnail": "http://i.imgur.com/dHpupFk.png",
+ "version": 1,
+ "changes": [
+ {
+ "date": "17/05/2017",
+ "description": "Fix novedades y replace en findvideos"
+ }
+ ],
+ "categories": [
+ "anime"
+ ],
+ "settings": [
+ {
+ "id": "include_in_global_search",
+ "type": "bool",
+ "label": "Incluir en busqueda global",
+ "default": false,
+ "enabled": true,
+ "visible": true
+ },
+ {
+ "id": "modo_grafico",
+ "type": "bool",
+ "label": "información extra",
+ "default": true,
+ "enabled": true,
+ "visible": true
+ }
+ ]
+}
diff --git a/plugin.video.alfa/channels/animeyt.py b/plugin.video.alfa/channels/animeyt.py
new file mode 100644
index 00000000..bae04053
--- /dev/null
+++ b/plugin.video.alfa/channels/animeyt.py
@@ -0,0 +1,187 @@
+# -*- coding: utf-8 -*-
+
+import re
+import urlparse
+
+
+from core import httptools
+from core import scrapertools
+from core import servertools
+from core.item import Item
+from core import tmdb
+from platformcode import config,logger
+
+__modo_grafico__ = config.get_setting('modo_grafico', 'animeyt')
+
+HOST = "http://animeyt.tv/"
+
+def mainlist(item):
+ logger.info()
+
+ itemlist = list()
+
+ itemlist.append(Item(channel=item.channel, title="Novedades", action="novedades", url=HOST))
+
+ itemlist.append(Item(channel=item.channel, title="Recientes", action="recientes", url=HOST))
+
+ itemlist.append(Item(channel=item.channel, title="Alfabético", action="alfabetico", url=HOST))
+
+ itemlist.append(Item(channel=item.channel, title="Búsqueda", action="search", url=urlparse.urljoin(HOST, "busqueda?terminos=")))
+
+
+ return itemlist
+
+
+def novedades(item):
+ logger.info()
+ itemlist = list()
+ if not item.pagina:
+ item.pagina = 0
+
+ data = httptools.downloadpage(item.url).data
+ data = re.sub(r"\n|\r|\t| |
", "", data)
+
+ patron_novedades = '