diff --git a/src/index.ts b/src/index.ts index bfb47aa..23b32f4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ import express, { NextFunction, Request, Response } from 'express'; import { v4 as uuidv4 } from 'uuid'; import winston from 'winston'; -import { CineHDPlus, Eurostreaming, Frembed, FrenchCloud, Source, KinoGer, MeineCloud, MostraGuarda, Soaper, StreamKiste, VerHdLink, VidSrc } from './source'; +import { CineHDPlus, Cuevana, Eurostreaming, Frembed, FrenchCloud, Source, KinoGer, MeineCloud, MostraGuarda, Soaper, StreamKiste, VerHdLink, VidSrc } from './source'; import { createExtractors, ExtractorRegistry } from './extractor'; import { ConfigureController, ManifestController, StreamController } from './controller'; import { envGet, envIsProd, Fetcher, StreamResolver, tmdbFetch, TmdbId } from './utils'; @@ -25,6 +25,7 @@ const sources: Source[] = [ new VidSrc(fetcher), // ES / MX new CineHDPlus(fetcher), + new Cuevana(fetcher), new VerHdLink(fetcher), // DE new KinoGer(fetcher), diff --git a/src/source/Cuevana.test.ts b/src/source/Cuevana.test.ts new file mode 100644 index 0000000..7bb7e40 --- /dev/null +++ b/src/source/Cuevana.test.ts @@ -0,0 +1,38 @@ +import { Cuevana } from './Cuevana'; +import { FetcherMock, TmdbId } from '../utils'; +import { Context } from '../types'; + +const ctx: Context = { id: 'id', ip: '127.0.0.1', config: { es: 'on', mx: 'on' } }; + +describe('Cuevana', () => { + let handler: Cuevana; + + beforeEach(() => { + handler = new Cuevana(new FetcherMock(`${__dirname}/__fixtures__/Cuevana`)); + }); + + test('handles non-existent series gracefully', async () => { + const streams = await handler.handle(ctx, 'series', new TmdbId(61945, 1, 1)); + expect(streams).toHaveLength(0); + }); + + test('handles non-existent episodes gracefully', async () => { + const streams = await handler.handle(ctx, 'series', new TmdbId(1402, 1, 99)); + expect(streams).toHaveLength(0); + }); + + test('handle walking dead s1e1', async () => { + const streams = await handler.handle(ctx, 'series', new TmdbId(1402, 1, 1)); + expect(streams).toMatchSnapshot(); + }); + + test('handle la frontera s1e1', async () => { + const streams = await handler.handle(ctx, 'series', new TmdbId(274980, 1, 1)); + expect(streams).toMatchSnapshot(); + }); + + test('handle el camino', async () => { + const streams = await handler.handle(ctx, 'movie', new TmdbId(559969, undefined, undefined)); + expect(streams).toMatchSnapshot(); + }); +}); diff --git a/src/source/Cuevana.ts b/src/source/Cuevana.ts new file mode 100644 index 0000000..0a0d90c --- /dev/null +++ b/src/source/Cuevana.ts @@ -0,0 +1,109 @@ +import { ContentType } from 'stremio-addon-sdk'; +import * as cheerio from 'cheerio'; +import { Source, SourceResult } from './types'; +import { Fetcher, getTmdbId, getTmdbMovieDetails, getTmdbTvDetails, Id, TmdbId } from '../utils'; +import { Context, CountryCode } from '../types'; + +export class Cuevana implements Source { + public readonly id = 'cuevana'; + + public readonly label = 'Cuevana'; + + public readonly contentTypes: ContentType[] = ['movie', 'series']; + + public readonly countryCodes: CountryCode[] = [CountryCode.es, CountryCode.mx]; + + private readonly fetcher: Fetcher; + + public constructor(fetcher: Fetcher) { + this.fetcher = fetcher; + } + + public async handle(ctx: Context, _type: string, id: Id): Promise { + const tmdbId = await getTmdbId(ctx, this.fetcher, id); + + const name = tmdbId.season + ? (await getTmdbTvDetails(ctx, this.fetcher, tmdbId, 'es')).name + : (await getTmdbMovieDetails(ctx, this.fetcher, tmdbId, 'es')).title; + + const pageUrl = await this.fetchPageUrl(ctx, name); + if (!pageUrl) { + return []; + } + + let title: string = name; + let html: string; + + if (tmdbId.season) { + title += ` ${tmdbId.season}x${tmdbId.episode}`; + + const episodeUrl = await this.fetchEpisodeUrl(ctx, pageUrl, tmdbId); + if (!episodeUrl) { + return []; + } + + html = await this.fetcher.text(ctx, episodeUrl); + } else { + html = await this.fetcher.text(ctx, pageUrl); + } + + const $ = cheerio.load(html); + + const urlResults = $('.open_submenu') + .map((_i, el) => { + if ($(el).text().includes('Español Latino') && CountryCode.mx in ctx.config) { + return $('[data-tr], [data-video]', el) + .map((_i, el) => ({ countryCode: CountryCode.mx, title, url: new URL($(el).attr('data-tr') ?? $(el).attr('data-video') as string) })) + .toArray(); + } else if ($(el).text().includes('Español') && CountryCode.es in ctx.config) { + return $('[data-tr], [data-video]', el) + .map((_i, el) => ({ countryCode: CountryCode.es, title, url: new URL($(el).attr('data-tr') ?? $(el).attr('data-video') as string) })) + .toArray(); + } else { + return []; + } + }) + .toArray(); + + return Promise.all( + urlResults.map(async (urlResult) => { + if (!urlResult.url.host.includes('cuevana3')) { + return urlResult; + } + + const html = await this.fetcher.text(ctx, urlResult.url, { headers: { Referer: pageUrl.origin } }); + + const urlMatcher = html.match(/url ?= ?'(.*)'/) as string[]; + + return { ...urlResult, url: new URL(urlMatcher[1] as string) }; + }), + ); + }; + + private async fetchPageUrl(ctx: Context, keyword: string): Promise { + const searchUrl = new URL(`https://ww1.cuevana3.is/search/${encodeURIComponent(keyword)}/`); + const html = await this.fetcher.text(ctx, searchUrl, { headers: { Referer: searchUrl.origin } }); + + const $ = cheerio.load(html); + + const urlPath = $('.TPost .Title') + .filter((_i, el) => $(el).text().trim() === keyword) + .closest('a') + .attr('href'); + + return urlPath !== undefined ? new URL(urlPath, searchUrl.origin) : urlPath; + }; + + private async fetchEpisodeUrl(ctx: Context, pageUrl: URL, tmdbId: TmdbId): Promise { + const html = await this.fetcher.text(ctx, pageUrl, { headers: { Referer: pageUrl.origin } }); + + const $ = cheerio.load(html); + + const urlPath = $('.TPost .Year') + .filter((_i, el) => $(el).text().trim() === `${tmdbId.season}x${tmdbId.episode}`) + .closest('a') + .attr('href'); + + return urlPath !== undefined ? new URL(urlPath, pageUrl.origin) : urlPath; + } +} diff --git a/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3movie559969languagees b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3movie559969languagees new file mode 100644 index 0000000..ce82216 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3movie559969languagees @@ -0,0 +1 @@ +{"adult":false,"backdrop_path":"/uLXK1LQM28XovWHPao3ViTeggXA.jpg","belongs_to_collection":null,"budget":0,"genres":[{"id":80,"name":"Crimen"},{"id":18,"name":"Drama"},{"id":53,"name":"Suspense"}],"homepage":"https://www.netflix.com/es/title/81078819","id":559969,"imdb_id":"tt9243946","origin_country":["US"],"original_language":"en","original_title":"El Camino: A Breaking Bad Movie","overview":"Tiempo después de los eventos sucedidos tras el último episodio de la serie \"Breaking Bad\", el fugitivo Jesse Pinkman (Aaron Paul) huye de sus perseguidores, de la ley y de su pasado.","popularity":6.291,"poster_path":"/hoWADuvXs3Ua4AXBAiZYnppTupO.jpg","production_companies":[{"id":11073,"logo_path":"/aCbASRcI1MI7DXjPbSW9Fcv9uGR.png","name":"Sony Pictures Television","origin_country":"US"},{"id":2605,"logo_path":null,"name":"Gran Via Productions","origin_country":"US"},{"id":33742,"logo_path":"/2jdh2sEa0R6y6uT0F7g0IgA2WO8.png","name":"High Bridge Productions","origin_country":"US"}],"production_countries":[{"iso_3166_1":"US","name":"United States of America"}],"release_date":"2019-10-11","revenue":0,"runtime":123,"spoken_languages":[{"english_name":"English","iso_639_1":"en","name":"English"}],"status":"Released","tagline":"","title":"El Camino: Una película de Breaking Bad","video":false,"vote_average":6.962,"vote_count":5092} \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv1402languagees b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv1402languagees new file mode 100644 index 0000000..3313889 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv1402languagees @@ -0,0 +1 @@ +{"adult":false,"backdrop_path":"/rAOjnEFTuNysY7bot8zonhImGMh.jpg","created_by":[{"id":4027,"credit_id":"5256cb3f19c2956ff605e5de","name":"Frank Darabont","original_name":"Frank Darabont","gender":2,"profile_path":"/vZ50guP86otYTiBSGfi35GNHWVf.jpg"}],"episode_run_time":[],"first_air_date":"2010-10-31","genres":[{"id":10759,"name":"Action & Adventure"},{"id":18,"name":"Drama"},{"id":10765,"name":"Sci-Fi & Fantasy"}],"homepage":"http://www.amc.com/shows/the-walking-dead--1002293","id":1402,"in_production":false,"languages":["en"],"last_air_date":"2022-11-20","last_episode_to_air":{"id":3979137,"name":"Descansa en paz","overview":"Daryl y Carol llevan a Judith al hospital; Rosita, Eugene y Gabriel buscan a Coco; Maggie y Negan toman las armas contra Pamela; los héroes se reúnen para una última batalla.","vote_average":8.7,"vote_count":80,"air_date":"2022-11-20","episode_number":24,"episode_type":"finale","production_code":"","runtime":65,"season_number":11,"show_id":1402,"still_path":"/8BUXYeIeRajrgfJawYXCPAMwzkw.jpg"},"name":"The Walking Dead","next_episode_to_air":null,"networks":[{"id":174,"logo_path":"/pmvRmATOCaDykE6JrVoeYxlFHw3.png","name":"AMC","origin_country":"US"}],"number_of_episodes":177,"number_of_seasons":11,"origin_country":["US"],"original_language":"en","original_name":"The Walking Dead","overview":"\"The Walking Dead\" está ambientada en un futuro apocalíptico con la Tierra devastada por el efecto de un cataclismo, que ha provocado la mutación en zombies de la mayor parte de los habitantes del planeta. La serie, explora las dificultades de los protagonistas para sobrevivir en un mundo poblado por el horror, así como las relaciones personales que se establecen entre ellos, en ocasiones también una amenaza para su supervivencia.","popularity":160.1567,"poster_path":"/hUblG1KZCTRpHc3wqqoU0DW98Q3.jpg","production_companies":[{"id":23242,"logo_path":"/ucE6dN6pUPfZHH5JlXkq44TDUMS.png","name":"AMC Studios","origin_country":"US"},{"id":23921,"logo_path":"/simDvqT8y6jhP530ggUMbikvVKc.png","name":"Circle of Confusion","origin_country":"US"},{"id":11533,"logo_path":"/tWM9pmzVYxok4GbQIttxdcml1yT.png","name":"Valhalla Motion Pictures","origin_country":"US"},{"id":3982,"logo_path":"/bli7HkPOXOEWsDwDK0W7XXfeUU2.png","name":"Darkwoods Productions","origin_country":"US"},{"id":50032,"logo_path":"/ojrMksdtR7Bs2vwERU1LCrjv7vx.png","name":"Skybound Entertainment","origin_country":"US"},{"id":170794,"logo_path":null,"name":"Idiotbox","origin_country":"US"}],"production_countries":[{"iso_3166_1":"US","name":"United States of America"}],"seasons":[{"air_date":"2010-10-11","episode_count":82,"id":3646,"name":"Especiales","overview":"","poster_path":"/yNQlx9uKgqGjH1g1lP2YOMPAwfC.jpg","season_number":0,"vote_average":0.0},{"air_date":"2010-10-31","episode_count":6,"id":3643,"name":"Temporada 1","overview":"En un mundo devastado por un apocalipsis zombi, un variopinto grupo de supervivientes se unen para permanecer a salvo y obtener respuestas dentro de los muros del CCE.","poster_path":"/5eL2Bym6NZdTLs4unoinAQZsDbB.jpg","season_number":1,"vote_average":8.4},{"air_date":"2011-10-16","episode_count":13,"id":3644,"name":"Temporada 2","overview":"Durante la segunda temporada de esta lúgubre serie de zombis, Grimes y sus cohortes continúan la búsqueda del santuario en un paraje desolado y peligroso.","poster_path":"/je7QVgGENEZSW2V16sHlBWW0Ra8.jpg","season_number":2,"vote_average":8.5},{"air_date":"2012-10-14","episode_count":16,"id":3645,"name":"Temporada 3","overview":"En la temporada 3, el grupo de supervivientes de Rick toma el control de una prisión abandonada y descubre un asentamiento dirigido por el poderoso Gobernador.","poster_path":"/9AJw8IpFAVGjPCZ16hYG1sTRBMd.jpg","season_number":3,"vote_average":8.6},{"air_date":"2013-10-13","episode_count":16,"id":3647,"name":"Temporada 4","overview":"Después de la masacre, comienza la caza al Gobernador. Mientras, Rick, Daryl, Michonne y Karen planean su siguiente movimiento.","poster_path":"/s03WseSKRuOjYx8ZKbFJ5Z1dt2E.jpg","season_number":4,"vote_average":8.5},{"air_date":"2014-10-12","episode_count":16,"id":60391,"name":"Temporada 5","overview":"En la 5.ª temporada, Rick y los demás se enfrentan a sus captores en La Terminal, descubren qué pasó con Beth y deciden si confiar en nuevos grupos de supervivientes.","poster_path":"/yNNa5AnguZRBmKBZlxA38WoiDqP.jpg","season_number":5,"vote_average":8.5},{"air_date":"2015-10-11","episode_count":16,"id":68814,"name":"Temporada 6","overview":"Tras una muerte traumática, el grupo de Rick y los otros residentes de Alexandria cuestionan sus posibilidades al tiempo que procuran nuevas formas de sobrevivir.","poster_path":"/teqkAQmxqAZMNQ6NOpo9pZMQWew.jpg","season_number":6,"vote_average":8.4},{"air_date":"2016-10-23","episode_count":16,"id":76834,"name":"Temporada 7","overview":"El grupo de Rick se recupera de un acto de violencia brutal y se pregunta qué otros horrores les tienen reservados Negan y los Salvadores.","poster_path":"/q17oXRgzW739jFqCd2XBSFHqDkv.jpg","season_number":7,"vote_average":7.9},{"air_date":"2017-10-22","episode_count":16,"id":91735,"name":"Temporada 8","overview":"Mientras Negan continúa con su tiránico reinado de terror, Rick reúne a sus aliados del Reino y de Hilltop para lanzar un ataque frontal contra los Salvadores.","poster_path":"/djgM6a4t30GyWCn8SufCCxxDNlg.jpg","season_number":8,"vote_average":7.9},{"air_date":"2018-10-06","episode_count":16,"id":109531,"name":"Temporada 9","overview":"Tras vencer a los Salvadores, la decisión de dejar a Negan con vida provoca una brecha en el grupo de supervivientes. El desencuentro es evidente entre dos bandos diferenciados, liderados por Rick y Maggie respectivamente, que están obligados a convivir juntos.","poster_path":"/ir3HYeK8rdcZlndnnfouQubHG75.jpg","season_number":9,"vote_average":8.3},{"air_date":"2019-10-06","episode_count":22,"id":123967,"name":"Temporada 10","overview":"Es primavera, y han pasado unos meses desde del final de la temporada 9, cuando nuestro grupo de supervivientes se atrevió a cruzar al territorio de los Susurradores durante el duro invierno. Las comunidades aún están lidiando con las secuelas tras el temible despliegue de poder de los Alpha, y la idea misma de si la civilización podrá sobrevivir en un mundo lleno de muertos está en juego.","poster_path":"/jKVxjqXQstVLetQOTsJ6sbj8c6d.jpg","season_number":10,"vote_average":8.2},{"air_date":"2021-08-20","episode_count":24,"id":189337,"name":"Temporada 11","overview":"Alejandría está severamente comprometida tras la devastación dejada por los Susurradores. Ahora todos los que viven en Alejandría luchan por refortificarla y alimentar a su creciente número de residentes, que incluyen a los sobrevivientes de la caída del Reino y la quema de Hilltop; junto con Maggie y su nuevo grupo, los Guardianes. Alejandría tiene más personas de las que puede lograr alimentar y proteger. Su situación es grave a medida que las tensiones se calientan por los acontecimientos pasados y la autopreservación se eleva a la superficie dentro de los muros devastados.","poster_path":"/3xWqI8U11wwnC0ApqQI5qFLAvg.jpg","season_number":11,"vote_average":8.3}],"spoken_languages":[{"english_name":"English","iso_639_1":"en","name":"English"}],"status":"Ended","tagline":"Lucha contra los muertos. Teme a los vivos.","type":"Scripted","vote_average":8.096,"vote_count":17011} \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv274980languagees b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv274980languagees new file mode 100644 index 0000000..07637fe --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv274980languagees @@ -0,0 +1 @@ +{"adult":false,"backdrop_path":"/gSphqI0BhosjOz9DhWbqAEkowQh.jpg","created_by":[{"id":1879786,"credit_id":"68442fe17350568d43de674c","name":"David Zurdo","original_name":"David Zurdo","gender":0,"profile_path":null},{"id":236691,"credit_id":"68442fe92c399022f01ea04b","name":"Luis Marías","original_name":"Luis Marías","gender":2,"profile_path":null}],"episode_run_time":[],"first_air_date":"2025-06-13","genres":[{"id":18,"name":"Drama"},{"id":10759,"name":"Action & Adventure"}],"homepage":"","id":274980,"in_production":true,"languages":["es"],"last_air_date":"2025-06-13","last_episode_to_air":{"id":5695934,"name":"De piedra","overview":"El seguimiento a los terroristas falla: ahora tienen los explosivos y su plan sigue en marcha. Pero también sigue en marcha la investigación de Léon y Mario, que logran dar con el piso franco de los terroristas… aunque ellos ya no están allí. El atentado es inminente. ¿Podrán evitarlo?","vote_average":0.0,"vote_count":0,"air_date":"2025-06-13","episode_number":5,"episode_type":"finale","production_code":"","runtime":50,"season_number":1,"show_id":274980,"still_path":"/3ApMchNGajHWPPXLegjbjYF8FVE.jpg"},"name":"La frontera","next_episode_to_air":null,"networks":[{"id":1024,"logo_path":"/w7HfLNm9CWwRmAMU58udl2L7We7.png","name":"Prime Video","origin_country":""}],"number_of_episodes":6,"number_of_seasons":1,"origin_country":["ES"],"original_language":"es","original_name":"La frontera","overview":"Año 1987. Un grupo disidente de la banda terrorista ETA planea atentar en París. Solo tres personas, tan incompatibles como complementarias, podrán evitarlo.","popularity":4.4829,"poster_path":"/6SKzMXhp5q4yzk3f02QuNTQfv3M.jpg","production_companies":[{"id":240053,"logo_path":"/u6wqVYJTKPXc4yswTsoSdQLt2Oc.png","name":"Par Producciones","origin_country":"ES"}],"production_countries":[{"iso_3166_1":"ES","name":"Spain"}],"seasons":[{"air_date":"2025-06-13","episode_count":6,"id":424914,"name":"Temporada 1","overview":"Año 1987. Francia empieza a colaborar con España en la lucha contra ETA. Un grupo disidente de la organización va a cometer un atentado en París. Las autoridades españolas han resuelto no intervenir, pero un joven capitán de la Guardia Civil decide actuar. Una historia de acción, fidelidades y traiciones, donde cada uno tendrá que demostrar en qué cree y cuáles son sus “fronteras”.","poster_path":"/AkrrnHWs12H1my5HlI9dEVJS9a9.jpg","season_number":1,"vote_average":0.0}],"spoken_languages":[{"english_name":"Spanish","iso_639_1":"es","name":"Español"}],"status":"Returning Series","tagline":"","type":"Scripted","vote_average":0.0,"vote_count":0} \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv61945languagees b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv61945languagees new file mode 100644 index 0000000..5e8417c --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:api.themoviedb.org3tv61945languagees @@ -0,0 +1 @@ +{"adult":false,"backdrop_path":"/uYgcyrinlFfXTFkflzkOjAmtlpP.jpg","created_by":[{"id":49091,"credit_id":"54c38e099251416e6000effe","name":"Uli Brée","original_name":"Uli Brée","gender":2,"profile_path":"/8qHRQed5idzAlfrjc9j4FyNVttq.jpg"}],"episode_run_time":[45],"first_air_date":"2015-01-12","genres":[{"id":35,"name":"Comedia"},{"id":18,"name":"Drama"}],"homepage":"https://www.daserste.de/unterhaltung/serie/vorstadtweiber/index.html","id":61945,"in_production":false,"languages":["de"],"last_air_date":"2022-03-14","last_episode_to_air":{"id":3596974,"name":"Episodio 11","overview":"","vote_average":0.0,"vote_count":0,"air_date":"2022-03-14","episode_number":11,"episode_type":"finale","production_code":"","runtime":45,"season_number":6,"show_id":61945,"still_path":"/zsumt4d4TfvFB4QuXu2rp7jsaGl.jpg"},"name":"Vorstadtweiber","next_episode_to_air":null,"networks":[{"id":189,"logo_path":"/k1poBlW9HGDnIyZU67BtH3BXQuz.png","name":"ORF 1","origin_country":"AT"},{"id":308,"logo_path":"/nGl2dDGonksWY4fTzPPdkK3oNyq.png","name":"Das Erste","origin_country":"DE"}],"number_of_episodes":61,"number_of_seasons":6,"origin_country":["AT"],"original_language":"de","original_name":"Vorstadtweiber","overview":"","popularity":17.8497,"poster_path":"/um3A1r8A5Cuco7ldJHKtMhU7zU9.jpg","production_companies":[{"id":2279,"logo_path":null,"name":"MR Filmproduktion","origin_country":"AT"},{"id":6856,"logo_path":null,"name":"MR FILM","origin_country":"AT"}],"production_countries":[{"iso_3166_1":"AT","name":"Austria"}],"seasons":[{"air_date":"2015-03-31","episode_count":4,"id":74332,"name":"Especiales","overview":"","poster_path":"/tFF69cFAsIvWMYFp9NbxvQJAORE.jpg","season_number":0,"vote_average":0.0},{"air_date":"2015-01-12","episode_count":10,"id":64717,"name":"Temporada 1","overview":"","poster_path":"/aswimgrUIaeHPH3B8lPH2YYUZxj.jpg","season_number":1,"vote_average":9.0},{"air_date":"2016-03-14","episode_count":10,"id":74313,"name":"Temporada 2","overview":"","poster_path":"/7fVAfhzCXitqVVvvfMDzoNZ9uY1.jpg","season_number":2,"vote_average":9.0},{"air_date":"2018-01-08","episode_count":10,"id":97704,"name":"Temporada 3","overview":"","poster_path":"/W6kdpyhpYK6bU77OD3k3YXPH4k.jpg","season_number":3,"vote_average":9.0},{"air_date":"2019-09-16","episode_count":10,"id":132439,"name":"Temporada 4","overview":"","poster_path":"/hhQeOEgvbzzOBCybHISHQAPAHk6.jpg","season_number":4,"vote_average":8.0},{"air_date":"2021-01-11","episode_count":10,"id":171866,"name":"Temporada 5","overview":"","poster_path":"/5n93sCEdcSMyXc3WEJjJvENdztY.jpg","season_number":5,"vote_average":0.0},{"air_date":"2022-01-10","episode_count":11,"id":236440,"name":"Temporada 6","overview":"","poster_path":"/9GomC3oI57Tf3Y70WRMrpCs1GPg.jpg","season_number":6,"vote_average":0.0}],"spoken_languages":[{"english_name":"German","iso_639_1":"de","name":"Deutsch"}],"status":"Ended","tagline":"","type":"Scripted","vote_average":8.1,"vote_count":13} \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phph3HIdfUNk1x9FKqhEuaYLNrCAGfkrNK9TmCB8kPLwLAxy7_lq2_kJ7qbFl.W70Ooq b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phph3HIdfUNk1x9FKqhEuaYLNrCAGfkrNK9TmCB8kPLwLAxy7_lq2_kJ7qbFl.W70Ooq new file mode 100644 index 0000000..8d8ed79 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phph3HIdfUNk1x9FKqhEuaYLNrCAGfkrNK9TmCB8kPLwLAxy7_lq2_kJ7qbFl.W70Ooq @@ -0,0 +1,502 @@ + + + + + + PLAYER + + + + + + + + + +
+
+ Reproducir +
+
+
+
filelions
+ + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphL_S5.I9TT8gF_oMzWJhf_WboaVig7kqjX1pk7wtUnubg6y0VFGER12rD6dWskvRA b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphL_S5.I9TT8gF_oMzWJhf_WboaVig7kqjX1pk7wtUnubg6y0VFGER12rD6dWskvRA new file mode 100644 index 0000000..3c4152d --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphL_S5.I9TT8gF_oMzWJhf_WboaVig7kqjX1pk7wtUnubg6y0VFGER12rD6dWskvRA @@ -0,0 +1,502 @@ + + + + + + PLAYER + + + + + + + + + +
+
+ Reproducir +
+
+
+
filemoon
+ + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphb4V4QCQH04mLSy2ukvmtf3Pui3PV.Ei0Nx90QhodD5Zytl8xenmbk2LtVJN6uXu0 b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphb4V4QCQH04mLSy2ukvmtf3Pui3PV.Ei0Nx90QhodD5Zytl8xenmbk2LtVJN6uXu0 new file mode 100644 index 0000000..081a6b1 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphb4V4QCQH04mLSy2ukvmtf3Pui3PV.Ei0Nx90QhodD5Zytl8xenmbk2LtVJN6uXu0 @@ -0,0 +1,502 @@ + + + + + + PLAYER + + + + + + + + + +
+
+ Reproducir +
+
+
+
doodstream
+ + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphfXuMjvaiA4iZ_F_4aa6THwJJQGLiOL6WllBXosgV9VY b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphfXuMjvaiA4iZ_F_4aa6THwJJQGLiOL6WllBXosgV9VY new file mode 100644 index 0000000..c6e8c71 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphfXuMjvaiA4iZ_F_4aa6THwJJQGLiOL6WllBXosgV9VY @@ -0,0 +1,502 @@ + + + + + + PLAYER + + + + + + + + + +
+
+ Reproducir +
+
+
+
voesx
+ + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphrxPRsRSX4IlkyS1F21W5j.ZcaELYxCftU372pkqUh7QT6JXnZy9MtkHNXvb9xqcz b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphrxPRsRSX4IlkyS1F21W5j.ZcaELYxCftU372pkqUh7QT6JXnZy9MtkHNXvb9xqcz new file mode 100644 index 0000000..29ec652 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:player.cuevana3.euplayer.phphrxPRsRSX4IlkyS1F21W5j.ZcaELYxCftU372pkqUh7QT6JXnZy9MtkHNXvb9xqcz @@ -0,0 +1,502 @@ + + + + + + PLAYER + + + + + + + + + +
+
+ Reproducir +
+
+
+
streamwish
+ + + + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiola-frontera-temporada-1-episodio-1 b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiola-frontera-temporada-1-episodio-1 new file mode 100644 index 0000000..ec4c65a --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiola-frontera-temporada-1-episodio-1 @@ -0,0 +1,1093 @@ + + + + + + La frontera 1x1 - Cuevana 3 + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+ La frontera +
+ +
+
+

La frontera 1x1 +

+

+ La frontera - Temporada 1 - Episodio 1

+
+
+

+ 0 + + 2025 +

+
+
Se centra en la colaboración de los comandos de ETA entre España y Francia, un periodo marcado por tensiones políticas y operativas en la lucha contra el terrorismo.
+ +
+
+ +
+
+
+
    +
  • +
    +
    + +
    Español CALIDAD HD
    +
    +
    + +
    +
+ +
+
+
+
+
+ +
+
+ +
+
+
+ +
+ + +
+
+
+
+

RELACIONADOS

+
+
    +
  • +
    + +
    +
    + img +
    +
    +

    The Walking Dead

    +
    +
    +
    The Walking Dead
    +
    +

    El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guia...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Norman Reedus,Jeffrey Dean Morgan,Melissa McBride,Christian Serratos,Seth Gilliam,Ross ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Solo Leveling

    +
    +
    +
    Solo Leveling
    +
    +

    Lo que no te mata te hace más fuerte, pero en el caso de Sung Jinwoo, lo que lo mató lo hizo más ...

    +

    Género : Acción,Aventura,Ciencia ficción,Fantasía,Animación

    +

    Reparto : 坂泰斗,中村源太,三川華月,上田麗奈,平川大輔,東地宏樹,銀河万丈,古川慎,Ch...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Bob Esponja

    +
    +
    +
    Bob Esponja
    +
    +

    Serie animada que se desarrolla en el fondo del océano Pacífico, en la ciudad submarina de Fondo d...

    +

    Género : Animación,Comedia,Familia

    +

    Reparto : Tom Kenny,Bill Fagerbakke,Rodger Bumpass,Clancy Brown,Carolyn Lawrence,Mary Jo Catlett,Mr. Lawrence,...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los diarios de la boticaria

    +
    +
    +
    Los diarios de la boticaria
    +
    +

    Maomao llevaba una vida tranquila ayudando a su padre, un boticario. Todo cambia el día que la vend...

    +

    Género : Animación,Drama,Misterio

    +

    Reparto : 悠木碧,大塚剛央,小西克幸

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Demon Slayer: Kimetsu no Yaiba

    +
    +
    +
    Demon Slayer: Kimetsu no Yaiba
    +
    +

    En la era Taisho de Japón, Tanjiro, un joven vendedor de carbón, descubre que su familia ha sido a...

    +

    Género : Animación,Acción,Aventura,Ciencia ficción,Fantasía

    +

    Reparto : 花江夏樹,鬼頭明里,下野紘,松岡禎丞,岡本信彦,櫻井孝宏

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    The Rookie

    +
    +
    +
    The Rookie
    +
    +

    Comenzar de nuevo no es fácil, especialmente para el chico de una pequeña ciudad John Nolan que, d...

    +

    Género : Crimen,Drama,Comedia

    +

    Reparto : Nathan Fillion,Melissa O'Neil,Alyssa Diaz,Eric Winter,Mekia Cox,Richard T. Jones,Shawn Ashmore,Jenna...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Resident Alien

    +
    +
    +
    Resident Alien
    +
    +

    Harry, un extraterrestre que se estrelló, adopta la identidad de un médico de un pequeño pueblo d...

    +

    Género : Ciencia ficción,Fantasía

    +

    Reparto : Alan Tudyk,Sara Tomko,Corey Reynolds,Alice Wetterlund,Levi Fiehler,Elizabeth Bowen,Meredith Garretso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Stick: El swing perfecto

    +
    +
    +
    Stick: El swing perfecto
    +
    +

    Pryce Cahill estaba destinado al éxito cuando un colapso desvió su carrera. Ahora esforzándose po...

    +

    Género : Comedia,Drama

    +

    Reparto : Owen Wilson,Peter Dager,Marc Maron,Mariana Treviño,Lilli Kay,Judy Greer,Timothy Olyphant,Owen Wilso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Doctor Who

    +
    +
    +
    Doctor Who
    +
    +

    Continuación de la mítica y longeva serie británica que empezó en 1963 y duró hasta 1989. El Do...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Jodie Whittaker,Mandip Gill,John Bishop

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los sobrevivientes

    +
    +
    +
    Los sobrevivientes
    +
    +

    Hace quince años, la muerte de tres jóvenes destrozó a un tranquilo pueblo costero. Ahora, la mis...

    +

    Género : Drama,Misterio

    +

    Reparto : Yerin Ha,Miriama Smith,Charlie Vickers,Robyn Malcolm

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Breaking Bad

    +
    +
    +
    Breaking Bad
    +
    +

    Un profesor de Química de secundaria con cáncer terminal se asocia a un exestudiante para asegurar...

    +

    Género : Drama,Crimen

    +

    Reparto : Bryan Cranston,Aaron Paul,Anna Gunn,RJ Mitte,Dean Norris,Betsy Brandt,Bob Odenkirk,Jonathan Banks,Br...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Ginny y Georgia

    +
    +
    +
    Ginny y Georgia
    +
    +

    La angustiosa y torpe Ginny Miller, de quince años, a menudo se siente más madura que su madre de ...

    +

    Género : Comedia,Drama

    +

    Reparto : Antonia Gentry,Brianne Howey,Diesel La Torraca,Jennifer Robertson,Felix Mallard,Sara Waisglass,Scott...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Attack on Titan

    +
    +
    +
    Attack on Titan
    +
    +

    Muchos años atrás, la humanidad estuvo al borde de la extinción con la aparición de unas criatur...

    +

    Género : Animación,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : 梶裕貴,石川由依,井上麻里奈,谷山紀章,下野紘,細谷佳正,子安武人,佐倉綾音...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Chespirito: Sin querer queriendo

    +
    +
    +
    Chespirito: Sin querer queriendo
    +
    +

    Desde su infancia hasta su consagración en las décadas de los 50 a los 80, sigue la vida y carrera...

    +

    Género : Drama,Comedia

    +

    Reparto : Pablo Cruz Guerrero,Bárbara López,Juan Lecanda,Andrea Noli,Paola Montes De Oca,Arturo Barba,Eugeni...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Juego de Tronos

    +
    +
    +
    Juego de Tronos
    +
    +

    En un mundo fantástico y en un contexto medieval varias familias, relativas a la nobleza, se disput...

    +

    Género : Ciencia ficción,Fantasía,Drama,Acción,Aventura

    +

    Reparto : Peter Dinklage,Kit Harington,Nikolaj Coster-Waldau,Lena Headey,Emilia Clarke,Liam Cunningham,Maisie ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Dept. Q

    +
    +
    +
    Dept. Q
    +
    +

    Un grosero pero brillante detective se convierte en jefe de un nuevo departamento de policía, donde...

    +

    Género : Crimen,Drama,Misterio

    +

    Reparto : Matthew Goode,Chloe Pirrie,Jamie Sives,Alexej Manvelov,Leah Byrne,Kelly Macdonald

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    One Piece

    +
    +
    +
    One Piece
    +
    +

    Riqueza, fama, poder... un hombre había obtenido todo en este mundo, era el Rey de los Piratas Gold...

    +

    Género : Acción,Aventura,Comedia,Animación

    +

    Reparto : 田中真弓,中井和哉,岡村明美,山口勝平,平田広明,大谷育江,山口由里子,矢尾...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Rick y Morty

    +
    +
    +
    Rick y Morty
    +
    +

    Rick Sánchez es un genio científico alcohólico que se ha mudado con la familia de su hija Beth. �...

    +

    Género : Animación,Comedia,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : Chris Parnell,Spencer Grammer,Sarah Chalke,Ian Cardoni,Harry Belden,Beth Stelling,Nick Rutherford,Ju...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Andor

    +
    +
    +
    Andor
    +
    +

    En una época llena de peligros, engaños e intrigas, Cassian Andor descubrirá la diferencia que pu...

    +

    Género : Ciencia ficción,Fantasía,Acción,Aventura,Drama

    +

    Reparto : Diego Luna,Diego Luna

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Matabot

    +
    +
    +
    Matabot
    +
    +

    En un futuro altamente tecnológico, un robot rebelde de seguridad obtiene libre albedrío en secret...

    +

    Género : Comedia,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Alexander Skarsgård,Noma Dumezweni,David Dastmalchian,Sabrina Wu,Akshay Khanna,Tamara Podemski,Tatt...

    +
    + img +
    +
    +
+
+
+ +
+ + + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiothe-walking-dead-temporada-2-episodio-1 b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiothe-walking-dead-temporada-2-episodio-1 new file mode 100644 index 0000000..6b91bcd --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isepisodiothe-walking-dead-temporada-2-episodio-1 @@ -0,0 +1,3709 @@ + + + + + + The Walking Dead 2x1 - Cuevana 3 + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+ The Walking Dead +
+ +
+
+

The Walking Dead 2x1 +

+

+ The Walking Dead - Temporada 2 - Episodio 1

+
+
+

+ 8.1 + + 2010 +

+
+
El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guiar a un grupo de sobrevivientes para permanecer con vida.
+ +
+
+ +
+
+
+
    +
  • +
    +
    + +
    Español Latino CALIDAD HD
    +
    +
    + +
    +
  • +
    +
    + +
    Subtitulado CALIDAD HD
    +
    +
    + +
    +
+ +
+
+
+
+
+ +
+
+ +
+
+
+ +
+
+
+
+
+ Seleccionar temporada + +
+
    +
+
+
+ +
+
+
+
+

RELACIONADOS

+
+
    +
  • +
    + +
    +
    + img +
    +
    +

    The Walking Dead

    +
    +
    +
    The Walking Dead
    +
    +

    El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guia...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Norman Reedus,Jeffrey Dean Morgan,Melissa McBride,Christian Serratos,Seth Gilliam,Ross ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Solo Leveling

    +
    +
    +
    Solo Leveling
    +
    +

    Lo que no te mata te hace más fuerte, pero en el caso de Sung Jinwoo, lo que lo mató lo hizo más ...

    +

    Género : Acción,Aventura,Ciencia ficción,Fantasía,Animación

    +

    Reparto : 坂泰斗,中村源太,三川華月,上田麗奈,平川大輔,東地宏樹,銀河万丈,古川慎,Ch...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Bob Esponja

    +
    +
    +
    Bob Esponja
    +
    +

    Serie animada que se desarrolla en el fondo del océano Pacífico, en la ciudad submarina de Fondo d...

    +

    Género : Animación,Comedia,Familia

    +

    Reparto : Tom Kenny,Bill Fagerbakke,Rodger Bumpass,Clancy Brown,Carolyn Lawrence,Mary Jo Catlett,Mr. Lawrence,...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los diarios de la boticaria

    +
    +
    +
    Los diarios de la boticaria
    +
    +

    Maomao llevaba una vida tranquila ayudando a su padre, un boticario. Todo cambia el día que la vend...

    +

    Género : Animación,Drama,Misterio

    +

    Reparto : 悠木碧,大塚剛央,小西克幸

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Demon Slayer: Kimetsu no Yaiba

    +
    +
    +
    Demon Slayer: Kimetsu no Yaiba
    +
    +

    En la era Taisho de Japón, Tanjiro, un joven vendedor de carbón, descubre que su familia ha sido a...

    +

    Género : Animación,Acción,Aventura,Ciencia ficción,Fantasía

    +

    Reparto : 花江夏樹,鬼頭明里,下野紘,松岡禎丞,岡本信彦,櫻井孝宏

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    The Rookie

    +
    +
    +
    The Rookie
    +
    +

    Comenzar de nuevo no es fácil, especialmente para el chico de una pequeña ciudad John Nolan que, d...

    +

    Género : Crimen,Drama,Comedia

    +

    Reparto : Nathan Fillion,Melissa O'Neil,Alyssa Diaz,Eric Winter,Mekia Cox,Richard T. Jones,Shawn Ashmore,Jenna...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Resident Alien

    +
    +
    +
    Resident Alien
    +
    +

    Harry, un extraterrestre que se estrelló, adopta la identidad de un médico de un pequeño pueblo d...

    +

    Género : Ciencia ficción,Fantasía

    +

    Reparto : Alan Tudyk,Sara Tomko,Corey Reynolds,Alice Wetterlund,Levi Fiehler,Elizabeth Bowen,Meredith Garretso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Stick: El swing perfecto

    +
    +
    +
    Stick: El swing perfecto
    +
    +

    Pryce Cahill estaba destinado al éxito cuando un colapso desvió su carrera. Ahora esforzándose po...

    +

    Género : Comedia,Drama

    +

    Reparto : Owen Wilson,Peter Dager,Marc Maron,Mariana Treviño,Lilli Kay,Judy Greer,Timothy Olyphant,Owen Wilso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Doctor Who

    +
    +
    +
    Doctor Who
    +
    +

    Continuación de la mítica y longeva serie británica que empezó en 1963 y duró hasta 1989. El Do...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Jodie Whittaker,Mandip Gill,John Bishop

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los sobrevivientes

    +
    +
    +
    Los sobrevivientes
    +
    +

    Hace quince años, la muerte de tres jóvenes destrozó a un tranquilo pueblo costero. Ahora, la mis...

    +

    Género : Drama,Misterio

    +

    Reparto : Yerin Ha,Miriama Smith,Charlie Vickers,Robyn Malcolm

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Breaking Bad

    +
    +
    +
    Breaking Bad
    +
    +

    Un profesor de Química de secundaria con cáncer terminal se asocia a un exestudiante para asegurar...

    +

    Género : Drama,Crimen

    +

    Reparto : Bryan Cranston,Aaron Paul,Anna Gunn,RJ Mitte,Dean Norris,Betsy Brandt,Bob Odenkirk,Jonathan Banks,Br...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Ginny y Georgia

    +
    +
    +
    Ginny y Georgia
    +
    +

    La angustiosa y torpe Ginny Miller, de quince años, a menudo se siente más madura que su madre de ...

    +

    Género : Comedia,Drama

    +

    Reparto : Antonia Gentry,Brianne Howey,Diesel La Torraca,Jennifer Robertson,Felix Mallard,Sara Waisglass,Scott...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Attack on Titan

    +
    +
    +
    Attack on Titan
    +
    +

    Muchos años atrás, la humanidad estuvo al borde de la extinción con la aparición de unas criatur...

    +

    Género : Animación,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : 梶裕貴,石川由依,井上麻里奈,谷山紀章,下野紘,細谷佳正,子安武人,佐倉綾音...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Chespirito: Sin querer queriendo

    +
    +
    +
    Chespirito: Sin querer queriendo
    +
    +

    Desde su infancia hasta su consagración en las décadas de los 50 a los 80, sigue la vida y carrera...

    +

    Género : Drama,Comedia

    +

    Reparto : Pablo Cruz Guerrero,Bárbara López,Juan Lecanda,Andrea Noli,Paola Montes De Oca,Arturo Barba,Eugeni...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Juego de Tronos

    +
    +
    +
    Juego de Tronos
    +
    +

    En un mundo fantástico y en un contexto medieval varias familias, relativas a la nobleza, se disput...

    +

    Género : Ciencia ficción,Fantasía,Drama,Acción,Aventura

    +

    Reparto : Peter Dinklage,Kit Harington,Nikolaj Coster-Waldau,Lena Headey,Emilia Clarke,Liam Cunningham,Maisie ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Dept. Q

    +
    +
    +
    Dept. Q
    +
    +

    Un grosero pero brillante detective se convierte en jefe de un nuevo departamento de policía, donde...

    +

    Género : Crimen,Drama,Misterio

    +

    Reparto : Matthew Goode,Chloe Pirrie,Jamie Sives,Alexej Manvelov,Leah Byrne,Kelly Macdonald

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    One Piece

    +
    +
    +
    One Piece
    +
    +

    Riqueza, fama, poder... un hombre había obtenido todo en este mundo, era el Rey de los Piratas Gold...

    +

    Género : Acción,Aventura,Comedia,Animación

    +

    Reparto : 田中真弓,中井和哉,岡村明美,山口勝平,平田広明,大谷育江,山口由里子,矢尾...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Rick y Morty

    +
    +
    +
    Rick y Morty
    +
    +

    Rick Sánchez es un genio científico alcohólico que se ha mudado con la familia de su hija Beth. �...

    +

    Género : Animación,Comedia,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : Chris Parnell,Spencer Grammer,Sarah Chalke,Ian Cardoni,Harry Belden,Beth Stelling,Nick Rutherford,Ju...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Andor

    +
    +
    +
    Andor
    +
    +

    En una época llena de peligros, engaños e intrigas, Cassian Andor descubrirá la diferencia que pu...

    +

    Género : Ciencia ficción,Fantasía,Acción,Aventura,Drama

    +

    Reparto : Diego Luna,Diego Luna

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Matabot

    +
    +
    +
    Matabot
    +
    +

    En un futuro altamente tecnológico, un robot rebelde de seguridad obtiene libre albedrío en secret...

    +

    Género : Comedia,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Alexander Skarsgård,Noma Dumezweni,David Dastmalchian,Sabrina Wu,Akshay Khanna,Tamara Podemski,Tatt...

    +
    + img +
    +
    +
+
+
+ +
+ + + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchElpercent20Caminopercent3Apercent20Unapercent20pelpercentC3percentADculapercent20depercent20Breakingpercent20Bad b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchElpercent20Caminopercent3Apercent20Unapercent20pelpercentC3percentADculapercent20depercent20Breakingpercent20Bad new file mode 100644 index 0000000..c6dc70b --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchElpercent20Caminopercent3Apercent20Unapercent20pelpercentC3percentADculapercent20depercent20Breakingpercent20Bad @@ -0,0 +1,399 @@ + + + + + + Resultados de búsqueda + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+

Search El Camino: Una película de Breaking Bad

+
+
    +
  • +
    + +
    + 2019 +
    + img +
    +
    +

    El Camino: Una película de Breaking Bad

    +
    +
    +
    El Camino: Una película de Breaking Bad
    +
    +

    Después de escapar de Jack y su pandilla, Jesse Pinkman huye de la policía e intenta escapar de su...

    +

    Género : Crimen,Drama,Suspenso

    +

    Reparto : Aaron Paul,Jesse Plemons,Charles Baker,Matt Jones,Scott MacArthur,Larry Hankin,Scott Shepherd,Tom Bo...

    +
    + img +
    +
    +
+
+
+ +
+ + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchLapercent20frontera b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchLapercent20frontera new file mode 100644 index 0000000..b7fe919 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchLapercent20frontera @@ -0,0 +1,462 @@ + + + + + + Resultados de búsqueda + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+

Search La frontera

+
+
    +
  • +
    + +
    + 2025 +
    + img +
    + Serie
    +

    La frontera

    +
    +
    +
    La frontera
    +
    +

    Se centra en la colaboración de los comandos de ETA entre España y Francia, un periodo marcado por...

    +

    Género : Drama,Acción,Aventura

    +

    Reparto : Javier Rey,Iria del Río,Vincent Perez

    +
    + img +
    +
    +
  • +
    + +
    + 2025 +
    + img +
    + Serie
    +

    La Frontera Oriental

    +
    +
    +
    La Frontera Oriental
    +
    +

    En un punto estratégicamente crítico de Europa, una devastada espía polaca busca alejarse del mun...

    +

    Género : Guerra,Acción,Aventura,Misterio

    +

    Reparto : Lena Góra,Andrzej Konopka,Bartłomiej Topa,Ewelina Starejki,Alona Szostak,Karol Pocheć,Oleh Kyryli...

    +
    + img +
    +
    +
  • +
    + +
    + 2021 +
    + img +
    +
    +

    Las leyes de la frontera

    +
    +
    +
    Las leyes de la frontera
    +
    +

    Verano de 1978. Ignacio Cañas es un estudiante de 17 años introvertido y algo inadaptado que vive ...

    +

    Género : Crimen

    +

    Reparto : Marcos Ruiz,Begoña Vargas,Chechu Salgado,Pep Tosar,Xavier Martín,Daniel Ibáñez,Guillermo Lashera...

    +
    + img +
    +
    +
  • +
    + +
    + 2019 +
    + img +
    +
    +

    Infierno en la Frontera

    +
    +
    +
    Infierno en la Frontera
    +
    +

    Bass Reeves fue el primer marshal negro de los Estados Unidos al oeste del río Mississippi. Trabaj�...

    +

    Género : Western,Aventura

    +

    Reparto : Ron Perlman,Frank Grillo,David Gyasi,Randy Wayne,Manu Intiraymi,Gianni Capaldi,Jaqueline Fleming,Ale...

    +
    + img +
    +
    +
+
+
+ +
+ + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchThepercent20Walkingpercent20Dead b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchThepercent20Walkingpercent20Dead new file mode 100644 index 0000000..17f3e90 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchThepercent20Walkingpercent20Dead @@ -0,0 +1,546 @@ + + + + + + Resultados de búsqueda + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+

Search The Walking Dead

+
+
    +
  • +
    + +
    + 2023 +
    + img +
    + Serie
    +

    The Walking Dead: Daryl Dixon

    +
    +
    +
    The Walking Dead: Daryl Dixon
    +
    +

    Serie spin-off de The Walking Dead que cuenta la historia de Daryl Dixon tras haber sobtevivido a lo...

    +

    Género : Ciencia ficción,Fantasía,Acción,Aventura,Drama

    +

    Reparto : Norman Reedus,Melissa McBride,Clémence Poésy,Louis Puech Scigliuzzi,Laïka Blanc-Francard,Anne Cha...

    +
    + img +
    +
    +
  • +
    + +
    + 2010 +
    + img +
    + Serie
    +

    The Walking Dead

    +
    +
    +
    The Walking Dead
    +
    +

    El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guia...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Norman Reedus,Jeffrey Dean Morgan,Melissa McBride,Christian Serratos,Seth Gilliam,Ross ...

    +
    + img +
    +
    +
  • +
    + +
    + 2015 +
    + img +
    + Serie
    +

    Fear the Walking Dead

    +
    +
    +
    Fear the Walking Dead
    +
    +

    Spin-off / precuela de la serie "The Walking Dead", ambientado en la ciudad de Los Ángeles y centra...

    +

    Género : Acción,Aventura,Drama

    +

    Reparto : Lennie James,Kim Dickens,Colman Domingo,Danay García,Austin Amelio,Karen David,Christine Evangelist...

    +
    + img +
    +
    +
  • +
    + +
    + 2022 +
    + img +
    + Serie
    +

    Tales of the Walking Dead

    +
    +
    +
    Tales of the Walking Dead
    +
    +

    Esperada expansión del universo de The Walking Dead es un drama episódico que cuenta seis historia...

    +

    Género : Drama,Acción,Aventura,Ciencia ficción,Fantasía

    +

    Reparto :

    +
    + img +
    +
    +
  • +
    + +
    + 2020 +
    + img +
    + Serie
    +

    The Walking Dead: World Beyond

    +
    +
    +
    The Walking Dead: World Beyond
    +
    +

    La serie, ambientada en Nebraska diez años después del inicio del apocalipsis zombi, presenta a do...

    +

    Género : Drama,Ciencia ficción,Fantasía,Misterio

    +

    Reparto : Aliyah Royale,Alexa Mansour,Hal Cumpston,Nicolas Cantu,Nico Tortorella,Annet Mahendru,Joe Holt,Natal...

    +
    + img +
    +
    +
  • +
    + +
    + 2023 +
    + img +
    + Serie
    +

    The Walking Dead: Dead City

    +
    +
    +
    The Walking Dead: Dead City
    +
    +

    "Dead City" amplía la narración de "The Walking Dead" en torno a dos personajes inolvidables que l...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Jeffrey Dean Morgan,Zeljko Ivanek,Gaius Charles,Logan Kim,Mahina Napoleon,Lisa Emery,Da...

    +
    + img +
    +
    +
  • +
    + +
    + 2024 +
    + img +
    + Serie
    +

    The Walking Dead: Sobrevivientes

    +
    +
    +
    The Walking Dead: Sobrevivientes
    +
    +

    La historia de amor de Rick Grimes y Michonne cambia gracias a un mundo cambiado. Separados por la d...

    +

    Género : Ciencia ficción,Fantasía,Drama

    +

    Reparto : Andrew Lincoln,Danai Gurira,Pollyanna McIntosh,Danai Gurira,Andrew Lincoln

    +
    + img +
    +
    +
  • +
    + +
    + 2024 +
    + img +
    +
    +

    The Walking Dead: The Return

    +
    +
    +
    The Walking Dead: The Return
    +
    +

    Los protagonistas de The Walking Dead Andrew Lincoln y Danai Gurira recuerdan y visitan lugares icó...

    +

    Género : Documental

    +

    Reparto : Andrew Lincoln,Danai Gurira,Norman Reedus,Jeffrey Dean Morgan,Chandler Riggs,Steven Yeun,Lauren Coha...

    +
    + img +
    +
    +
+
+
+ +
+ + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchVorstadtweiber b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchVorstadtweiber new file mode 100644 index 0000000..490647b --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.issearchVorstadtweiber @@ -0,0 +1,378 @@ + + + + + + Resultados de búsqueda + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+

Search Vorstadtweiber

+
+
    +
+
+
+ +
+ + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-peliculael-camino-una-pelicula-de-breaking-bad b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-peliculael-camino-una-pelicula-de-breaking-bad new file mode 100644 index 0000000..0b32d3b --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-peliculael-camino-una-pelicula-de-breaking-bad @@ -0,0 +1,682 @@ + + + + + + El Camino: Una película de Breaking Bad 2019 - Pelicula - Cuevana 3 + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+ El Camino: Una película de Breaking Bad +
+ +
+
+

El Camino: Una película de Breaking Bad

+

+
+
+

+ 6.96 2h 02m + 2019 +

+ +
+
Después de escapar de Jack y su pandilla, Jesse Pinkman huye de la policía e intenta escapar de su propia tormenta interna.
+ +
+
+ +
+
+
+
    +
  • +
    +
    + +
    + + Español Latino CALIDAD HD + +
    +
    +
    +
      +
    • + 1. streamwish - HD +
    • + 2. filemoon - HD +
    • + 3. voesx - HD +
    • + 4. doodstream - HD +
    • + 5. streamtape - HD +
    • + 6. netu - HD +
    • + 7. vidhide - HD +
    • + 8. plustream - HD +
    +
    +
  • +
    +
    + +
    + + Español CALIDAD HD + +
    +
    +
    +
      +
    • + 1. streamwish - HD +
    • + 2. filemoon - HD +
    • + 3. voesx - HD +
    • + 4. doodstream - HD +
    • + 5. netu - HD +
    • + 6. plustream - HD +
    • + 7. vidhide - HD +
    +
    +
  • +
    +
    + +
    + + Subtitulado CALIDAD HD + +
    +
    +
    +
      +
    • + 1. streamwish - HD +
    • + 2. filemoon - HD +
    • + 3. voesx - HD +
    • + 4. doodstream - HD +
    • + 5. netu - HD +
    • + 6. plustream - HD +
    • + 7. vidhide - HD +
    +
    +
+ +
+
+
+
+
+ +
+
+ +
+
+
+ +
+
+
+
+
+

Películas similar a El Camino: Una película de Breaking Bad

+
+ +
+
+
+

Otras películas

+
+ +
+
+ +
+ + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriela-frontera b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriela-frontera new file mode 100644 index 0000000..c6ff051 --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriela-frontera @@ -0,0 +1,1034 @@ + + + + + + La frontera 2025 - Serie - Cuevana 3 + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+ La frontera +
+ +
+
+

La frontera

+

+
+
+

+ 0 + + 2025 +

+
+
Se centra en la colaboración de los comandos de ETA entre España y Francia, un periodo marcado por tensiones políticas y operativas en la lucha contra el terrorismo.
+ +
+
+ +
+
+ +
+
+
+
+

RELACIONADOS

+
+
    +
  • +
    + +
    +
    + img +
    +
    +

    Los diarios de la boticaria

    +
    +
    +
    Los diarios de la boticaria
    +
    +

    Maomao llevaba una vida tranquila ayudando a su padre, un boticario. Todo cambia el día que la vend...

    +

    Género : Animación,Drama,Misterio

    +

    Reparto : 悠木碧,大塚剛央,小西克幸

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Breaking Bad

    +
    +
    +
    Breaking Bad
    +
    +

    Un profesor de Química de secundaria con cáncer terminal se asocia a un exestudiante para asegurar...

    +

    Género : Drama,Crimen

    +

    Reparto : Bryan Cranston,Aaron Paul,Anna Gunn,RJ Mitte,Dean Norris,Betsy Brandt,Bob Odenkirk,Jonathan Banks,Br...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Black Mirror

    +
    +
    +
    Black Mirror
    +
    +

    Antología de ciencia ficción dominada por el extrañamiento y la inminencia del futuro, donde la t...

    +

    Género : Ciencia ficción,Fantasía,Drama,Misterio

    +

    Reparto :

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Solo Leveling

    +
    +
    +
    Solo Leveling
    +
    +

    Lo que no te mata te hace más fuerte, pero en el caso de Sung Jinwoo, lo que lo mató lo hizo más ...

    +

    Género : Acción,Aventura,Ciencia ficción,Fantasía,Animación

    +

    Reparto : 坂泰斗,中村源太,三川華月,上田麗奈,平川大輔,東地宏樹,銀河万丈,古川慎,Ch...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    The Walking Dead: Dead City

    +
    +
    +
    The Walking Dead: Dead City
    +
    +

    "Dead City" amplía la narración de "The Walking Dead" en torno a dos personajes inolvidables que l...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Jeffrey Dean Morgan,Zeljko Ivanek,Gaius Charles,Logan Kim,Mahina Napoleon,Lisa Emery,Da...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Resident Alien

    +
    +
    +
    Resident Alien
    +
    +

    Harry, un extraterrestre que se estrelló, adopta la identidad de un médico de un pequeño pueblo d...

    +

    Género : Ciencia ficción,Fantasía

    +

    Reparto : Alan Tudyk,Sara Tomko,Corey Reynolds,Alice Wetterlund,Levi Fiehler,Elizabeth Bowen,Meredith Garretso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los enigmas de un asesino

    +
    +
    +
    Los enigmas de un asesino
    +
    +

    Diez años después de descubrir el cuerpo de su tío asesinado, Yoon Ena y el detective Hansaem col...

    +

    Género : Crimen,Misterio,Drama

    +

    Reparto : 김다미,손석구,김성균,현봉식,곽자형,김도건,장격수,박규영

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Friends

    +
    +
    +
    Friends
    +
    +

    "Friends" narra las aventuras y desventuras de seis jóvenes de Nueva York. Rachel (Jennifer Aniston...

    +

    Género : Comedia

    +

    Reparto : Jennifer Aniston,Courteney Cox,Lisa Kudrow,Matt LeBlanc,Matthew Perry,David Schwimmer

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Ginny y Georgia

    +
    +
    +
    Ginny y Georgia
    +
    +

    La angustiosa y torpe Ginny Miller, de quince años, a menudo se siente más madura que su madre de ...

    +

    Género : Comedia,Drama

    +

    Reparto : Antonia Gentry,Brianne Howey,Diesel La Torraca,Jennifer Robertson,Felix Mallard,Sara Waisglass,Scott...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Doctor Who

    +
    +
    +
    Doctor Who
    +
    +

    Continuación de la mítica y longeva serie británica que empezó en 1963 y duró hasta 1989. El Do...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Jodie Whittaker,Mandip Gill,John Bishop

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Juego de Tronos

    +
    +
    +
    Juego de Tronos
    +
    +

    En un mundo fantástico y en un contexto medieval varias familias, relativas a la nobleza, se disput...

    +

    Género : Ciencia ficción,Fantasía,Drama,Acción,Aventura

    +

    Reparto : Peter Dinklage,Kit Harington,Nikolaj Coster-Waldau,Lena Headey,Emilia Clarke,Liam Cunningham,Maisie ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Stick: El swing perfecto

    +
    +
    +
    Stick: El swing perfecto
    +
    +

    Pryce Cahill estaba destinado al éxito cuando un colapso desvió su carrera. Ahora esforzándose po...

    +

    Género : Comedia,Drama

    +

    Reparto : Owen Wilson,Peter Dager,Marc Maron,Mariana Treviño,Lilli Kay,Judy Greer,Timothy Olyphant,Owen Wilso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Dept. Q

    +
    +
    +
    Dept. Q
    +
    +

    Un grosero pero brillante detective se convierte en jefe de un nuevo departamento de policía, donde...

    +

    Género : Crimen,Drama,Misterio

    +

    Reparto : Matthew Goode,Chloe Pirrie,Jamie Sives,Alexej Manvelov,Leah Byrne,Kelly Macdonald

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los sobrevivientes

    +
    +
    +
    Los sobrevivientes
    +
    +

    Hace quince años, la muerte de tres jóvenes destrozó a un tranquilo pueblo costero. Ahora, la mis...

    +

    Género : Drama,Misterio

    +

    Reparto : Yerin Ha,Miriama Smith,Charlie Vickers,Robyn Malcolm

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Attack on Titan

    +
    +
    +
    Attack on Titan
    +
    +

    Muchos años atrás, la humanidad estuvo al borde de la extinción con la aparición de unas criatur...

    +

    Género : Animación,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : 梶裕貴,石川由依,井上麻里奈,谷山紀章,下野紘,細谷佳正,子安武人,佐倉綾音...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Andor

    +
    +
    +
    Andor
    +
    +

    En una época llena de peligros, engaños e intrigas, Cassian Andor descubrirá la diferencia que pu...

    +

    Género : Ciencia ficción,Fantasía,Acción,Aventura,Drama

    +

    Reparto : Diego Luna,Diego Luna

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Chespirito: Sin querer queriendo

    +
    +
    +
    Chespirito: Sin querer queriendo
    +
    +

    Desde su infancia hasta su consagración en las décadas de los 50 a los 80, sigue la vida y carrera...

    +

    Género : Drama,Comedia

    +

    Reparto : Pablo Cruz Guerrero,Bárbara López,Juan Lecanda,Andrea Noli,Paola Montes De Oca,Arturo Barba,Eugeni...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Sin piedad para nadie

    +
    +
    +
    Sin piedad para nadie
    +
    +

    Tras cortar lazos con su banda, un excriminal regresa para descubrir la verdad sobre la muerte de su...

    +

    Género : Acción,Aventura

    +

    Reparto : 소지섭,허준호,공명,추영우,안길강,조한철,이준혁,차승원,이범수

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Matabot

    +
    +
    +
    Matabot
    +
    +

    En un futuro altamente tecnológico, un robot rebelde de seguridad obtiene libre albedrío en secret...

    +

    Género : Comedia,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Alexander Skarsgård,Noma Dumezweni,David Dastmalchian,Sabrina Wu,Akshay Khanna,Tamara Podemski,Tatt...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Rick y Morty

    +
    +
    +
    Rick y Morty
    +
    +

    Rick Sánchez es un genio científico alcohólico que se ha mudado con la familia de su hija Beth. �...

    +

    Género : Animación,Comedia,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : Chris Parnell,Spencer Grammer,Sarah Chalke,Ian Cardoni,Harry Belden,Beth Stelling,Nick Rutherford,Ju...

    +
    + img +
    +
    +
+
+
+ +
+ + + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriethe-walking-dead b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriethe-walking-dead new file mode 100644 index 0000000..293550b --- /dev/null +++ b/src/source/__fixtures__/Cuevana/https:ww1.cuevana3.isver-seriethe-walking-dead @@ -0,0 +1,3120 @@ + + + + + + The Walking Dead 2010 - Serie - Cuevana 3 + + + + + + + + + + + + +
+
+ +
+
+ + + +
+ + + + +
+
+
+
+ +
+ + + + +
+
+
+
+ The Walking Dead +
+ +
+
+

The Walking Dead

+

+
+
+

+ 8.1 + + 2010 +

+
+
El oficial Rick Grimes se despierta del coma para descubrir que el mundo está en ruinas y debe guiar a un grupo de sobrevivientes para permanecer con vida.
+ +
+
+ +
+
+
+
+
+
+ Seleccionar temporada + +
+
    +
+
+
+
+
+
+
+

RELACIONADOS

+
+
    +
  • +
    + +
    +
    + img +
    +
    +

    Los diarios de la boticaria

    +
    +
    +
    Los diarios de la boticaria
    +
    +

    Maomao llevaba una vida tranquila ayudando a su padre, un boticario. Todo cambia el día que la vend...

    +

    Género : Animación,Drama,Misterio

    +

    Reparto : 悠木碧,大塚剛央,小西克幸

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Breaking Bad

    +
    +
    +
    Breaking Bad
    +
    +

    Un profesor de Química de secundaria con cáncer terminal se asocia a un exestudiante para asegurar...

    +

    Género : Drama,Crimen

    +

    Reparto : Bryan Cranston,Aaron Paul,Anna Gunn,RJ Mitte,Dean Norris,Betsy Brandt,Bob Odenkirk,Jonathan Banks,Br...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Black Mirror

    +
    +
    +
    Black Mirror
    +
    +

    Antología de ciencia ficción dominada por el extrañamiento y la inminencia del futuro, donde la t...

    +

    Género : Ciencia ficción,Fantasía,Drama,Misterio

    +

    Reparto :

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Solo Leveling

    +
    +
    +
    Solo Leveling
    +
    +

    Lo que no te mata te hace más fuerte, pero en el caso de Sung Jinwoo, lo que lo mató lo hizo más ...

    +

    Género : Acción,Aventura,Ciencia ficción,Fantasía,Animación

    +

    Reparto : 坂泰斗,中村源太,三川華月,上田麗奈,平川大輔,東地宏樹,銀河万丈,古川慎,Ch...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    The Walking Dead: Dead City

    +
    +
    +
    The Walking Dead: Dead City
    +
    +

    "Dead City" amplía la narración de "The Walking Dead" en torno a dos personajes inolvidables que l...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Lauren Cohan,Jeffrey Dean Morgan,Zeljko Ivanek,Gaius Charles,Logan Kim,Mahina Napoleon,Lisa Emery,Da...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Resident Alien

    +
    +
    +
    Resident Alien
    +
    +

    Harry, un extraterrestre que se estrelló, adopta la identidad de un médico de un pequeño pueblo d...

    +

    Género : Ciencia ficción,Fantasía

    +

    Reparto : Alan Tudyk,Sara Tomko,Corey Reynolds,Alice Wetterlund,Levi Fiehler,Elizabeth Bowen,Meredith Garretso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los enigmas de un asesino

    +
    +
    +
    Los enigmas de un asesino
    +
    +

    Diez años después de descubrir el cuerpo de su tío asesinado, Yoon Ena y el detective Hansaem col...

    +

    Género : Crimen,Misterio,Drama

    +

    Reparto : 김다미,손석구,김성균,현봉식,곽자형,김도건,장격수,박규영

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Friends

    +
    +
    +
    Friends
    +
    +

    "Friends" narra las aventuras y desventuras de seis jóvenes de Nueva York. Rachel (Jennifer Aniston...

    +

    Género : Comedia

    +

    Reparto : Jennifer Aniston,Courteney Cox,Lisa Kudrow,Matt LeBlanc,Matthew Perry,David Schwimmer

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Ginny y Georgia

    +
    +
    +
    Ginny y Georgia
    +
    +

    La angustiosa y torpe Ginny Miller, de quince años, a menudo se siente más madura que su madre de ...

    +

    Género : Comedia,Drama

    +

    Reparto : Antonia Gentry,Brianne Howey,Diesel La Torraca,Jennifer Robertson,Felix Mallard,Sara Waisglass,Scott...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Doctor Who

    +
    +
    +
    Doctor Who
    +
    +

    Continuación de la mítica y longeva serie británica que empezó en 1963 y duró hasta 1989. El Do...

    +

    Género : Acción,Aventura,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Jodie Whittaker,Mandip Gill,John Bishop

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Juego de Tronos

    +
    +
    +
    Juego de Tronos
    +
    +

    En un mundo fantástico y en un contexto medieval varias familias, relativas a la nobleza, se disput...

    +

    Género : Ciencia ficción,Fantasía,Drama,Acción,Aventura

    +

    Reparto : Peter Dinklage,Kit Harington,Nikolaj Coster-Waldau,Lena Headey,Emilia Clarke,Liam Cunningham,Maisie ...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Stick: El swing perfecto

    +
    +
    +
    Stick: El swing perfecto
    +
    +

    Pryce Cahill estaba destinado al éxito cuando un colapso desvió su carrera. Ahora esforzándose po...

    +

    Género : Comedia,Drama

    +

    Reparto : Owen Wilson,Peter Dager,Marc Maron,Mariana Treviño,Lilli Kay,Judy Greer,Timothy Olyphant,Owen Wilso...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Dept. Q

    +
    +
    +
    Dept. Q
    +
    +

    Un grosero pero brillante detective se convierte en jefe de un nuevo departamento de policía, donde...

    +

    Género : Crimen,Drama,Misterio

    +

    Reparto : Matthew Goode,Chloe Pirrie,Jamie Sives,Alexej Manvelov,Leah Byrne,Kelly Macdonald

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Los sobrevivientes

    +
    +
    +
    Los sobrevivientes
    +
    +

    Hace quince años, la muerte de tres jóvenes destrozó a un tranquilo pueblo costero. Ahora, la mis...

    +

    Género : Drama,Misterio

    +

    Reparto : Yerin Ha,Miriama Smith,Charlie Vickers,Robyn Malcolm

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Attack on Titan

    +
    +
    +
    Attack on Titan
    +
    +

    Muchos años atrás, la humanidad estuvo al borde de la extinción con la aparición de unas criatur...

    +

    Género : Animación,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : 梶裕貴,石川由依,井上麻里奈,谷山紀章,下野紘,細谷佳正,子安武人,佐倉綾音...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Andor

    +
    +
    +
    Andor
    +
    +

    En una época llena de peligros, engaños e intrigas, Cassian Andor descubrirá la diferencia que pu...

    +

    Género : Ciencia ficción,Fantasía,Acción,Aventura,Drama

    +

    Reparto : Diego Luna,Diego Luna

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Chespirito: Sin querer queriendo

    +
    +
    +
    Chespirito: Sin querer queriendo
    +
    +

    Desde su infancia hasta su consagración en las décadas de los 50 a los 80, sigue la vida y carrera...

    +

    Género : Drama,Comedia

    +

    Reparto : Pablo Cruz Guerrero,Bárbara López,Juan Lecanda,Andrea Noli,Paola Montes De Oca,Arturo Barba,Eugeni...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Sin piedad para nadie

    +
    +
    +
    Sin piedad para nadie
    +
    +

    Tras cortar lazos con su banda, un excriminal regresa para descubrir la verdad sobre la muerte de su...

    +

    Género : Acción,Aventura

    +

    Reparto : 소지섭,허준호,공명,추영우,안길강,조한철,이준혁,차승원,이범수

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Matabot

    +
    +
    +
    Matabot
    +
    +

    En un futuro altamente tecnológico, un robot rebelde de seguridad obtiene libre albedrío en secret...

    +

    Género : Comedia,Drama,Ciencia ficción,Fantasía

    +

    Reparto : Alexander Skarsgård,Noma Dumezweni,David Dastmalchian,Sabrina Wu,Akshay Khanna,Tamara Podemski,Tatt...

    +
    + img +
    +
    +
  • +
    + +
    +
    + img +
    +
    +

    Rick y Morty

    +
    +
    +
    Rick y Morty
    +
    +

    Rick Sánchez es un genio científico alcohólico que se ha mudado con la familia de su hija Beth. �...

    +

    Género : Animación,Comedia,Ciencia ficción,Fantasía,Acción,Aventura

    +

    Reparto : Chris Parnell,Spencer Grammer,Sarah Chalke,Ian Cardoni,Harry Belden,Beth Stelling,Nick Rutherford,Ju...

    +
    + img +
    +
    +
+
+
+ +
+ + + +
+ +
+
+
cuevana
+
+

© 2025 Cuevana 3 Peliculas Online, Todos los derechos reservados.

+
+
+ + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/src/source/__snapshots__/Cuevana.test.ts.snap b/src/source/__snapshots__/Cuevana.test.ts.snap new file mode 100644 index 0000000..793f3b1 --- /dev/null +++ b/src/source/__snapshots__/Cuevana.test.ts.snap @@ -0,0 +1,151 @@ +// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing + +exports[`Cuevana handle el camino 1`] = ` +[ + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://streamwish.to/e/9icce2ca0yir", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://filemoon.sx/e/fgxxkidqq4jp", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://voe.sx/e/h87m8wyj5x8j", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://doodstream.com/e/ju53ufkqy9hc", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://streamtape.com/e/WgxgBAwOyGfbZxY", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://waaw.to/f/xtG7M9GL2MmV", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://filelions.to/v/tnehp8g7zght", + }, + { + "countryCode": "mx", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://plustream.com/embedb2/gHHRwqKdHgF5MYniuxGWnG8j_vIW77uC4a4vrO5iwLktMwS8ryr2i.bhH3SiGHw6PKNBoqxCHLDyc1Pw6EPhwg--", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://streamwish.to/e/mtb09rms1njz", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://filemoon.sx/e/r77fu9ez9nsv", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://voe.sx/e/cepsnqy0qgyo", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://doodstream.com/e/ny5qlz61x9xt", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://waaw.to/f/hlHhgFkmWHom", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://plustream.com/embedb2/DpAUEfJrAHkBAdb.6erU25OAypGXqMugDfQuWU2sTDBKHNQmIxzyq1b2Ma06kb7EgL6d4hdzw8quWDimAGnIvQ--", + }, + { + "countryCode": "es", + "title": "El Camino: Una película de Breaking Bad", + "url": "https://vidhidepro.com/v/lhaueh479t2v", + }, +] +`; + +exports[`Cuevana handle la frontera s1e1 1`] = ` +[ + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://streamwish.to/e/tpzbrzz7p41k", + }, + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://filemoon.sx/e/nhbmj6o6zl0l", + }, + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://vidhidepro.com/v/x5w6b0wys1fs", + }, + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://voe.sx/e/nfal9zqu9yvy", + }, + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://doodstream.com/e/dyvg7ofnnqgi", + }, + { + "countryCode": "es", + "title": "La frontera 1x1", + "url": "https://waaw.to/f/goypdL0qGqks", + }, +] +`; + +exports[`Cuevana handle walking dead s1e1 1`] = ` +[ + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://streamwish.to/e/gudk6hvc4qwl", + }, + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://filemoon.sx/e/kp39yor1z0js", + }, + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://voe.sx/e/4ahrkbnofnty", + }, + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://doodstream.com/e/wvk23p39ikyd", + }, + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://streamtape.com/e/qMjrKleBMpCLO0", + }, + { + "countryCode": "mx", + "title": "The Walking Dead 1x1", + "url": "https://filelions.to/v/rvyogjvsejlh", + }, +] +`; diff --git a/src/source/index.ts b/src/source/index.ts index a7e1e8f..70e5592 100644 --- a/src/source/index.ts +++ b/src/source/index.ts @@ -1,4 +1,5 @@ export * from './CineHDPlus'; +export * from './Cuevana'; export * from './Eurostreaming'; export * from './Frembed'; export * from './FrenchCloud';