diff --git a/plugin.video.alfa/channels/todopeliculas.json b/plugin.video.alfa/channels/todopeliculas.json
new file mode 100644
index 00000000..2e0087a5
--- /dev/null
+++ b/plugin.video.alfa/channels/todopeliculas.json
@@ -0,0 +1,44 @@
+{
+ "id": "todopeliculas",
+ "name": "TodoPeliculas",
+ "active": true,
+ "adult": false,
+ "language": ["cast"],
+ "thumbnail": "http://www.todo-peliculas.com/images/logo.png",
+ "banner": "",
+ "version": 1,
+ "categories": [
+ "movie",
+ "torrent"
+ ],
+ "settings": [
+ {
+ "id": "include_in_global_search",
+ "type": "bool",
+ "label": "Incluir en busqueda global",
+ "default": false,
+ "enabled": false,
+ "visible": false
+ },
+ {
+ "id": "filter_languages",
+ "type": "list",
+ "label": "Mostrar enlaces en idioma...",
+ "default": 0,
+ "enabled": true,
+ "visible": true,
+ "lvalues": [
+ "No filtrar",
+ "Castellano"
+ ]
+ },
+ {
+ "id": "include_in_newest_peliculas",
+ "type": "bool",
+ "label": "Incluir en Novedades - Peliculas",
+ "default": true,
+ "enabled": true,
+ "visible": true
+ }
+ ]
+}
\ No newline at end of file
diff --git a/plugin.video.alfa/channels/todopeliculas.py b/plugin.video.alfa/channels/todopeliculas.py
new file mode 100644
index 00000000..c6d4781c
--- /dev/null
+++ b/plugin.video.alfa/channels/todopeliculas.py
@@ -0,0 +1,172 @@
+# -*- coding: utf-8 -*-
+# -*- Channel TodoPeliculas -*-
+# -*- Created for Alfa-addon -*-
+# -*- By the Alfa Develop Group -*-
+
+import re
+from core import httptools
+from core import scrapertools
+from core.item import Item
+from channels import filtertools
+from channels import autoplay
+from platformcode import config, logger
+
+
+IDIOMAS = {'cast': 'Castellano'}
+list_language = IDIOMAS.values()
+list_quality = []
+list_servers = ['torrent']
+
+host = 'http://www.todo-peliculas.com/'
+
+
+def mainlist(item):
+ logger.info()
+
+ autoplay.init(item.channel, list_servers, list_quality)
+
+ itemlist = list()
+ itemlist.append(item.clone(title="Ultimas", action="list_all", url=host+'torrents'))
+ itemlist.append(item.clone(title="Por Calidad", action="section", url=host))
+ itemlist.append(item.clone(title="Buscar", action="search", url=host+'buscar?searchword='))
+
+ autoplay.show_option(item.channel, itemlist)
+
+ return itemlist
+
+
+def get_source(url):
+ logger.info()
+ data = httptools.downloadpage(url).data
+ data = re.sub(r'"|\n|\r|\t| |
|\s{2,}', "", data)
+ return data
+
+
+def list_all(item):
+ logger.info()
+ itemlist = []
+
+ data = get_source(item.url)
+ if item.type == 'buscar':
+ patron = '