feat(handler): add VerHdLink
This commit is contained in:
parent
3d4129fbd9
commit
44e140c696
12 changed files with 3075 additions and 1 deletions
66
src/handler/VerHdLink.test.ts
Normal file
66
src/handler/VerHdLink.test.ts
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
import { VerHdLink } from './VerHdLink';
|
||||
import { Fetcher } from '../utils';
|
||||
import { Dropload, EmbedExtractors, SuperVideo } from '../embed-extractor';
|
||||
import { Context } from '../types';
|
||||
jest.mock('../utils/Fetcher');
|
||||
|
||||
// @ts-expect-error No constructor args needed
|
||||
const fetcher = new Fetcher();
|
||||
const mostraguarda = new VerHdLink(fetcher, new EmbedExtractors([new Dropload(fetcher), new SuperVideo(fetcher)]));
|
||||
const ctx: Context = { ip: '127.0.0.1' };
|
||||
|
||||
describe('VerHdLink', () => {
|
||||
test('does not handle non imdb movies', async () => {
|
||||
const streams = await mostraguarda.handle(ctx, 'kitsu:123');
|
||||
|
||||
expect(streams).toHaveLength(0);
|
||||
});
|
||||
|
||||
test('handles non-existent movies gracefully', async () => {
|
||||
const streams = await mostraguarda.handle(ctx, 'tt12345678');
|
||||
|
||||
expect(streams).toHaveLength(0);
|
||||
});
|
||||
|
||||
test('handle titanic', async () => {
|
||||
const streams = await mostraguarda.handle(ctx, 'tt0120338');
|
||||
|
||||
expect(streams).toHaveLength(4);
|
||||
expect(streams[0]).toStrictEqual({
|
||||
url: expect.any(URL),
|
||||
label: 'SuperVideo',
|
||||
sourceId: 'supervideo_mx',
|
||||
height: 556,
|
||||
bytes: 1503238553,
|
||||
countryCode: 'mx',
|
||||
});
|
||||
expect(streams[0]?.url.href).toMatch(/^https:\/\/.*?.m3u8/);
|
||||
expect(streams[1]).toStrictEqual({
|
||||
url: expect.any(URL),
|
||||
label: 'Dropload',
|
||||
sourceId: 'dropload_mx',
|
||||
height: 556,
|
||||
bytes: 1503238553,
|
||||
countryCode: 'mx',
|
||||
});
|
||||
expect(streams[1]?.url.href).toMatch(/^https:\/\/.*?.m3u8/);
|
||||
expect(streams[2]).toStrictEqual({
|
||||
url: expect.any(URL),
|
||||
label: 'SuperVideo',
|
||||
sourceId: 'supervideo_es',
|
||||
height: 544,
|
||||
bytes: 1610612736,
|
||||
countryCode: 'es',
|
||||
});
|
||||
expect(streams[2]?.url.href).toMatch(/^https:\/\/.*?.m3u8/);
|
||||
expect(streams[3]).toStrictEqual({
|
||||
url: expect.any(URL),
|
||||
label: 'Dropload',
|
||||
sourceId: 'dropload_es',
|
||||
height: 544,
|
||||
bytes: 1610612736,
|
||||
countryCode: 'es',
|
||||
});
|
||||
expect(streams[3]?.url.href).toMatch(/^https:\/\/.*?.m3u8/);
|
||||
});
|
||||
});
|
||||
53
src/handler/VerHdLink.ts
Normal file
53
src/handler/VerHdLink.ts
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
import * as cheerio from 'cheerio';
|
||||
import { Handler } from './types';
|
||||
import { Fetcher, parseImdbId } from '../utils';
|
||||
import { EmbedExtractors } from '../embed-extractor';
|
||||
import { Context } from '../types';
|
||||
|
||||
export class VerHdLink implements Handler {
|
||||
readonly id = 'verhdlink';
|
||||
|
||||
readonly label = 'VerHdLink';
|
||||
|
||||
readonly contentTypes = ['movie'];
|
||||
|
||||
readonly languages = ['es', 'mx'];
|
||||
|
||||
private readonly fetcher: Fetcher;
|
||||
private readonly embedExtractors: EmbedExtractors;
|
||||
|
||||
constructor(fetcher: Fetcher, embedExtractors: EmbedExtractors) {
|
||||
this.fetcher = fetcher;
|
||||
this.embedExtractors = embedExtractors;
|
||||
}
|
||||
|
||||
readonly handle = async (ctx: Context, id: string) => {
|
||||
if (!id.startsWith('tt')) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const html = await this.fetcher.text(ctx, new URL(`https://verhdlink.cam/movie/${parseImdbId(id).id}`));
|
||||
|
||||
const $ = cheerio.load(html);
|
||||
|
||||
return Promise.all(
|
||||
$('._player-mirrors')
|
||||
.map((_i, el) => {
|
||||
let countryCode = undefined;
|
||||
if ($(el).hasClass('latino')) {
|
||||
countryCode = 'mx';
|
||||
} else if ($(el).hasClass('castellano')) {
|
||||
countryCode = 'es';
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
|
||||
return $('[data-link!=""]', el)
|
||||
.map((_i, el) => new URL(($(el).attr('data-link') as string).replace(/^(https:)?\/\//, 'https://')))
|
||||
.toArray()
|
||||
.filter(embedUrl => embedUrl.host.match(/(dropload|supervideo)/))
|
||||
.map(embedUrl => this.embedExtractors.handle(ctx, embedUrl, countryCode));
|
||||
}),
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
@ -2,4 +2,5 @@ export * from './FrenchCloud';
|
|||
export * from './KinoKiste';
|
||||
export * from './MeineCloud';
|
||||
export * from './MostraGuarda';
|
||||
export * from './VerHdLink';
|
||||
export * from './types';
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import makeFetchHappen from 'make-fetch-happen';
|
|||
import { flag } from 'country-emoji';
|
||||
import winston from 'winston';
|
||||
import { landingTemplate } from './landingTemplate';
|
||||
import { FrenchCloud, Handler, KinoKiste, MeineCloud, MostraGuarda } from './handler';
|
||||
import { FrenchCloud, Handler, KinoKiste, MeineCloud, MostraGuarda, VerHdLink } from './handler';
|
||||
import { Dropload, EmbedExtractors, SuperVideo } from './embed-extractor';
|
||||
import { buildManifest, Fetcher } from './utils';
|
||||
import { Config, UrlResult } from './types';
|
||||
|
|
@ -44,6 +44,7 @@ const handlers: Handler[] = [
|
|||
new KinoKiste(fetcher, embedExtractors),
|
||||
new MeineCloud(fetcher, embedExtractors),
|
||||
new MostraGuarda(fetcher, embedExtractors),
|
||||
new VerHdLink(fetcher, embedExtractors),
|
||||
];
|
||||
|
||||
addon.use((_req: Request, res: Response, next: NextFunction) => {
|
||||
|
|
|
|||
502
src/utils/__fixtures__/Fetcher/https:dropload.io3rj3nyfors6b.html
generated
Normal file
502
src/utils/__fixtures__/Fetcher/https:dropload.io3rj3nyfors6b.html
generated
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Dropload - Revolution Video Hosting</title>
|
||||
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="theme-color" content="#FFF">
|
||||
<meta name="format-detection" conten="telephone=no">
|
||||
<link rel="apple-touch-icon" href="https://dropload.io/assets2/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="https://dropload.io/assets2/images/favicon/manifest.json">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon.ico">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="crossorigin">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
|
||||
<link href="https://dropload.io/assets2/css/style.css?v=2" rel="stylesheet">
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/bootstrap.bundle.min.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/xupload.js?v=13" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/app.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto d-lg-none me-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-menu icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
|
||||
<a href="/?op=registration" class="dropdown-item">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="dropdown-item">Earn money</a>
|
||||
<a href="/api.html" class="dropdown-item">Service API</a>
|
||||
<a href="/tos" class="dropdown-item">Terms and Conditions</a>
|
||||
<a href="/contact" class="dropdown-item">Contacts</a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto me-lg-5">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" class="logo" alt="Dropload.io - ">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-auto d-none d-lg-block">
|
||||
<nav class="nav">
|
||||
|
||||
<a href="/?op=registration" class="nav-link">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="nav-link">Earn money</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-auto d-none d-lg-block ms-auto">
|
||||
<a href="/login.html" class="btn login-btn me-2">
|
||||
<i class="icon icon-account me-2"></i>Login</a>
|
||||
<a href="/?op=registration" class="btn reg-btn">Create an Account</a>
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-lg-none ms-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-account icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li>
|
||||
<a class="dropdown-item" href="/login.html">Login</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="dropdown-item" href="/?op=registration">Create an Account</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
|
||||
|
||||
<script src="https://dropload.io/js/jquery.cookie.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
|
||||
|
||||
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">
|
||||
$.cookie('file_id', '230702', { expires: 10 });
|
||||
$.cookie('aff', '149', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="mb-5 mb-lg-7">
|
||||
<div class="container">
|
||||
<div class="videoplayer">
|
||||
<div class="videoplayer-embed">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="pdiv" style="position: absolute;left:0;top:0;width: 100%;height:100%;">
|
||||
|
||||
<!-- Over player banner ADs code start here -->
|
||||
<!-- Over player banner ADs code end here -->
|
||||
|
||||
|
||||
<!--div id="adbd" class="overdiv">
|
||||
<div>Disable ADBlock plugin and allow pop-ups in your browser to watch video</div>
|
||||
</div-->
|
||||
|
||||
<!-- <div id="play_limit_box" class="d-flex flex-column justify-content-center p-3 text-center" style="position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.55);z-index:10;">
|
||||
<div class="mb-2">
|
||||
<a class="btn btn-gradient" href="/premium.html">Upgrade your account</a>
|
||||
</div>
|
||||
to watch videos with no limits!
|
||||
</div> -->
|
||||
|
||||
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript" src='https://dropload.io/player/jw8/jwplayer.js'></script>
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">jwplayer.key="";</script>
|
||||
<style>
|
||||
.jw-text-track-cue {
|
||||
text-shadow: 1px 1px 2px transparent !important;
|
||||
line-height: 1.53em;
|
||||
padding-left: 0.3em !important;
|
||||
padding-right: 0.3em !important;
|
||||
padding-bottom: 0.2em !important;
|
||||
border-radius: 6px;
|
||||
}
|
||||
</style><script src="/js/localstorage-slim.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script><script src="https://dropload.io/js/dnsads.js?dfp=1&ad_code=2&adsrc=3" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src='/images/back2.jpg' style='width:100%;height:100%;'></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<button type="button" class="btn lightdown"></button>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="lightdown-backdrop"></div>
|
||||
|
||||
<h1>titanic-1997-3[subtitulado] </h1>
|
||||
<div class="videoplayer-controlbar">
|
||||
<div class="row g-1">
|
||||
<div class="col-auto flex-grow-1 flex-shrink-1 mw-0">
|
||||
<div class="videoplayer-details">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto flex-shrink-1 mw-0">
|
||||
<div class="row flex-lg-nowrap">
|
||||
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
on Jun 29, 2023
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-download2 icon-size-16 me-2 opacity-50"></i>
|
||||
<span id="size"></span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
03:14:49
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
|
||||
<button class="btn icon-btn me-4" data-bs-toggle="modal" data-bs-target="#modal_addplaylist">
|
||||
<i class="icon icon-addlist icon-size-16"></i>
|
||||
</button>
|
||||
<button type="button" class="btn icon-btn text-danger" data-bs-toggle="modal" data-bs-target="#modal_flag">
|
||||
<i class="icon icon-flag icon-size-16"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-like border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=3rj3nyfors6b&v=up')" title="Like" data-cf-modified-5f4c5806f6f6e77be7cbb3a7-="">
|
||||
<i class="icon icon-like icon-size-16 me-2"></i>
|
||||
<span id="likes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-dislike border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=3rj3nyfors6b&v=down')" title="Don't Like" data-cf-modified-5f4c5806f6f6e77be7cbb3a7-="">
|
||||
<i class="icon icon-dislike icon-size-16 me-2"></i>
|
||||
<span id="dislikes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mb-5">
|
||||
<div class="row justify-content-center justify-content-lg-between">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-auto order-lg-last mb-3">
|
||||
<div class="dropdown">
|
||||
|
||||
<a class="btn btn-gradient videoplayer-download" data-bs-toggle="dropdown">
|
||||
|
||||
Download<i class="icon icon-download icon-size-20 ms-2"></i>
|
||||
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu w-100 py-0 shadow">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://dropload.io/d/3rj3nyfors6b_h" class="dropdown-item d-flex align-items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="flex-grow-1 pe-3 text-white">
|
||||
<b>HD quality</b> <br> <span class="xsmall text-light">1280x556, <span class="download-size">1.4 GB</span></span>
|
||||
</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="18"><defs><linearGradient id="a" x1="0%" x2="100%" y1="0%" y2="0%"><stop offset="0%" stop-color="#3DB6D4"/><stop offset="100%" stop-color="#6BCFA4"/></linearGradient></defs><path fill-rule="evenodd" fill="#3DB6D4" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/><path fill="url(#a)" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/></svg>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">
|
||||
$(function(){
|
||||
var a = $('.dropdown-menu a:first-child .download-size');
|
||||
$('#size').append(a);
|
||||
})
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-12 col-lg-7 mb-3">
|
||||
<div class="copybox">
|
||||
<textarea class="form-control copy-source" rows="6"><IFRAME SRC="https://dropload.io/e/3rj3nyfors6b" FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=640 HEIGHT=360 allowfullscreen></IFRAME></textarea>
|
||||
<button class="btn btn-primary" onclick="if (!window.__cfRLUnblockHandlers) return false; copy(this);" data-cf-modified-5f4c5806f6f6e77be7cbb3a7-="">Copy</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<div class="modal fade" id="modal_flag" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Flag</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
<form method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); } );return false;" data-cf-modified-5f4c5806f6f6e77be7cbb3a7-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="3rj3nyfors6b">
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Reason:</label>
|
||||
<select class="form-select" name="report_type">
|
||||
<option>Broken video</option>
|
||||
<option>Wrong title/description</option>
|
||||
<option>Copyright restriction</option>
|
||||
<option>Other</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<textarea name="report_info" class="form-control" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn-gradient submit-btn">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_addplaylist" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Add to</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_share" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Share</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
Share code
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('1d("5w").5v({5u:{2i:"/5t/2l/2k-o.2l?v=3",q:"2k-o"},5s:[{2j:"13://5r.o.12/5q/5p/5o/5n/5m.5l?t=5k&s=1z&e=5j&f=22&i=0.0&5i=0&5h=21.20.5g.5f"}],5e:"1j%",5d:"1j%",5c:"5b",5a:"59.58",57:\'56\',55:"y",a:[{2j:"/26?23=54&k=53&2i=13://2h.o.12/52.2g",51:"50"}],1s:{4z:1,2f:\'#4y\',4x:\'#4w\',4v:"4u",4t:30,4s:\'1j\',},\'4r\':{"4q":"4p"},4o:"4n",4m:"13://o.12/",4l:{},4k:y,1r:[1,1.25,1.5,2],4j:\'13://2h.o.12/4i.2g\'}).g(\'1t\',8(){d n=2d.4h("11");n.4g="n";n.2e(\'4f\',\'4-1i 4-1i-4e 4-2c-2f 4-4d 4-1i-4c\');n.2e(\'4b\',\'6.1c(6.4a()+10)\');2d.49(\'.4-2c-48\').47(n)});d 1g,1h;d 46=0,45=0;d 6=1d();d 2a=0,44=0,43=0,j=0;$.42({41:{\'40-3z\':\'3y-3x\'}});6.g(\'3w\',8(x){9(5>0&&x.p>=5&&1h!=1){1h=1;$(\'11.3v\').3u(\'3t\')}9(x.p>=j+5||x.p<j){j=x.p;1f.3s(\'1e\',3r.3q(j),{3p:2b*2b*24*7})}});6.g(\'1c\',8(x){2a=x.p});6.g(\'3o\',8(x){29(x)});6.g(\'3n\',8(){$(\'11.28\').3m();1f.3l(\'1e\')});6.g(\'3k\',8(x){});8 29(x){$(\'11.28\').27();$(\'#3j\').27();9(1g)15;1g=1;z=0;9(3i.3h===3g){z=1}$.1x(\'/26?23=3f&3e=3d&3c=22-21-20-1z-3b&3a=&z=\'+z,8(1y){$(\'#39\').38(1y)});d j=1f.1x(\'1e\');9(j>0){1d().1c(j)}}8 37(){d a=6.16(1w);1v.1u(a);9(a.k>1){1m(i=0;i<a.k;i++){9(a[i].q==1w){1v.1u(\'!!=\'+i);6.1k(i)}}}}6.g(\'1t\',8(){});6.g("h",8(r){d a=6.16();9(a.k<2)15;$(\'.4-c-36-35\').34(8(){$(\'#4-c-b-h\').19(\'4-c-b-u\');$(\'.4-b-h\').m(\'l-1a\',\'w\')});6.33("/32/31.2z","2y 2x",8(){$(\'.4-1q\').2w(\'4-c-1p\');$(\'.4-c-1s, .4-c-1r\').m(\'l-1b\',\'w\');9($(\'.4-1q\').2v(\'4-c-1p\')){$(\'.4-b-h\').m(\'l-1b\',\'y\');$(\'.4-b-h\').m(\'l-1a\',\'y\');$(\'.4-c-b-2u\').19(\'4-c-b-u\');$(\'.4-c-b-h\').2t(\'4-c-b-u\')}2s{$(\'.4-b-h\').m(\'l-1b\',\'w\');$(\'.4-b-h\').m(\'l-1a\',\'w\');$(\'.4-c-b-h\').19(\'4-c-b-u\')}},"2r");6.g("2q",8(r){18.2p(\'17\',r.a[r.2o].q)});9(18.1o(\'17\')){2n("1n(18.1o(\'17\'));",2m)}});d 14;8 1n(1l){d a=6.16();9(a.k>1){1m(i=0;i<a.k;i++){9(a[i].q==1l){9(i==14){15}14=i;6.1k(i)}}}}',36,213,'||||jw||player||function|if|tracks|submenu|settings|var|||on|audioTracks||lastt|length|aria|attr|newButton|dropload|position|name|event|||active||false||true|adb||div|io|https|current_audio|return|getAudioTracks|default_audio|localStorage|removeClass|expanded|checked|seek|jwplayer|tt3rj3nyfors6b|ls|vvplay|vvad|icon|100|setCurrentAudioTrack|audio_name|for|audio_set|getItem|open|controls|playbackRates|captions|ready|log|console|track_name|get|data|1747060128|61|130|230702|op|||dl|hide|video_ad|doPlay|prevt|60|button|document|setAttribute|color|jpg|img|url|file|jw8|css|300|setTimeout|currentTrack|setItem|audioTrackChanged|dualSound|else|addClass|quality|hasClass|toggleClass|Track|Audio|svg||dualy|images|addButton|mousedown|buttons|topbar|set_audio_track|html|fviews|embed|98a85aa6dad48f7be002705aa9b3de97|hash|3rj3nyfors6b|file_code|view|undefined|cRAds|window|over_player_msg|pause|remove|show|complete|play|ttl|round|Math|set|slow|fadeIn|video_ad_fadein|time|cache|no|Cache|Content|headers|ajaxSetup|v2done|tott|vastdone2|vastdone1|appendChild|container|querySelector|getPosition|onclick|forward|reset|inline|class|id|createElement|3rj3nyfors6b_xt|image|playbackRateControls|cast|aboutlink|DropLoad|abouttext|HD|1011|qualityLabels|fontOpacity|backgroundOpacity|Tahoma|fontFamily|303030|backgroundColor|FFFFFF|userFontScale|thumbnails|kind|3rj3nyfors6b0000|11689|get_slides|androidhls|metadata|preload|73|11688|duration|uniform|stretching|height|width|204|236|ii|sp|14400|vJFGPAq2DUYxLzEXX_DpdmwLD5Y6srVTcwK4BuUivFY|m3u8|master|3rj3nyfors6b_h|00046|01|hls2|srv23|sources|assets2|skin|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
|
||||
<style media="screen">
|
||||
.lightdown {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%23FFF' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E") no-repeat center;
|
||||
background-color: rgba(28,37,52,.75);
|
||||
transition: .25s;
|
||||
opacity: 0;
|
||||
}
|
||||
.videoplayer-embed:hover .lightdown {
|
||||
opacity: 1;
|
||||
}
|
||||
.body-lightdown .lightdown {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%233DB6D4' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
.lightdown-backdrop {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,.9);
|
||||
display: none;
|
||||
z-index: 1999;
|
||||
}
|
||||
.body-lightdown .lightdown-backdrop {
|
||||
display: block;
|
||||
}
|
||||
.body-lightdown .videoplayer-embed {
|
||||
z-index: 2000;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">
|
||||
$('.lightdown').on('click', function(){
|
||||
$('body').toggleClass('body-lightdown');
|
||||
})
|
||||
</script>
|
||||
|
||||
<Script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">
|
||||
$("#embed_div textarea").focus(function (){ $(this).select(); })
|
||||
var tab_cookie='tab_down';
|
||||
|
||||
$('ul.tabs').on('click', 'li:not(.current)', function() {
|
||||
$(this).addClass('current').siblings().removeClass('current')
|
||||
.parents('div.section').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
|
||||
});
|
||||
|
||||
$("#iew,#ieh").change(function (){
|
||||
var ww = $("#iew").val();
|
||||
var hh = $("#ieh").val();
|
||||
ww = ww.replace(/\D/g,'');
|
||||
hh = hh.replace(/\D/g,'');
|
||||
if(!ww)ww=640;
|
||||
if(!hh)hh=360;
|
||||
tt = $("#iet").val();
|
||||
tt = tt.replace(/ WIDTH=\d+ HEIGHT=\d+ /,' WIDTH='+ww+' HEIGHT='+hh+' ');
|
||||
$("#iet").val(tt);
|
||||
});
|
||||
|
||||
|
||||
</Script>
|
||||
<script src="https://dropload.io/js/tabber.js" type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
|
||||
|
||||
<Script type="5f4c5806f6f6e77be7cbb3a7-text/javascript">
|
||||
$(function() {
|
||||
|
||||
});
|
||||
</Script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//sx.impubicpuddly.com/rO7FQr7AANJdtg/111561"></script>
|
||||
<script src='https://dropload.io/tag2.js' type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
<script src='https://dropload.io/tag1.js' type="5f4c5806f6f6e77be7cbb3a7-text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Javascript Alt Ads code start -->
|
||||
<!-- Javascript Alt Ads code end -->
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row text-center text-lg-start flex-lg-nowrap">
|
||||
<div class="col">
|
||||
<div class="mb-3">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-muted mb-4 small">© 2025 Dropload - Revolution Video Hosting. All rights reserved.</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/faq" class="nav-link">FAQ</a>
|
||||
<a href="/contact" class="nav-link">Contact Us</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/tos" class="nav-link">Terms of service</a>
|
||||
<a href="#" class="nav-link">Privacy Policy</a>
|
||||
<a href="#" class="nav-link">Copyright Policy</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/api.html" class="nav-link">API</a>
|
||||
<a href="/make_money.html" class="nav-link">Make Money</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="5f4c5806f6f6e77be7cbb3a7-|49" defer></script></body>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
502
src/utils/__fixtures__/Fetcher/https:dropload.ioick4ti66vt6s.html
generated
Normal file
502
src/utils/__fixtures__/Fetcher/https:dropload.ioick4ti66vt6s.html
generated
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Dropload - Revolution Video Hosting</title>
|
||||
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="theme-color" content="#FFF">
|
||||
<meta name="format-detection" conten="telephone=no">
|
||||
<link rel="apple-touch-icon" href="https://dropload.io/assets2/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="https://dropload.io/assets2/images/favicon/manifest.json">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon.ico">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="crossorigin">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
|
||||
<link href="https://dropload.io/assets2/css/style.css?v=2" rel="stylesheet">
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/bootstrap.bundle.min.js" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/xupload.js?v=13" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/app.js" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto d-lg-none me-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-menu icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
|
||||
<a href="/?op=registration" class="dropdown-item">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="dropdown-item">Earn money</a>
|
||||
<a href="/api.html" class="dropdown-item">Service API</a>
|
||||
<a href="/tos" class="dropdown-item">Terms and Conditions</a>
|
||||
<a href="/contact" class="dropdown-item">Contacts</a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto me-lg-5">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" class="logo" alt="Dropload.io - ">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-auto d-none d-lg-block">
|
||||
<nav class="nav">
|
||||
|
||||
<a href="/?op=registration" class="nav-link">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="nav-link">Earn money</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-auto d-none d-lg-block ms-auto">
|
||||
<a href="/login.html" class="btn login-btn me-2">
|
||||
<i class="icon icon-account me-2"></i>Login</a>
|
||||
<a href="/?op=registration" class="btn reg-btn">Create an Account</a>
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-lg-none ms-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-account icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li>
|
||||
<a class="dropdown-item" href="/login.html">Login</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="dropdown-item" href="/?op=registration">Create an Account</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
|
||||
|
||||
<script src="https://dropload.io/js/jquery.cookie.js" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
|
||||
|
||||
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript">
|
||||
$.cookie('file_id', '230700', { expires: 10 });
|
||||
$.cookie('aff', '149', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="mb-5 mb-lg-7">
|
||||
<div class="container">
|
||||
<div class="videoplayer">
|
||||
<div class="videoplayer-embed">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="pdiv" style="position: absolute;left:0;top:0;width: 100%;height:100%;">
|
||||
|
||||
<!-- Over player banner ADs code start here -->
|
||||
<!-- Over player banner ADs code end here -->
|
||||
|
||||
|
||||
<!--div id="adbd" class="overdiv">
|
||||
<div>Disable ADBlock plugin and allow pop-ups in your browser to watch video</div>
|
||||
</div-->
|
||||
|
||||
<!-- <div id="play_limit_box" class="d-flex flex-column justify-content-center p-3 text-center" style="position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.55);z-index:10;">
|
||||
<div class="mb-2">
|
||||
<a class="btn btn-gradient" href="/premium.html">Upgrade your account</a>
|
||||
</div>
|
||||
to watch videos with no limits!
|
||||
</div> -->
|
||||
|
||||
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript" src='https://dropload.io/player/jw8/jwplayer.js'></script>
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript">jwplayer.key="";</script>
|
||||
<style>
|
||||
.jw-text-track-cue {
|
||||
text-shadow: 1px 1px 2px transparent !important;
|
||||
line-height: 1.53em;
|
||||
padding-left: 0.3em !important;
|
||||
padding-right: 0.3em !important;
|
||||
padding-bottom: 0.2em !important;
|
||||
border-radius: 6px;
|
||||
}
|
||||
</style><script src="/js/localstorage-slim.js" type="894e7422b94c436c9fa66a37-text/javascript"></script><script src="https://dropload.io/js/dnsads.js?dfp=1&ad_code=2&adsrc=3" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src='/images/back2.jpg' style='width:100%;height:100%;'></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<button type="button" class="btn lightdown"></button>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="lightdown-backdrop"></div>
|
||||
|
||||
<h1>titanic-1997-2[castellano] </h1>
|
||||
<div class="videoplayer-controlbar">
|
||||
<div class="row g-1">
|
||||
<div class="col-auto flex-grow-1 flex-shrink-1 mw-0">
|
||||
<div class="videoplayer-details">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto flex-shrink-1 mw-0">
|
||||
<div class="row flex-lg-nowrap">
|
||||
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
on Jun 29, 2023
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-download2 icon-size-16 me-2 opacity-50"></i>
|
||||
<span id="size"></span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
03:06:52
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
|
||||
<button class="btn icon-btn me-4" data-bs-toggle="modal" data-bs-target="#modal_addplaylist">
|
||||
<i class="icon icon-addlist icon-size-16"></i>
|
||||
</button>
|
||||
<button type="button" class="btn icon-btn text-danger" data-bs-toggle="modal" data-bs-target="#modal_flag">
|
||||
<i class="icon icon-flag icon-size-16"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-like border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=ick4ti66vt6s&v=up')" title="Like" data-cf-modified-894e7422b94c436c9fa66a37-="">
|
||||
<i class="icon icon-like icon-size-16 me-2"></i>
|
||||
<span id="likes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-dislike border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=ick4ti66vt6s&v=down')" title="Don't Like" data-cf-modified-894e7422b94c436c9fa66a37-="">
|
||||
<i class="icon icon-dislike icon-size-16 me-2"></i>
|
||||
<span id="dislikes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mb-5">
|
||||
<div class="row justify-content-center justify-content-lg-between">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-auto order-lg-last mb-3">
|
||||
<div class="dropdown">
|
||||
|
||||
<a class="btn btn-gradient videoplayer-download" data-bs-toggle="dropdown">
|
||||
|
||||
Download<i class="icon icon-download icon-size-20 ms-2"></i>
|
||||
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu w-100 py-0 shadow">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://dropload.io/d/ick4ti66vt6s_h" class="dropdown-item d-flex align-items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="flex-grow-1 pe-3 text-white">
|
||||
<b>HD quality</b> <br> <span class="xsmall text-light">1280x544, <span class="download-size">1.5 GB</span></span>
|
||||
</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="18"><defs><linearGradient id="a" x1="0%" x2="100%" y1="0%" y2="0%"><stop offset="0%" stop-color="#3DB6D4"/><stop offset="100%" stop-color="#6BCFA4"/></linearGradient></defs><path fill-rule="evenodd" fill="#3DB6D4" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/><path fill="url(#a)" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/></svg>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript">
|
||||
$(function(){
|
||||
var a = $('.dropdown-menu a:first-child .download-size');
|
||||
$('#size').append(a);
|
||||
})
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-12 col-lg-7 mb-3">
|
||||
<div class="copybox">
|
||||
<textarea class="form-control copy-source" rows="6"><IFRAME SRC="https://dropload.io/e/ick4ti66vt6s" FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=640 HEIGHT=360 allowfullscreen></IFRAME></textarea>
|
||||
<button class="btn btn-primary" onclick="if (!window.__cfRLUnblockHandlers) return false; copy(this);" data-cf-modified-894e7422b94c436c9fa66a37-="">Copy</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<div class="modal fade" id="modal_flag" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Flag</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
<form method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); } );return false;" data-cf-modified-894e7422b94c436c9fa66a37-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="ick4ti66vt6s">
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Reason:</label>
|
||||
<select class="form-select" name="report_type">
|
||||
<option>Broken video</option>
|
||||
<option>Wrong title/description</option>
|
||||
<option>Copyright restriction</option>
|
||||
<option>Other</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<textarea name="report_info" class="form-control" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn-gradient submit-btn">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_addplaylist" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Add to</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_share" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Share</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
Share code
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('1d("5v").5u({5t:{2j:"/5s/2n/2m-o.2n?v=3",q:"2m-o"},5r:[{2l:"13://5q.o.12/5p/5o/5n/5m/5l.5k?t=5j&s=1z&e=5i&f=23&i=0.0&5h=0&5g=22.21.5f.5e"}],5d:"1j%",5c:"1j%",5b:"5a",59:"2k.20",58:\'57\',56:"y",a:[{2l:"/27?26=55&k=2k&2j=13://2i.o.12/54.2h",53:"52"}],1s:{51:1,2g:\'#50\',4z:\'#4y\',4x:"4w",4v:30,4u:\'1j\',},\'4t\':{"4s":"4r"},4q:"4p",4o:"13://o.12/",4n:{},4m:y,1r:[1,1.25,1.5,2],4l:\'13://2i.o.12/4k.2h\'}).g(\'1t\',8(){d n=2e.4j("11");n.4i="n";n.2f(\'4h\',\'4-1i 4-1i-4g 4-2d-2g 4-4f 4-1i-4e\');n.2f(\'4d\',\'6.1c(6.4c()+10)\');2e.4b(\'.4-2d-4a\').49(n)});d 1g,1h;d 48=0,47=0;d 6=1d();d 2b=0,46=0,45=0,j=0;$.44({43:{\'42-41\':\'40-3z\'}});6.g(\'3y\',8(x){9(5>0&&x.p>=5&&1h!=1){1h=1;$(\'11.3x\').3w(\'3v\')}9(x.p>=j+5||x.p<j){j=x.p;1f.3u(\'1e\',3t.3s(j),{3r:2c*2c*24*7})}});6.g(\'1c\',8(x){2b=x.p});6.g(\'3q\',8(x){2a(x)});6.g(\'3p\',8(){$(\'11.29\').3o();1f.3n(\'1e\')});6.g(\'3m\',8(x){});8 2a(x){$(\'11.29\').28();$(\'#3l\').28();9(1g)15;1g=1;z=0;9(3k.3j===3i){z=1}$.1x(\'/27?26=3h&3g=3f&3e=23-22-21-1z-3d&3c=&z=\'+z,8(1y){$(\'#3b\').3a(1y)});d j=1f.1x(\'1e\');9(j>0){1d().1c(j)}}8 39(){d a=6.16(1w);1v.1u(a);9(a.k>1){1m(i=0;i<a.k;i++){9(a[i].q==1w){1v.1u(\'!!=\'+i);6.1k(i)}}}}6.g(\'1t\',8(){});6.g("h",8(r){d a=6.16();9(a.k<2)15;$(\'.4-c-38-37\').36(8(){$(\'#4-c-b-h\').19(\'4-c-b-u\');$(\'.4-b-h\').m(\'l-1a\',\'w\')});6.35("/34/33.32","31 2z",8(){$(\'.4-1q\').2y(\'4-c-1p\');$(\'.4-c-1s, .4-c-1r\').m(\'l-1b\',\'w\');9($(\'.4-1q\').2x(\'4-c-1p\')){$(\'.4-b-h\').m(\'l-1b\',\'y\');$(\'.4-b-h\').m(\'l-1a\',\'y\');$(\'.4-c-b-2w\').19(\'4-c-b-u\');$(\'.4-c-b-h\').2v(\'4-c-b-u\')}2u{$(\'.4-b-h\').m(\'l-1b\',\'w\');$(\'.4-b-h\').m(\'l-1a\',\'w\');$(\'.4-c-b-h\').19(\'4-c-b-u\')}},"2t");6.g("2s",8(r){18.2r(\'17\',r.a[r.2q].q)});9(18.1o(\'17\')){2p("1n(18.1o(\'17\'));",2o)}});d 14;8 1n(1l){d a=6.16();9(a.k>1){1m(i=0;i<a.k;i++){9(a[i].q==1l){9(i==14){15}14=i;6.1k(i)}}}}',36,212,'||||jw||player||function|if|tracks|submenu|settings|var|||on|audioTracks||lastt|length|aria|attr|newButton|dropload|position|name|event|||active||false||true|adb||div|io|https|current_audio|return|getAudioTracks|default_audio|localStorage|removeClass|expanded|checked|seek|jwplayer|ttick4ti66vt6s|ls|vvplay|vvad|icon|100|setCurrentAudioTrack|audio_name|for|audio_set|getItem|open|controls|playbackRates|captions|ready|log|console|track_name|get|data|1747060128||61|130|230700|||op|dl|hide|video_ad|doPlay|prevt|60|button|document|setAttribute|color|jpg|img|url|11212|file|jw8|css|300|setTimeout|currentTrack|setItem|audioTrackChanged|dualSound|else|addClass|quality|hasClass|toggleClass|Track||Audio|svg|dualy|images|addButton|mousedown|buttons|topbar|set_audio_track|html|fviews|embed|8dd0bf3bd16704296a76b4750e612009|hash|ick4ti66vt6s|file_code|view|undefined|cRAds|window|over_player_msg|pause|remove|show|complete|play|ttl|round|Math|set|slow|fadeIn|video_ad_fadein|time|cache|no|Cache|Content|headers|ajaxSetup|v2done|tott|vastdone2|vastdone1|appendChild|container|querySelector|getPosition|onclick|forward|reset|inline|class|id|createElement|ick4ti66vt6s_xt|image|playbackRateControls|cast|aboutlink|DropLoad|abouttext|HD|1126|qualityLabels|fontOpacity|backgroundOpacity|Tahoma|fontFamily|303030|backgroundColor|FFFFFF|userFontScale|thumbnails|kind|ick4ti66vt6s0000|get_slides|androidhls|metadata|preload|duration|uniform|stretching|height|width|204|236|ii|sp|14400|OUbNiE0qRNUy69JP4AIj1bGcV5kaljyNrAUlCYWGVOs|m3u8|master|ick4ti66vt6s_h|00046|01|hls2|srv23|sources|assets2|skin|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
|
||||
<style media="screen">
|
||||
.lightdown {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%23FFF' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E") no-repeat center;
|
||||
background-color: rgba(28,37,52,.75);
|
||||
transition: .25s;
|
||||
opacity: 0;
|
||||
}
|
||||
.videoplayer-embed:hover .lightdown {
|
||||
opacity: 1;
|
||||
}
|
||||
.body-lightdown .lightdown {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%233DB6D4' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
.lightdown-backdrop {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,.9);
|
||||
display: none;
|
||||
z-index: 1999;
|
||||
}
|
||||
.body-lightdown .lightdown-backdrop {
|
||||
display: block;
|
||||
}
|
||||
.body-lightdown .videoplayer-embed {
|
||||
z-index: 2000;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="894e7422b94c436c9fa66a37-text/javascript">
|
||||
$('.lightdown').on('click', function(){
|
||||
$('body').toggleClass('body-lightdown');
|
||||
})
|
||||
</script>
|
||||
|
||||
<Script type="894e7422b94c436c9fa66a37-text/javascript">
|
||||
$("#embed_div textarea").focus(function (){ $(this).select(); })
|
||||
var tab_cookie='tab_down';
|
||||
|
||||
$('ul.tabs').on('click', 'li:not(.current)', function() {
|
||||
$(this).addClass('current').siblings().removeClass('current')
|
||||
.parents('div.section').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
|
||||
});
|
||||
|
||||
$("#iew,#ieh").change(function (){
|
||||
var ww = $("#iew").val();
|
||||
var hh = $("#ieh").val();
|
||||
ww = ww.replace(/\D/g,'');
|
||||
hh = hh.replace(/\D/g,'');
|
||||
if(!ww)ww=640;
|
||||
if(!hh)hh=360;
|
||||
tt = $("#iet").val();
|
||||
tt = tt.replace(/ WIDTH=\d+ HEIGHT=\d+ /,' WIDTH='+ww+' HEIGHT='+hh+' ');
|
||||
$("#iet").val(tt);
|
||||
});
|
||||
|
||||
|
||||
</Script>
|
||||
<script src="https://dropload.io/js/tabber.js" type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
|
||||
|
||||
<Script type="894e7422b94c436c9fa66a37-text/javascript">
|
||||
$(function() {
|
||||
|
||||
});
|
||||
</Script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//sx.impubicpuddly.com/rO7FQr7AANJdtg/111561"></script>
|
||||
<script src='https://dropload.io/tag2.js' type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
<script src='https://dropload.io/tag1.js' type="894e7422b94c436c9fa66a37-text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Javascript Alt Ads code start -->
|
||||
<!-- Javascript Alt Ads code end -->
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row text-center text-lg-start flex-lg-nowrap">
|
||||
<div class="col">
|
||||
<div class="mb-3">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-muted mb-4 small">© 2025 Dropload - Revolution Video Hosting. All rights reserved.</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/faq" class="nav-link">FAQ</a>
|
||||
<a href="/contact" class="nav-link">Contact Us</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/tos" class="nav-link">Terms of service</a>
|
||||
<a href="#" class="nav-link">Privacy Policy</a>
|
||||
<a href="#" class="nav-link">Copyright Policy</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/api.html" class="nav-link">API</a>
|
||||
<a href="/make_money.html" class="nav-link">Make Money</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="894e7422b94c436c9fa66a37-|49" defer></script></body>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
502
src/utils/__fixtures__/Fetcher/https:dropload.iojjjx9j5joiz8.html
generated
Normal file
502
src/utils/__fixtures__/Fetcher/https:dropload.iojjjx9j5joiz8.html
generated
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Dropload - Revolution Video Hosting</title>
|
||||
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="theme-color" content="#FFF">
|
||||
<meta name="format-detection" conten="telephone=no">
|
||||
<link rel="apple-touch-icon" href="https://dropload.io/assets2/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="https://dropload.io/assets2/images/favicon/manifest.json">
|
||||
<link rel="icon" href="https://dropload.io/assets2/images/favicon/favicon.ico">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="crossorigin">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
|
||||
<link href="https://dropload.io/assets2/css/style.css?v=2" rel="stylesheet">
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/bootstrap.bundle.min.js" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/xupload.js?v=13" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
<script src="https://dropload.io/assets2/js/app.js" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto d-lg-none me-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-menu icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
|
||||
<a href="/?op=registration" class="dropdown-item">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="dropdown-item">Earn money</a>
|
||||
<a href="/api.html" class="dropdown-item">Service API</a>
|
||||
<a href="/tos" class="dropdown-item">Terms and Conditions</a>
|
||||
<a href="/contact" class="dropdown-item">Contacts</a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto me-lg-5">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" class="logo" alt="Dropload.io - ">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-auto d-none d-lg-block">
|
||||
<nav class="nav">
|
||||
|
||||
<a href="/?op=registration" class="nav-link">Upload</a>
|
||||
|
||||
<a href="/make_money.html" class="nav-link">Earn money</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-auto d-none d-lg-block ms-auto">
|
||||
<a href="/login.html" class="btn login-btn me-2">
|
||||
<i class="icon icon-account me-2"></i>Login</a>
|
||||
<a href="/?op=registration" class="btn reg-btn">Create an Account</a>
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-lg-none ms-auto">
|
||||
<div class="dropdown">
|
||||
<button class="btn icon-btn text-primary" data-bs-toggle="dropdown" data-bs-offset="0, 16">
|
||||
<i class="icon icon-account icon-size-18"></i>
|
||||
</button>
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li>
|
||||
<a class="dropdown-item" href="/login.html">Login</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="dropdown-item" href="/?op=registration">Create an Account</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<main>
|
||||
|
||||
|
||||
<script src="https://dropload.io/js/jquery.cookie.js" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
|
||||
|
||||
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript">
|
||||
$.cookie('file_id', '230703', { expires: 10 });
|
||||
$.cookie('aff', '149', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section class="mb-5 mb-lg-7">
|
||||
<div class="container">
|
||||
<div class="videoplayer">
|
||||
<div class="videoplayer-embed">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="pdiv" style="position: absolute;left:0;top:0;width: 100%;height:100%;">
|
||||
|
||||
<!-- Over player banner ADs code start here -->
|
||||
<!-- Over player banner ADs code end here -->
|
||||
|
||||
|
||||
<!--div id="adbd" class="overdiv">
|
||||
<div>Disable ADBlock plugin and allow pop-ups in your browser to watch video</div>
|
||||
</div-->
|
||||
|
||||
<!-- <div id="play_limit_box" class="d-flex flex-column justify-content-center p-3 text-center" style="position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.55);z-index:10;">
|
||||
<div class="mb-2">
|
||||
<a class="btn btn-gradient" href="/premium.html">Upgrade your account</a>
|
||||
</div>
|
||||
to watch videos with no limits!
|
||||
</div> -->
|
||||
|
||||
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript" src='https://dropload.io/player/jw8/jwplayer.js'></script>
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript">jwplayer.key="";</script>
|
||||
<style>
|
||||
.jw-text-track-cue {
|
||||
text-shadow: 1px 1px 2px transparent !important;
|
||||
line-height: 1.53em;
|
||||
padding-left: 0.3em !important;
|
||||
padding-right: 0.3em !important;
|
||||
padding-bottom: 0.2em !important;
|
||||
border-radius: 6px;
|
||||
}
|
||||
</style><script src="/js/localstorage-slim.js" type="6737e7f408e49c836617a3dc-text/javascript"></script><script src="https://dropload.io/js/dnsads.js?dfp=1&ad_code=2&adsrc=3" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src='/images/back2.jpg' style='width:100%;height:100%;'></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<button type="button" class="btn lightdown"></button>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="lightdown-backdrop"></div>
|
||||
|
||||
<h1>titanic-1997-[latino] </h1>
|
||||
<div class="videoplayer-controlbar">
|
||||
<div class="row g-1">
|
||||
<div class="col-auto flex-grow-1 flex-shrink-1 mw-0">
|
||||
<div class="videoplayer-details">
|
||||
<div class="row align-items-center flex-nowrap">
|
||||
<div class="col-auto flex-shrink-1 mw-0">
|
||||
<div class="row flex-lg-nowrap">
|
||||
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
on Jun 29, 2023
|
||||
</div>
|
||||
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-download2 icon-size-16 me-2 opacity-50"></i>
|
||||
<span id="size"></span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
<i class="icon icon-clock icon-size-16 me-2 opacity-50"></i>
|
||||
03:14:50
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center">
|
||||
|
||||
<button class="btn icon-btn me-4" data-bs-toggle="modal" data-bs-target="#modal_addplaylist">
|
||||
<i class="icon icon-addlist icon-size-16"></i>
|
||||
</button>
|
||||
<button type="button" class="btn icon-btn text-danger" data-bs-toggle="modal" data-bs-target="#modal_flag">
|
||||
<i class="icon icon-flag icon-size-16"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-like border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=jjjx9j5joiz8&v=up')" title="Like" data-cf-modified-6737e7f408e49c836617a3dc-="">
|
||||
<i class="icon icon-like icon-size-16 me-2"></i>
|
||||
<span id="likes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button class="btn btn-dislike border-0" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=jjjx9j5joiz8&v=down')" title="Don't Like" data-cf-modified-6737e7f408e49c836617a3dc-="">
|
||||
<i class="icon icon-dislike icon-size-16 me-2"></i>
|
||||
<span id="dislikes_num">0</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mb-5">
|
||||
<div class="row justify-content-center justify-content-lg-between">
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-auto order-lg-last mb-3">
|
||||
<div class="dropdown">
|
||||
|
||||
<a class="btn btn-gradient videoplayer-download" data-bs-toggle="dropdown">
|
||||
|
||||
Download<i class="icon icon-download icon-size-20 ms-2"></i>
|
||||
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu w-100 py-0 shadow">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://dropload.io/d/jjjx9j5joiz8_h" class="dropdown-item d-flex align-items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="flex-grow-1 pe-3 text-white">
|
||||
<b>HD quality</b> <br> <span class="xsmall text-light">1280x556, <span class="download-size">1.4 GB</span></span>
|
||||
</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="18"><defs><linearGradient id="a" x1="0%" x2="100%" y1="0%" y2="0%"><stop offset="0%" stop-color="#3DB6D4"/><stop offset="100%" stop-color="#6BCFA4"/></linearGradient></defs><path fill-rule="evenodd" fill="#3DB6D4" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/><path fill="url(#a)" d="M13 6V0H7v6H2l8 8 8-8h-5ZM0 16h20v2H0v-2Z"/></svg>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript">
|
||||
$(function(){
|
||||
var a = $('.dropdown-menu a:first-child .download-size');
|
||||
$('#size').append(a);
|
||||
})
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-12 col-lg-7 mb-3">
|
||||
<div class="copybox">
|
||||
<textarea class="form-control copy-source" rows="6"><IFRAME SRC="https://dropload.io/e/jjjx9j5joiz8" FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=640 HEIGHT=360 allowfullscreen></IFRAME></textarea>
|
||||
<button class="btn btn-primary" onclick="if (!window.__cfRLUnblockHandlers) return false; copy(this);" data-cf-modified-6737e7f408e49c836617a3dc-="">Copy</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<div class="modal fade" id="modal_flag" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Flag</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
<form method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); } );return false;" data-cf-modified-6737e7f408e49c836617a3dc-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="jjjx9j5joiz8">
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Reason:</label>
|
||||
<select class="form-select" name="report_type">
|
||||
<option>Broken video</option>
|
||||
<option>Wrong title/description</option>
|
||||
<option>Copyright restriction</option>
|
||||
<option>Other</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<textarea name="report_info" class="form-control" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn-gradient submit-btn">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_addplaylist" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Add to</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="modal_share" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-5">Share</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body pt-0">
|
||||
|
||||
|
||||
Share code
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('1e("5w").5v({5u:{2j:"/5t/2m/2l-o.2m?v=3",q:"2l-o"},5s:[{2k:"14://5r.o.12/5q/5p/5o/5n/5m.5l?t=5k&s=20&e=5j&f=23&i=0.0&5i=0&5h=22.21.5g.5f"}],5e:"1k%",5d:"1k%",5c:"5b",5a:"59.13",58:\'57\',56:"y",a:[{2k:"/27?26=55&k=54&2j=14://2i.o.12/53.2h",52:"51"}],1t:{50:1,2g:\'#4z\',4y:\'#4x\',4w:"4v",4u:30,4t:\'1k\',},\'4s\':{"4r":"4q"},4p:"4o",4n:"14://o.12/",4m:{},4l:y,1s:[1,1.25,1.5,2],4k:\'14://2i.o.12/4j.2h\'}).g(\'1u\',8(){d n=2e.4i("11");n.4h="n";n.2f(\'4g\',\'4-1j 4-1j-4f 4-2d-2g 4-4e 4-1j-4d\');n.2f(\'4c\',\'6.1d(6.4b()+10)\');2e.4a(\'.4-2d-49\').48(n)});d 1h,1i;d 47=0,46=0;d 6=1e();d 2b=0,45=0,44=0,j=0;$.43({42:{\'41-40\':\'3z-3y\'}});6.g(\'3x\',8(x){9(5>0&&x.p>=5&&1i!=1){1i=1;$(\'11.3w\').3v(\'3u\')}9(x.p>=j+5||x.p<j){j=x.p;1g.3t(\'1f\',3s.3r(j),{3q:2c*2c*24*7})}});6.g(\'1d\',8(x){2b=x.p});6.g(\'3p\',8(x){2a(x)});6.g(\'3o\',8(){$(\'11.29\').3n();1g.3m(\'1f\')});6.g(\'3l\',8(x){});8 2a(x){$(\'11.29\').28();$(\'#3k\').28();9(1h)16;1h=1;z=0;9(3j.3i===3h){z=1}$.1y(\'/27?26=3g&3f=3e&3d=23-22-21-20-3c&3b=&z=\'+z,8(1z){$(\'#3a\').39(1z)});d j=1g.1y(\'1f\');9(j>0){1e().1d(j)}}8 38(){d a=6.17(1x);1w.1v(a);9(a.k>1){1n(i=0;i<a.k;i++){9(a[i].q==1x){1w.1v(\'!!=\'+i);6.1l(i)}}}}6.g(\'1u\',8(){});6.g("h",8(r){d a=6.17();9(a.k<2)16;$(\'.4-c-37-36\').35(8(){$(\'#4-c-b-h\').1a(\'4-c-b-u\');$(\'.4-b-h\').m(\'l-1b\',\'w\')});6.34("/33/32.31","2z 2y",8(){$(\'.4-1r\').2x(\'4-c-1q\');$(\'.4-c-1t, .4-c-1s\').m(\'l-1c\',\'w\');9($(\'.4-1r\').2w(\'4-c-1q\')){$(\'.4-b-h\').m(\'l-1c\',\'y\');$(\'.4-b-h\').m(\'l-1b\',\'y\');$(\'.4-c-b-2v\').1a(\'4-c-b-u\');$(\'.4-c-b-h\').2u(\'4-c-b-u\')}2t{$(\'.4-b-h\').m(\'l-1c\',\'w\');$(\'.4-b-h\').m(\'l-1b\',\'w\');$(\'.4-c-b-h\').1a(\'4-c-b-u\')}},"2s");6.g("2r",8(r){19.2q(\'18\',r.a[r.2p].q)});9(19.1p(\'18\')){2o("1o(19.1p(\'18\'));",2n)}});d 15;8 1o(1m){d a=6.17();9(a.k>1){1n(i=0;i<a.k;i++){9(a[i].q==1m){9(i==15){16}15=i;6.1l(i)}}}}',36,213,'||||jw||player||function|if|tracks|submenu|settings|var|||on|audioTracks||lastt|length|aria|attr|newButton|dropload|position|name|event|||active||false||true|adb||div|io||https|current_audio|return|getAudioTracks|default_audio|localStorage|removeClass|expanded|checked|seek|jwplayer|ttjjjx9j5joiz8|ls|vvplay|vvad|icon|100|setCurrentAudioTrack|audio_name|for|audio_set|getItem|open|controls|playbackRates|captions|ready|log|console|track_name|get|data|1747060128|61|130|230703|||op|dl|hide|video_ad|doPlay|prevt|60|button|document|setAttribute|color|jpg|img|url|file|jw8|css|300|setTimeout|currentTrack|setItem|audioTrackChanged|dualSound|else|addClass|quality|hasClass|toggleClass|Track|Audio||svg|dualy|images|addButton|mousedown|buttons|topbar|set_audio_track|html|fviews|embed|4a431321082bb1829cba3833a0b7719e|hash|jjjx9j5joiz8|file_code|view|undefined|cRAds|window|over_player_msg|pause|remove|show|complete|play|ttl|round|Math|set|slow|fadeIn|video_ad_fadein|time|cache|no|Cache|Content|headers|ajaxSetup|v2done|tott|vastdone2|vastdone1|appendChild|container|querySelector|getPosition|onclick|forward|reset|inline|class|id|createElement|jjjx9j5joiz8_xt|image|playbackRateControls|cast|aboutlink|DropLoad|abouttext|HD|1011|qualityLabels|fontOpacity|backgroundOpacity|Tahoma|fontFamily|303030|backgroundColor|FFFFFF|userFontScale|thumbnails|kind|jjjx9j5joiz80000|11690|get_slides|androidhls|metadata|preload|11691|duration|uniform|stretching|height|width|204|236|ii|sp|14400|_sOFVDjKUqBAK_gJtH7YVQnCm6nj7kr4df3PNsKeKAA|m3u8|master|jjjx9j5joiz8_h|00046|01|hls2|srv22|sources|assets2|skin|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
|
||||
<style media="screen">
|
||||
.lightdown {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%23FFF' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E") no-repeat center;
|
||||
background-color: rgba(28,37,52,.75);
|
||||
transition: .25s;
|
||||
opacity: 0;
|
||||
}
|
||||
.videoplayer-embed:hover .lightdown {
|
||||
opacity: 1;
|
||||
}
|
||||
.body-lightdown .lightdown {
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' fill='%233DB6D4' d='M10 20c-1.654 0-3-1.346-3-3v-.531c0-.625-.254-1.237-.695-1.679l-.548-.548A5.96 5.96 0 0 1 4 10c0-1.603.624-3.109 1.757-4.243A5.961 5.961 0 0 1 10 4a5.96 5.96 0 0 1 4.242 1.757A5.96 5.96 0 0 1 16 10a5.957 5.957 0 0 1-1.758 4.242l-.546.547a2.396 2.396 0 0 0-.696 1.68V17c0 1.654-1.346 3-3 3Zm-1.025-4c.017.154.025.311.025.469V17a1.001 1.001 0 0 0 2 0v-.531c0-.158.008-.315.024-.469H8.975Zm-.737-2h3.524c.152-.222.325-.431.519-.624l.546-.547A3.974 3.974 0 0 0 14 10a3.975 3.975 0 0 0-1.172-2.829c-1.512-1.51-4.146-1.51-5.657 0A3.978 3.978 0 0 0 6 10c0 1.068.416 2.072 1.171 2.828h.001l.547.548c.194.194.367.402.519.624ZM19 11h-1a1 1 0 1 1 0-2h1a1 1 0 1 1 0 2ZM2 11H1a1 1 0 1 1 0-2h1a1 1 0 0 1 0 2Zm13.657-5.657a.999.999 0 0 1-.707-1.707l.707-.707a1 1 0 0 1 1.414 1.414l-.707.707a.993.993 0 0 1-.707.293Zm-11.314 0a.993.993 0 0 1-.707-.293l-.707-.707a.999.999 0 1 1 1.414-1.414l.707.707a.999.999 0 0 1-.707 1.707ZM10 3a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v1a1 1 0 0 1-1 1Z'/%3E%3C/svg%3E");
|
||||
}
|
||||
.lightdown-backdrop {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,.9);
|
||||
display: none;
|
||||
z-index: 1999;
|
||||
}
|
||||
.body-lightdown .lightdown-backdrop {
|
||||
display: block;
|
||||
}
|
||||
.body-lightdown .videoplayer-embed {
|
||||
z-index: 2000;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="6737e7f408e49c836617a3dc-text/javascript">
|
||||
$('.lightdown').on('click', function(){
|
||||
$('body').toggleClass('body-lightdown');
|
||||
})
|
||||
</script>
|
||||
|
||||
<Script type="6737e7f408e49c836617a3dc-text/javascript">
|
||||
$("#embed_div textarea").focus(function (){ $(this).select(); })
|
||||
var tab_cookie='tab_down';
|
||||
|
||||
$('ul.tabs').on('click', 'li:not(.current)', function() {
|
||||
$(this).addClass('current').siblings().removeClass('current')
|
||||
.parents('div.section').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
|
||||
});
|
||||
|
||||
$("#iew,#ieh").change(function (){
|
||||
var ww = $("#iew").val();
|
||||
var hh = $("#ieh").val();
|
||||
ww = ww.replace(/\D/g,'');
|
||||
hh = hh.replace(/\D/g,'');
|
||||
if(!ww)ww=640;
|
||||
if(!hh)hh=360;
|
||||
tt = $("#iet").val();
|
||||
tt = tt.replace(/ WIDTH=\d+ HEIGHT=\d+ /,' WIDTH='+ww+' HEIGHT='+hh+' ');
|
||||
$("#iet").val(tt);
|
||||
});
|
||||
|
||||
|
||||
</Script>
|
||||
<script src="https://dropload.io/js/tabber.js" type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
|
||||
|
||||
<Script type="6737e7f408e49c836617a3dc-text/javascript">
|
||||
$(function() {
|
||||
|
||||
});
|
||||
</Script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//sx.impubicpuddly.com/rO7FQr7AANJdtg/111561"></script>
|
||||
<script src='https://dropload.io/tag2.js' type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
<script src='https://dropload.io/tag1.js' type="6737e7f408e49c836617a3dc-text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Javascript Alt Ads code start -->
|
||||
<!-- Javascript Alt Ads code end -->
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row text-center text-lg-start flex-lg-nowrap">
|
||||
<div class="col">
|
||||
<div class="mb-3">
|
||||
<a href="/">
|
||||
<img src="https://dropload.io/assets2/images/logo.svg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="text-muted mb-4 small">© 2025 Dropload - Revolution Video Hosting. All rights reserved.</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/faq" class="nav-link">FAQ</a>
|
||||
<a href="/contact" class="nav-link">Contact Us</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/tos" class="nav-link">Terms of service</a>
|
||||
<a href="#" class="nav-link">Privacy Policy</a>
|
||||
<a href="#" class="nav-link">Copyright Policy</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col d-none d-lg-block">
|
||||
<div class="nav flex-column mb-3">
|
||||
<a href="/api.html" class="nav-link">API</a>
|
||||
<a href="/make_money.html" class="nav-link">Make Money</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="6737e7f408e49c836617a3dc-|49" defer></script></body>
|
||||
|
||||
</html>
|
||||
|
||||
|
||||
401
src/utils/__fixtures__/Fetcher/https:supervideo.cc8xc9f2x2w09p
generated
Normal file
401
src/utils/__fixtures__/Fetcher/https:supervideo.cc8xc9f2x2w09p
generated
Normal file
|
|
@ -0,0 +1,401 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
|
||||
Watch titanic 1997 3[subtitulado]
|
||||
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Watch video titanic 1997 3[subtitulado]">
|
||||
<meta name="keywords" content="titanic, 1997, 3[subtitulado]">
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://supervideo.cc/assets/css/style.css?v=130">
|
||||
<!-- jsdata -->
|
||||
<script src="https://supervideo.cc/assets/js/libs.min.js?v=2" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/assets/js/common.js?v=2" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/js/xupload.js?v=4" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<!-- favicon -->
|
||||
<link rel="apple-touch-icon" href="https://supervideo.cc/assets/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<!-- <link rel="manifest" href="https://supervideo.cc/assets/images/favicon/manifest.json">-->
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body class="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
">
|
||||
<header class="header">
|
||||
<div class="container-fluid">
|
||||
<div class="header__bar flex-start">
|
||||
<div class="flex-grow-1">
|
||||
<a href="/" class="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="header__right"><a href="/login.html" class="btn btn_border_default header__btn">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_secondary header__btn">
|
||||
Sign Up
|
||||
</a></div>
|
||||
<div class="header-mobile">
|
||||
<button type="button" class="btn-toggle" data-toggle="dropdown">
|
||||
<i class="icon icon_user icon_size_18"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right header-mobile__dropdown-menu">
|
||||
<a href="/login.html" class="btn btn_block btn_border_default">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_block btn_secondary">
|
||||
Sign Up
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
.modal {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.download-codes__copy {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.download__player {
|
||||
position: relative;
|
||||
padding-top: 56.25%;
|
||||
}
|
||||
|
||||
.download__info-item {
|
||||
margin-bottom: 15px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.download__info-item a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.download__info-tags {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.downloadbox__dropdown-menu li a {
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.downloadbox__quality {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.downloadbox__size {font-size: 13px;}
|
||||
</style>
|
||||
|
||||
|
||||
<!--100% ads-->
|
||||
<script src="/9271593.js" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<script src="/9271609.js" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//zm.nostocbark.com/rljPIWhbr4xr/115547"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script language="JavaScript" type="7c6c833031fae23d06ef1dd8-text/javascript" CHARSET="UTF-8" src="https://supervideo.cc/js/jquery.cookie.js"></script>
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript">
|
||||
$.cookie('file_id', '1542240', { expires: 10 });
|
||||
$.cookie('aff', '15808', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
|
||||
|
||||
<div class="download">
|
||||
<div class="download__top" style="background-image: url(https://supervideo.cc/assets/images/bg_download.png);">
|
||||
<div class="container">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="download__player">
|
||||
<div class="overlay " >
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript" src='https://supervideo.cc/player8/jwplayer.js'></script>
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript">jwplayer.key="9dOyFG96QFb9AWbR+FhhislXHfV1gIhrkaxLYfLydfiYyC0s";</script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-46849459-36" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript">
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-46849459-36');
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://supervideo.cc/assets/player/myskinfile.css?v=11">
|
||||
<script src="https://supervideo.cc/js/pop.js" type="7c6c833031fae23d06ef1dd8-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src="https://i.serversicuro.cc/8xc9f2x2w09p_xt.jpg" style="width:100%;height:100%;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row justify-content-center align-items-center">
|
||||
<div class="col-sm-8 mr-auto">
|
||||
<h1 class="download__title">
|
||||
titanic-1997-3[subtitulado]
|
||||
</h1>
|
||||
<ul class="download__info">
|
||||
<li><i class="icon icon_clock icon_align_left"></i>
|
||||
on
|
||||
Jun 29, 2023
|
||||
</li>
|
||||
<li><i class="icon icon_user icon_align_left"></i><a href="/users/spainman">
|
||||
spainman
|
||||
</a></li>
|
||||
<li><i class="icon icon_eye icon_align_left"></i>
|
||||
49 views
|
||||
</li>
|
||||
<li><button type="button" class="btn download__flag" data-toggle="modal" data-target="#vid-flag"><i class="icon icon_flag"></i></button>
|
||||
<div class="modal fade" id="vid-flag" tabindex="-1" role="dialog" aria-labelledby="modal-title" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="modal-title">Flag:</h5>
|
||||
<button type="button" class="modal-close" data-dismiss="modal" aria-label="Close">
|
||||
<i class="icon icon_round-close icon_size_20"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body" id="id_flag">
|
||||
<form class="form" method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); $('#id_flag').wrapInner('<span></span>').addClass('alert alert-success'); } );return false;" data-cf-modified-7c6c833031fae23d06ef1dd8-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="8xc9f2x2w09p">
|
||||
<div class="form__group">
|
||||
<label class="form__label">
|
||||
Reason
|
||||
</label>
|
||||
<select class="input" name="report_type">
|
||||
<option>
|
||||
Broken video
|
||||
</option>
|
||||
<option>
|
||||
Wrong title/description
|
||||
</option>
|
||||
<option>
|
||||
Copyright restriction
|
||||
</option>
|
||||
<option>
|
||||
Other
|
||||
</option>
|
||||
</select></div>
|
||||
<div class="form__group">
|
||||
<textarea name="report_info" class="input" id="msg" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn_primary">
|
||||
<button type="submit" class="btn btn_default" data-dismiss="modal">Cancel</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-auto">
|
||||
<ul class="download-social">
|
||||
<li><a class="download-social__item download-social__item_facebook" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Facebook', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://www.facebook.com/sharer/sharer.php?u=/8xc9f2x2w09p" data-cf-modified-7c6c833031fae23d06ef1dd8-=""><i class="icon icon_facebook"></i></a></li>
|
||||
<li><a class="download-social__item download-social__item_twitter" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Twitter', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://twitter.com/intent/tweet?text=titanic-1997-3[subtitulado]" data-cf-modified-7c6c833031fae23d06ef1dd8-=""><i class="icon icon_twitter"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="dowonload-rating" id="vote">
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_plus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=8xc9f2x2w09p&v=up')" title="Like" data-cf-modified-7c6c833031fae23d06ef1dd8-=""><i
|
||||
class="icon icon_like icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="likes_num">
|
||||
0
|
||||
</span></button>
|
||||
<span class="dowonload-rating__divider"></span>
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_minus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=8xc9f2x2w09p&v=down')" title="Don't Like" data-cf-modified-7c6c833031fae23d06ef1dd8-=""><i
|
||||
class="icon icon_dislike icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="dislikes_num">
|
||||
0
|
||||
</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
|
||||
|
||||
<div class="col-sm-auto">
|
||||
|
||||
<div class="downloadbox">
|
||||
<a href="#" data-toggle="dropdown" class="downloadbox__btn"> <i class="icon icon_download downloadbox__icon"></i> <span> <strong class="downloadbox__title">FREE DOWNLOAD</strong> Click to start Download </span> </a>
|
||||
<ul class="dropdown-menu downloadbox__dropdown-menu">
|
||||
|
||||
<li>
|
||||
<a href="#" onclick="if (!window.__cfRLUnblockHandlers) return false; download_video('8xc9f2x2w09p','n','1542240-130-61-1747060129-960eacefe8f94d8eebbccfa769bfdb08')" data-cf-modified-7c6c833031fae23d06ef1dd8-=""><i
|
||||
class="icon icon_download icon_size_18 icon_align_left"></i><b class="downloadbox__quality">
|
||||
Normal quality
|
||||
</b><span class="downloadbox__size">
|
||||
1280x556, 1.4 GB
|
||||
</span></a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 order-2 order-lg-1">
|
||||
|
||||
</div>
|
||||
<div class="col-lg-4 order-1 order-lg-2">
|
||||
<div class="dsh-block">
|
||||
<ul class="dsh-block__tabs nav">
|
||||
<li><a class="active" data-toggle="tab" href="#tab-link">
|
||||
Download Link
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-forum">
|
||||
Forum Code
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-html">HTML</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-embed">Embed</a></li>
|
||||
</ul>
|
||||
<div class="dsh-block__body tab-content clearfix">
|
||||
<div class="tab-pane fade show active" id="tab-link">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">/8xc9f2x2w09p</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-forum">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">[URL=/8xc9f2x2w09p][IMG]https://i.serversicuro.cc/8xc9f2x2w09p_t.jpg[/IMG]
|
||||
titanic-1997-3[subtitulado][/URL]
|
||||
[1280x556, 03:14:48]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-html">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea
|
||||
class="input download-codes__area"><a href="/8xc9f2x2w09p"><img src="https://i.serversicuro.cc/8xc9f2x2w09p_t.jpg" border=0><br>titanic-1997-3[subtitulado]</a><br>[1280x556, 03:14:48]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-embed">
|
||||
<div class="form__group">
|
||||
<div class="row align-items-center text-center justify-content-center">
|
||||
<div class="col-12">
|
||||
<label class="form__label">Embed size: </label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="row no-gutters align-items-center">
|
||||
<div class="col-auto">
|
||||
<input type="text" class="input" id="iew" value="640" size="3">
|
||||
</div>
|
||||
<div class="col-auto text-muted"><i class="icon icon_close icon_size_8 icon_align_left icon_align_right"></i></div>
|
||||
<div class="col-auto"><input class="input" type="text" id="ieh" value="360" size="3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="download-codes js-codes">
|
||||
<textarea id="iet" class="input download-codes__area"><div style="position:relative;padding-bottom:56%;padding-top:20px;height:0;"><irame src="/e/8xc9f2x2w09p" frameborder=0 marginwidth=0 marginheight=0 scrolling=no width=640 height=360 allowfullscreen style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe></div></textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('e("3l").3k({3j:[{m:"6://3i.n.4/3h/,3g,.3f/3e.3d"}],3c:"6://i.n.4/3b.11",3a:"15%",39:"15%",38:"10",37:"14.13",36:\'35\',34:"l",33:"l",32:"31",30:"2z",2y:[0.25,0.5,0.2x,1,1.25,1.5,2],2w:{2v:"2u"},2t:[{m:"/2s?t=2r&2q=14.13&2p=6://i.n.4/2o.11",2n:"2m"}],2l:{2k:\'#2j\',2i:12,2h:"2g",2f:0,2e:\'10\',2d:2c},2b:"2a",29:"",28:{m:"6://d.4/r/27.q",26:"6://d.4/c",8:"o-24",23:"5",u:l},22:{}});k f,j,h=0;k 21=0,20=0;k 7=e();7.9(\'1z\',3(x){b(5>0&&x.8>=5&&j!=1){j=1;$(\'g.1y\').1x(\'1w\')}b(h==0&&x.8>=z&&x.8<=(z+2)){h=x.8}});7.9(\'1v\',3(x){y(x)});7.9(\'1u\',3(){$(\'g.w\').1t()});3 y(x){$(\'g.w\').u();b(f)1s;f=1;a=0;b(p.1r===1q){a=1}$.1p(\'/1o?t=1n&1m=c&1l=1k-1j-1i-1h-1g&1f=&a=\'+a,3(s){$(\'#1e\').1d(s)})}7.9(\'1c\',3(){});e().1b("6://d.4/r/1a.q","19",3(){p.o.18.17=\'/v/c\'},"16");',36,130,'|||function|cc||https|player|position|on|adb|if|8xc9f2x2w09p|supervideo|jwplayer|vvplay|div|x2ok||vvad|var|true|file|serversicuro|top|window|png|images|data|op|hide||video_ad||doPlay|2922|uniform|jpg||73|11688|100|download11|href|location|Download|download2|addButton|ready|html|fviews|embed|eca50c9278ed4e185ce5126b79bfb92c|1747060128|61|130|1542240|hash|file_code|view|dl|get|undefined|cRAds|return|show|complete|play|slow|fadeIn|video_ad_fadein|time|vastdone2|vastdone1|cast|margin|right||link|logo_p|logo|aboutlink|xvs|abouttext|90|fontOpacity|edgeStyle|backgroundOpacity|Verdana|fontFamily|fontSize|FFFFFF|color|captions|thumbnails|kind|8xc9f2x2w09p0000|url|length|get_slides|dlf|tracks|myskin|name|skin|75|playbackRateControls|start|startparam|html5|primary|hlshtml|androidhls|metadata|preload|duration|stretching|height|width|8xc9f2x2w09p_xt|image|m3u8|master|urlset|dnzpf2dw37g4a3gyvdzh5ybzsatxofii2p3vpmgi55rnu47qhwlp5mreabea|hls|hfs295|sources|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
<script type="7c6c833031fae23d06ef1dd8-text/javascript">
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container-fluid">
|
||||
<div class="footer__copyright">© 2017 - 2025 SuperVideo | Fast HLS Video Streaming Service
|
||||
</div>
|
||||
<ul class="footer__menu">
|
||||
<li><a href="">
|
||||
Home
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/faq">
|
||||
FAQ
|
||||
</a></li>
|
||||
<li><a href="/tos">
|
||||
Terms of service
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/premium">
|
||||
Trust Uploader
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/make_money.html">
|
||||
Make Money
|
||||
</a></li>
|
||||
<li><a href="/checkfiles.html">
|
||||
Link Checker
|
||||
</a></li>
|
||||
<li><a href="/contacts">
|
||||
Contact Us
|
||||
</a></li>
|
||||
</ul>
|
||||
<div class="text-center" style="padding-top: 8px;">
|
||||
<!-- <a href="http://www.xvstheme.com/" rel="nofollow" title="Designed by XVSTheme" class="small text-reset" style="display:inline-flex; align-items: center">
|
||||
<span style="margin-right: 4px;">Designed by</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="78.1" height="11" viewBox="0 0 78.1 11" xml:space="preserve"><path d="M73.5 7.5h-5.7c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.6 1.7-1.9 2.6-3.9 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9zm-3.9-3.1c-1.1 0-1.6.4-1.7 1.6h3.4c-.2-1.1-.7-1.6-1.7-1.6zM62 6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V3.1l2.1-.1.2 1c.4-.7 1.2-1.1 2.2-1.1 1.3 0 2.2.5 2.6 1.4.5-.9 1.3-1.4 2.5-1.4 2 0 3 1.1 3 3.4v4.5H62V6.3zM44.6 7.5c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.5 1.7-1.8 2.6-3.8 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9h-5.8zm1.8-3.1c-1.1 0-1.6.4-1.7 1.6H48c-.1-1.1-.6-1.6-1.6-1.6zm-7.6 1.9c0-1-.4-1.4-1.4-1.4-1.2 0-1.6.5-1.6 1.6v4.2h-2.3V0h2.3v3.8c.4-.6 1.2-1 2.2-1 2.1 0 3.1 1.1 3.1 3.4v4.5h-2.4c.1.1.1-4.4.1-4.4zM27.4 7.6V5.2h-1.1V3.5l1.1-.4V1.4h2.3v1.7H32v2.1h-2.3v2.3c0 .9.3 1.2 1.2 1.2h1v2.1h-1.3c-2.3 0-3.2-.9-3.2-3.2zm-4.6-1.5c2.2.4 2.8.9 2.8 2.4S24.1 11 22 11c-2.4 0-3.8-.9-4.1-2.6h2.3c.2.6.7 1 1.7 1 .8 0 1.3-.4 1.3-.8 0-.5-.2-.7-1.2-.8l-1.5-.2c-1.8-.3-2.6-1-2.6-2.1C17.9 4 19.3 3 21.5 3c2.3 0 3.7.9 3.8 2.4h-2.4c-.1-.5-.7-.8-1.6-.8-.7 0-1.2.3-1.2.8 0 .4.2.6 1 .7.3-.1 1.7 0 1.7 0zM13.2 11c-2.2 0-3.1-1-3.5-3.5L9 3.1h2.3l.7 4.3c.2 1.1.5 1.5 1.2 1.5s1-.4 1.2-1.5l.6-4.3h2.4l-.7 4.4c-.4 2.5-1.4 3.5-3.5 3.5zm-7.3-.2L4.4 8.4l-1.6 2.3H0l2.8-3.9L.1 3.1h2.8l1.4 2.3 1.4-2.3h2.8L6 6.9l2.8 3.9H5.9z" fill="#000222"/><path d="M78.1 8.7h-2.6V11h2.6V8.7z" fill="#28e98c"/></svg>
|
||||
</a> -->
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="7c6c833031fae23d06ef1dd8-|49" defer></script></body>
|
||||
</html>
|
||||
401
src/utils/__fixtures__/Fetcher/https:supervideo.ccg6okbr0kd790
generated
Normal file
401
src/utils/__fixtures__/Fetcher/https:supervideo.ccg6okbr0kd790
generated
Normal file
|
|
@ -0,0 +1,401 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
|
||||
Watch titanic 1997 [latino]
|
||||
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Watch video titanic 1997 [latino]">
|
||||
<meta name="keywords" content="titanic, 1997, [latino]">
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://supervideo.cc/assets/css/style.css?v=130">
|
||||
<!-- jsdata -->
|
||||
<script src="https://supervideo.cc/assets/js/libs.min.js?v=2" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/assets/js/common.js?v=2" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/js/xupload.js?v=4" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<!-- favicon -->
|
||||
<link rel="apple-touch-icon" href="https://supervideo.cc/assets/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<!-- <link rel="manifest" href="https://supervideo.cc/assets/images/favicon/manifest.json">-->
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body class="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
">
|
||||
<header class="header">
|
||||
<div class="container-fluid">
|
||||
<div class="header__bar flex-start">
|
||||
<div class="flex-grow-1">
|
||||
<a href="/" class="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="header__right"><a href="/login.html" class="btn btn_border_default header__btn">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_secondary header__btn">
|
||||
Sign Up
|
||||
</a></div>
|
||||
<div class="header-mobile">
|
||||
<button type="button" class="btn-toggle" data-toggle="dropdown">
|
||||
<i class="icon icon_user icon_size_18"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right header-mobile__dropdown-menu">
|
||||
<a href="/login.html" class="btn btn_block btn_border_default">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_block btn_secondary">
|
||||
Sign Up
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
.modal {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.download-codes__copy {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.download__player {
|
||||
position: relative;
|
||||
padding-top: 56.25%;
|
||||
}
|
||||
|
||||
.download__info-item {
|
||||
margin-bottom: 15px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.download__info-item a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.download__info-tags {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.downloadbox__dropdown-menu li a {
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.downloadbox__quality {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.downloadbox__size {font-size: 13px;}
|
||||
</style>
|
||||
|
||||
|
||||
<!--100% ads-->
|
||||
<script src="/9271593.js" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<script src="/9271609.js" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//zm.nostocbark.com/rljPIWhbr4xr/115547"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script language="JavaScript" type="367bdd91390b5b026b7d3df4-text/javascript" CHARSET="UTF-8" src="https://supervideo.cc/js/jquery.cookie.js"></script>
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript">
|
||||
$.cookie('file_id', '1542317', { expires: 10 });
|
||||
$.cookie('aff', '15808', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
|
||||
|
||||
<div class="download">
|
||||
<div class="download__top" style="background-image: url(https://supervideo.cc/assets/images/bg_download.png);">
|
||||
<div class="container">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="download__player">
|
||||
<div class="overlay " >
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript" src='https://supervideo.cc/player8/jwplayer.js'></script>
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript">jwplayer.key="9dOyFG96QFb9AWbR+FhhislXHfV1gIhrkaxLYfLydfiYyC0s";</script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-46849459-36" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript">
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-46849459-36');
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://supervideo.cc/assets/player/myskinfile.css?v=11">
|
||||
<script src="https://supervideo.cc/js/pop.js" type="367bdd91390b5b026b7d3df4-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src="https://i.serversicuro.cc/g6okbr0kd790_xt.jpg" style="width:100%;height:100%;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row justify-content-center align-items-center">
|
||||
<div class="col-sm-8 mr-auto">
|
||||
<h1 class="download__title">
|
||||
titanic-1997-[latino]
|
||||
</h1>
|
||||
<ul class="download__info">
|
||||
<li><i class="icon icon_clock icon_align_left"></i>
|
||||
on
|
||||
Jun 29, 2023
|
||||
</li>
|
||||
<li><i class="icon icon_user icon_align_left"></i><a href="/users/spainman">
|
||||
spainman
|
||||
</a></li>
|
||||
<li><i class="icon icon_eye icon_align_left"></i>
|
||||
1448 views
|
||||
</li>
|
||||
<li><button type="button" class="btn download__flag" data-toggle="modal" data-target="#vid-flag"><i class="icon icon_flag"></i></button>
|
||||
<div class="modal fade" id="vid-flag" tabindex="-1" role="dialog" aria-labelledby="modal-title" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="modal-title">Flag:</h5>
|
||||
<button type="button" class="modal-close" data-dismiss="modal" aria-label="Close">
|
||||
<i class="icon icon_round-close icon_size_20"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body" id="id_flag">
|
||||
<form class="form" method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); $('#id_flag').wrapInner('<span></span>').addClass('alert alert-success'); } );return false;" data-cf-modified-367bdd91390b5b026b7d3df4-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="g6okbr0kd790">
|
||||
<div class="form__group">
|
||||
<label class="form__label">
|
||||
Reason
|
||||
</label>
|
||||
<select class="input" name="report_type">
|
||||
<option>
|
||||
Broken video
|
||||
</option>
|
||||
<option>
|
||||
Wrong title/description
|
||||
</option>
|
||||
<option>
|
||||
Copyright restriction
|
||||
</option>
|
||||
<option>
|
||||
Other
|
||||
</option>
|
||||
</select></div>
|
||||
<div class="form__group">
|
||||
<textarea name="report_info" class="input" id="msg" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn_primary">
|
||||
<button type="submit" class="btn btn_default" data-dismiss="modal">Cancel</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-auto">
|
||||
<ul class="download-social">
|
||||
<li><a class="download-social__item download-social__item_facebook" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Facebook', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://www.facebook.com/sharer/sharer.php?u=/g6okbr0kd790" data-cf-modified-367bdd91390b5b026b7d3df4-=""><i class="icon icon_facebook"></i></a></li>
|
||||
<li><a class="download-social__item download-social__item_twitter" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Twitter', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://twitter.com/intent/tweet?text=titanic-1997-[latino]" data-cf-modified-367bdd91390b5b026b7d3df4-=""><i class="icon icon_twitter"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="dowonload-rating" id="vote">
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_plus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=g6okbr0kd790&v=up')" title="Like" data-cf-modified-367bdd91390b5b026b7d3df4-=""><i
|
||||
class="icon icon_like icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="likes_num">
|
||||
0
|
||||
</span></button>
|
||||
<span class="dowonload-rating__divider"></span>
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_minus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=g6okbr0kd790&v=down')" title="Don't Like" data-cf-modified-367bdd91390b5b026b7d3df4-=""><i
|
||||
class="icon icon_dislike icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="dislikes_num">
|
||||
0
|
||||
</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
|
||||
|
||||
<div class="col-sm-auto">
|
||||
|
||||
<div class="downloadbox">
|
||||
<a href="#" data-toggle="dropdown" class="downloadbox__btn"> <i class="icon icon_download downloadbox__icon"></i> <span> <strong class="downloadbox__title">FREE DOWNLOAD</strong> Click to start Download </span> </a>
|
||||
<ul class="dropdown-menu downloadbox__dropdown-menu">
|
||||
|
||||
<li>
|
||||
<a href="#" onclick="if (!window.__cfRLUnblockHandlers) return false; download_video('g6okbr0kd790','n','1542317-130-61-1747060129-49885c594cba5e870dd917a3bf8af518')" data-cf-modified-367bdd91390b5b026b7d3df4-=""><i
|
||||
class="icon icon_download icon_size_18 icon_align_left"></i><b class="downloadbox__quality">
|
||||
Normal quality
|
||||
</b><span class="downloadbox__size">
|
||||
1280x556, 1.4 GB
|
||||
</span></a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 order-2 order-lg-1">
|
||||
|
||||
</div>
|
||||
<div class="col-lg-4 order-1 order-lg-2">
|
||||
<div class="dsh-block">
|
||||
<ul class="dsh-block__tabs nav">
|
||||
<li><a class="active" data-toggle="tab" href="#tab-link">
|
||||
Download Link
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-forum">
|
||||
Forum Code
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-html">HTML</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-embed">Embed</a></li>
|
||||
</ul>
|
||||
<div class="dsh-block__body tab-content clearfix">
|
||||
<div class="tab-pane fade show active" id="tab-link">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">/g6okbr0kd790</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-forum">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">[URL=/g6okbr0kd790][IMG]https://i.serversicuro.cc/g6okbr0kd790_t.jpg[/IMG]
|
||||
titanic-1997-[latino][/URL]
|
||||
[1280x556, 03:14:51]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-html">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea
|
||||
class="input download-codes__area"><a href="/g6okbr0kd790"><img src="https://i.serversicuro.cc/g6okbr0kd790_t.jpg" border=0><br>titanic-1997-[latino]</a><br>[1280x556, 03:14:51]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-embed">
|
||||
<div class="form__group">
|
||||
<div class="row align-items-center text-center justify-content-center">
|
||||
<div class="col-12">
|
||||
<label class="form__label">Embed size: </label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="row no-gutters align-items-center">
|
||||
<div class="col-auto">
|
||||
<input type="text" class="input" id="iew" value="640" size="3">
|
||||
</div>
|
||||
<div class="col-auto text-muted"><i class="icon icon_close icon_size_8 icon_align_left icon_align_right"></i></div>
|
||||
<div class="col-auto"><input class="input" type="text" id="ieh" value="360" size="3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="download-codes js-codes">
|
||||
<textarea id="iet" class="input download-codes__area"><div style="position:relative;padding-bottom:56%;padding-top:20px;height:0;"><irame src="/e/g6okbr0kd790" frameborder=0 marginwidth=0 marginheight=0 scrolling=no width=640 height=360 allowfullscreen style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe></div></textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('e("3l").3k({3j:[{m:"6://3i.n.4/3h/,3g,.3f/3e.3d"}],3c:"6://i.n.4/3b.11",3a:"14%",39:"14%",38:"10",37:"13.16",36:\'35\',34:"l",33:"l",32:"31",30:"2z",2y:[0.25,0.5,0.2x,1,1.25,1.5,2],2w:{2v:"2u"},2t:[{m:"/2s?t=2r&2q=13.16&2p=6://i.n.4/2o.11",2n:"2m"}],2l:{2k:\'#2j\',2i:12,2h:"2g",2f:0,2e:\'10\',2d:2c},2b:"2a",29:"",28:{m:"6://d.4/r/27.q",26:"6://d.4/c",8:"o-24",23:"5",u:l},22:{}});k f,j,h=0;k 21=0,20=0;k 7=e();7.9(\'1z\',3(x){b(5>0&&x.8>=5&&j!=1){j=1;$(\'g.1y\').1x(\'1w\')}b(h==0&&x.8>=z&&x.8<=(z+2)){h=x.8}});7.9(\'1v\',3(x){y(x)});7.9(\'1u\',3(){$(\'g.w\').1t()});3 y(x){$(\'g.w\').u();b(f)1s;f=1;a=0;b(p.1r===1q){a=1}$.1p(\'/1o?t=1n&1m=c&1l=1k-1j-1i-1h-1g&1f=&a=\'+a,3(s){$(\'#1e\').1d(s)})}7.9(\'1c\',3(){});e().1b("6://d.4/r/1a.q","19",3(){p.o.18.17=\'/v/c\'},"15");',36,130,'|||function|cc||https|player|position|on|adb|if|g6okbr0kd790|supervideo|jwplayer|vvplay|div|x2ok||vvad|var|true|file|serversicuro|top|window|png|images|data|op|hide||video_ad||doPlay|2922|uniform|jpg||11691|100|download11||href|location|Download|download2|addButton|ready|html|fviews|embed|970ae7f586dab4c746fd003405ce706f|1747060128|61|130|1542317|hash|file_code|view|dl|get|undefined|cRAds|return|show|complete|play|slow|fadeIn|video_ad_fadein|time|vastdone2|vastdone1|cast|margin|right||link|logo_p|logo|aboutlink|xvs|abouttext|90|fontOpacity|edgeStyle|backgroundOpacity|Verdana|fontFamily|fontSize|FFFFFF|color|captions|thumbnails|kind|g6okbr0kd7900000|url|length|get_slides|dlf|tracks|myskin|name|skin|75|playbackRateControls|start|startparam|html5|primary|hlshtml|androidhls|metadata|preload|duration|stretching|height|width|g6okbr0kd790_xt|image|m3u8|master|urlset|dnzpejlw37g4a3gyvdzh5p3xttjqd3ccheao6qexhjbv4ecdpod7hxlh4a7a|hls|hfs292|sources|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
<script type="367bdd91390b5b026b7d3df4-text/javascript">
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container-fluid">
|
||||
<div class="footer__copyright">© 2017 - 2025 SuperVideo | Fast HLS Video Streaming Service
|
||||
</div>
|
||||
<ul class="footer__menu">
|
||||
<li><a href="">
|
||||
Home
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/faq">
|
||||
FAQ
|
||||
</a></li>
|
||||
<li><a href="/tos">
|
||||
Terms of service
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/premium">
|
||||
Trust Uploader
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/make_money.html">
|
||||
Make Money
|
||||
</a></li>
|
||||
<li><a href="/checkfiles.html">
|
||||
Link Checker
|
||||
</a></li>
|
||||
<li><a href="/contacts">
|
||||
Contact Us
|
||||
</a></li>
|
||||
</ul>
|
||||
<div class="text-center" style="padding-top: 8px;">
|
||||
<!-- <a href="http://www.xvstheme.com/" rel="nofollow" title="Designed by XVSTheme" class="small text-reset" style="display:inline-flex; align-items: center">
|
||||
<span style="margin-right: 4px;">Designed by</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="78.1" height="11" viewBox="0 0 78.1 11" xml:space="preserve"><path d="M73.5 7.5h-5.7c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.6 1.7-1.9 2.6-3.9 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9zm-3.9-3.1c-1.1 0-1.6.4-1.7 1.6h3.4c-.2-1.1-.7-1.6-1.7-1.6zM62 6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V3.1l2.1-.1.2 1c.4-.7 1.2-1.1 2.2-1.1 1.3 0 2.2.5 2.6 1.4.5-.9 1.3-1.4 2.5-1.4 2 0 3 1.1 3 3.4v4.5H62V6.3zM44.6 7.5c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.5 1.7-1.8 2.6-3.8 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9h-5.8zm1.8-3.1c-1.1 0-1.6.4-1.7 1.6H48c-.1-1.1-.6-1.6-1.6-1.6zm-7.6 1.9c0-1-.4-1.4-1.4-1.4-1.2 0-1.6.5-1.6 1.6v4.2h-2.3V0h2.3v3.8c.4-.6 1.2-1 2.2-1 2.1 0 3.1 1.1 3.1 3.4v4.5h-2.4c.1.1.1-4.4.1-4.4zM27.4 7.6V5.2h-1.1V3.5l1.1-.4V1.4h2.3v1.7H32v2.1h-2.3v2.3c0 .9.3 1.2 1.2 1.2h1v2.1h-1.3c-2.3 0-3.2-.9-3.2-3.2zm-4.6-1.5c2.2.4 2.8.9 2.8 2.4S24.1 11 22 11c-2.4 0-3.8-.9-4.1-2.6h2.3c.2.6.7 1 1.7 1 .8 0 1.3-.4 1.3-.8 0-.5-.2-.7-1.2-.8l-1.5-.2c-1.8-.3-2.6-1-2.6-2.1C17.9 4 19.3 3 21.5 3c2.3 0 3.7.9 3.8 2.4h-2.4c-.1-.5-.7-.8-1.6-.8-.7 0-1.2.3-1.2.8 0 .4.2.6 1 .7.3-.1 1.7 0 1.7 0zM13.2 11c-2.2 0-3.1-1-3.5-3.5L9 3.1h2.3l.7 4.3c.2 1.1.5 1.5 1.2 1.5s1-.4 1.2-1.5l.6-4.3h2.4l-.7 4.4c-.4 2.5-1.4 3.5-3.5 3.5zm-7.3-.2L4.4 8.4l-1.6 2.3H0l2.8-3.9L.1 3.1h2.8l1.4 2.3 1.4-2.3h2.8L6 6.9l2.8 3.9H5.9z" fill="#000222"/><path d="M78.1 8.7h-2.6V11h2.6V8.7z" fill="#28e98c"/></svg>
|
||||
</a> -->
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="367bdd91390b5b026b7d3df4-|49" defer></script></body>
|
||||
</html>
|
||||
401
src/utils/__fixtures__/Fetcher/https:supervideo.ccqe1fviow8uwy
generated
Normal file
401
src/utils/__fixtures__/Fetcher/https:supervideo.ccqe1fviow8uwy
generated
Normal file
|
|
@ -0,0 +1,401 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
|
||||
Watch titanic 1997 2[castellano]
|
||||
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Watch video titanic 1997 2[castellano]">
|
||||
<meta name="keywords" content="titanic, 1997, 2[castellano]">
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://supervideo.cc/assets/css/style.css?v=130">
|
||||
<!-- jsdata -->
|
||||
<script src="https://supervideo.cc/assets/js/libs.min.js?v=2" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/assets/js/common.js?v=2" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<script src="https://supervideo.cc/js/xupload.js?v=4" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<!-- favicon -->
|
||||
<link rel="apple-touch-icon" href="https://supervideo.cc/assets/images/favicon/apple-touch-icon.png" sizes="180x180">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<!-- <link rel="manifest" href="https://supervideo.cc/assets/images/favicon/manifest.json">-->
|
||||
<link rel="icon" href="https://supervideo.cc/assets/images/favicon/favicon.ico">
|
||||
</head>
|
||||
|
||||
<body class="
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
">
|
||||
<header class="header">
|
||||
<div class="container-fluid">
|
||||
<div class="header__bar flex-start">
|
||||
<div class="flex-grow-1">
|
||||
<a href="/" class="logo"></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="header__right"><a href="/login.html" class="btn btn_border_default header__btn">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_secondary header__btn">
|
||||
Sign Up
|
||||
</a></div>
|
||||
<div class="header-mobile">
|
||||
<button type="button" class="btn-toggle" data-toggle="dropdown">
|
||||
<i class="icon icon_user icon_size_18"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-right header-mobile__dropdown-menu">
|
||||
<a href="/login.html" class="btn btn_block btn_border_default">
|
||||
Login
|
||||
</a><a href="/?op=registration" class="btn btn_block btn_secondary">
|
||||
Sign Up
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
.modal {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.download-codes__copy {
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.download__player {
|
||||
position: relative;
|
||||
padding-top: 56.25%;
|
||||
}
|
||||
|
||||
.download__info-item {
|
||||
margin-bottom: 15px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.download__info-item a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.download__info-tags {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.downloadbox__dropdown-menu li a {
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
.downloadbox__quality {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.downloadbox__size {font-size: 13px;}
|
||||
</style>
|
||||
|
||||
|
||||
<!--100% ads-->
|
||||
<script src="/9271593.js" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<script src="/9271609.js" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<script data-cfasync="false" async type="text/javascript" src="//zm.nostocbark.com/rljPIWhbr4xr/115547"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script language="JavaScript" type="7df5bff9531f834fe6fb8e32-text/javascript" CHARSET="UTF-8" src="https://supervideo.cc/js/jquery.cookie.js"></script>
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript">
|
||||
$.cookie('file_id', '1542239', { expires: 10 });
|
||||
$.cookie('aff', '15808', { expires: 10 });
|
||||
|
||||
</script>
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
|
||||
|
||||
<div class="download">
|
||||
<div class="download__top" style="background-image: url(https://supervideo.cc/assets/images/bg_download.png);">
|
||||
<div class="container">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="download__player">
|
||||
<div class="overlay " >
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript" src='https://supervideo.cc/player8/jwplayer.js'></script>
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript">jwplayer.key="9dOyFG96QFb9AWbR+FhhislXHfV1gIhrkaxLYfLydfiYyC0s";</script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-46849459-36" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript">
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-46849459-36');
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://supervideo.cc/assets/player/myskinfile.css?v=11">
|
||||
<script src="https://supervideo.cc/js/pop.js" type="7df5bff9531f834fe6fb8e32-text/javascript"></script>
|
||||
<div id='vplayer' style="width:100%;height:100%;text-align:center;"><img src="https://i.serversicuro.cc/qe1fviow8uwy_xt.jpg" style="width:100%;height:100%;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row justify-content-center align-items-center">
|
||||
<div class="col-sm-8 mr-auto">
|
||||
<h1 class="download__title">
|
||||
titanic-1997-2[castellano]
|
||||
</h1>
|
||||
<ul class="download__info">
|
||||
<li><i class="icon icon_clock icon_align_left"></i>
|
||||
on
|
||||
Jun 29, 2023
|
||||
</li>
|
||||
<li><i class="icon icon_user icon_align_left"></i><a href="/users/spainman">
|
||||
spainman
|
||||
</a></li>
|
||||
<li><i class="icon icon_eye icon_align_left"></i>
|
||||
257 views
|
||||
</li>
|
||||
<li><button type="button" class="btn download__flag" data-toggle="modal" data-target="#vid-flag"><i class="icon icon_flag"></i></button>
|
||||
<div class="modal fade" id="vid-flag" tabindex="-1" role="dialog" aria-labelledby="modal-title" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="modal-title">Flag:</h5>
|
||||
<button type="button" class="modal-close" data-dismiss="modal" aria-label="Close">
|
||||
<i class="icon icon_round-close icon_size_20"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body" id="id_flag">
|
||||
<form class="form" method="POST" action="/" onsubmit="if (!window.__cfRLUnblockHandlers) return false; $.post('/',$(this).serialize(),function(code){ eval(code); $('#id_flag').wrapInner('<span></span>').addClass('alert alert-success'); } );return false;" data-cf-modified-7df5bff9531f834fe6fb8e32-="">
|
||||
<input type="hidden" name="op" value="report_file">
|
||||
<input type="hidden" name="file_code" value="qe1fviow8uwy">
|
||||
<div class="form__group">
|
||||
<label class="form__label">
|
||||
Reason
|
||||
</label>
|
||||
<select class="input" name="report_type">
|
||||
<option>
|
||||
Broken video
|
||||
</option>
|
||||
<option>
|
||||
Wrong title/description
|
||||
</option>
|
||||
<option>
|
||||
Copyright restriction
|
||||
</option>
|
||||
<option>
|
||||
Other
|
||||
</option>
|
||||
</select></div>
|
||||
<div class="form__group">
|
||||
<textarea name="report_info" class="input" id="msg" rows="2" placeholder="Details"></textarea>
|
||||
</div>
|
||||
<input type="submit" name="add" value="Send Report" class="btn btn_primary">
|
||||
<button type="submit" class="btn btn_default" data-dismiss="modal">Cancel</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-auto">
|
||||
<ul class="download-social">
|
||||
<li><a class="download-social__item download-social__item_facebook" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Facebook', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://www.facebook.com/sharer/sharer.php?u=/qe1fviow8uwy" data-cf-modified-7df5bff9531f834fe6fb8e32-=""><i class="icon icon_facebook"></i></a></li>
|
||||
<li><a class="download-social__item download-social__item_twitter" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'Share Twitter', 'width=640,height=436,toolbar=0,status=0'); return false" href="https://twitter.com/intent/tweet?text=titanic-1997-2[castellano]" data-cf-modified-7df5bff9531f834fe6fb8e32-=""><i class="icon icon_twitter"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="dowonload-rating" id="vote">
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_plus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=qe1fviow8uwy&v=up')" title="Like" data-cf-modified-7df5bff9531f834fe6fb8e32-=""><i
|
||||
class="icon icon_like icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="likes_num">
|
||||
0
|
||||
</span></button>
|
||||
<span class="dowonload-rating__divider"></span>
|
||||
<button type="button" class="btn dowonload-rating__btn dowonload-rating__btn_minus" onclick="if (!window.__cfRLUnblockHandlers) return false; return jah('/?op=vote&file_code=qe1fviow8uwy&v=down')" title="Don't Like" data-cf-modified-7df5bff9531f834fe6fb8e32-=""><i
|
||||
class="icon icon_dislike icon_align_left icon-size_20 dowonload-rating__icon"></i><span id="dislikes_num">
|
||||
0
|
||||
</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
|
||||
|
||||
<div class="col-sm-auto">
|
||||
|
||||
<div class="downloadbox">
|
||||
<a href="#" data-toggle="dropdown" class="downloadbox__btn"> <i class="icon icon_download downloadbox__icon"></i> <span> <strong class="downloadbox__title">FREE DOWNLOAD</strong> Click to start Download </span> </a>
|
||||
<ul class="dropdown-menu downloadbox__dropdown-menu">
|
||||
|
||||
<li>
|
||||
<a href="#" onclick="if (!window.__cfRLUnblockHandlers) return false; download_video('qe1fviow8uwy','n','1542239-130-61-1747060129-06ba453e778f1e693b8906f55f759d53')" data-cf-modified-7df5bff9531f834fe6fb8e32-=""><i
|
||||
class="icon icon_download icon_size_18 icon_align_left"></i><b class="downloadbox__quality">
|
||||
Normal quality
|
||||
</b><span class="downloadbox__size">
|
||||
1280x544, 1.5 GB
|
||||
</span></a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 order-2 order-lg-1">
|
||||
|
||||
</div>
|
||||
<div class="col-lg-4 order-1 order-lg-2">
|
||||
<div class="dsh-block">
|
||||
<ul class="dsh-block__tabs nav">
|
||||
<li><a class="active" data-toggle="tab" href="#tab-link">
|
||||
Download Link
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-forum">
|
||||
Forum Code
|
||||
</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-html">HTML</a></li>
|
||||
<li><a data-toggle="tab" href="#tab-embed">Embed</a></li>
|
||||
</ul>
|
||||
<div class="dsh-block__body tab-content clearfix">
|
||||
<div class="tab-pane fade show active" id="tab-link">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">/qe1fviow8uwy</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-forum">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea class="input download-codes__area">[URL=/qe1fviow8uwy][IMG]https://i.serversicuro.cc/qe1fviow8uwy_t.jpg[/IMG]
|
||||
titanic-1997-2[castellano][/URL]
|
||||
[1280x544, 03:06:52]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-html">
|
||||
<div class="download-codes js-codes">
|
||||
<textarea
|
||||
class="input download-codes__area"><a href="/qe1fviow8uwy"><img src="https://i.serversicuro.cc/qe1fviow8uwy_t.jpg" border=0><br>titanic-1997-2[castellano]</a><br>[1280x544, 03:06:52]</textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="tab-embed">
|
||||
<div class="form__group">
|
||||
<div class="row align-items-center text-center justify-content-center">
|
||||
<div class="col-12">
|
||||
<label class="form__label">Embed size: </label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="row no-gutters align-items-center">
|
||||
<div class="col-auto">
|
||||
<input type="text" class="input" id="iew" value="640" size="3">
|
||||
</div>
|
||||
<div class="col-auto text-muted"><i class="icon icon_close icon_size_8 icon_align_left icon_align_right"></i></div>
|
||||
<div class="col-auto"><input class="input" type="text" id="ieh" value="360" size="3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="download-codes js-codes">
|
||||
<textarea id="iet" class="input download-codes__area"><div style="position:relative;padding-bottom:56%;padding-top:20px;height:0;"><irame src="/e/qe1fviow8uwy" frameborder=0 marginwidth=0 marginheight=0 scrolling=no width=640 height=360 allowfullscreen style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe></div></textarea>
|
||||
<button type="button" class="btn btn_link btn_sm download-codes__copy js-copy-codes"><i class="icon icon_copy icon_align_left"></i><span>Copy</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript">eval(function(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}('e("3l").3k({3j:[{m:"6://3i.n.4/3h/,3g,.3f/3e.3d"}],3c:"6://i.n.4/3b.11",3a:"14%",39:"14%",38:"10",37:"13.20",36:\'35\',34:"l",33:"l",32:"31",30:"2z",2y:[0.25,0.5,0.2x,1,1.25,1.5,2],2w:{2v:"2u"},2t:[{m:"/2s?t=2r&2q=13.20&2p=6://i.n.4/2o.11",2n:"2m"}],2l:{2k:\'#2j\',2i:12,2h:"2g",2f:0,2e:\'10\',2d:2c},2b:"2a",29:"",28:{m:"6://d.4/r/27.q",26:"6://d.4/c",8:"o-24",23:"5",u:l},22:{}});k f,j,h=0;k 21=0,1z=0;k 7=e();7.9(\'1y\',3(x){b(5>0&&x.8>=5&&j!=1){j=1;$(\'g.1x\').1w(\'1v\')}b(h==0&&x.8>=z&&x.8<=(z+2)){h=x.8}});7.9(\'1u\',3(x){y(x)});7.9(\'1t\',3(){$(\'g.w\').1s()});3 y(x){$(\'g.w\').u();b(f)1r;f=1;a=0;b(p.1q===1p){a=1}$.1o(\'/1n?t=1m&1l=c&1k=1j-1i-1h-1g-1f&1e=&a=\'+a,3(s){$(\'#1d\').1c(s)})}7.9(\'1b\',3(){});e().1a("6://d.4/r/19.q","18",3(){p.o.17.16=\'/v/c\'},"15");',36,130,'|||function|cc||https|player|position|on|adb|if|qe1fviow8uwy|supervideo|jwplayer|vvplay|div|x2ok||vvad|var|true|file|serversicuro|top|window|png|images|data|op|hide||video_ad||doPlay|2803|uniform|jpg||11212|100|download11|href|location|Download|download2|addButton|ready|html|fviews|embed|e6ad7bbe8d0f72791b61102dd99d70e2|1747060128|61|130|1542239|hash|file_code|view|dl|get|undefined|cRAds|return|show|complete|play|slow|fadeIn|video_ad_fadein|time|vastdone2||vastdone1|cast|margin|right||link|logo_p|logo|aboutlink|xvs|abouttext|90|fontOpacity|edgeStyle|backgroundOpacity|Verdana|fontFamily|fontSize|FFFFFF|color|captions|thumbnails|kind|qe1fviow8uwy0000|url|length|get_slides|dlf|tracks|myskin|name|skin|75|playbackRateControls|start|startparam|html5|primary|hlshtml|androidhls|metadata|preload|duration|stretching|height|width|qe1fviow8uwy_xt|image|m3u8|master|urlset|dnzpfv3w37g4a3gyvdzh5kjeyi4vtoyw4x4it5gxl4zzwiv4t3fxkvagrhea|hls|hfs295|sources|setup|vplayer'.split('|')))
|
||||
</script>
|
||||
<script type="7df5bff9531f834fe6fb8e32-text/javascript">
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container-fluid">
|
||||
<div class="footer__copyright">© 2017 - 2025 SuperVideo | Fast HLS Video Streaming Service
|
||||
</div>
|
||||
<ul class="footer__menu">
|
||||
<li><a href="">
|
||||
Home
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/faq">
|
||||
FAQ
|
||||
</a></li>
|
||||
<li><a href="/tos">
|
||||
Terms of service
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/premium">
|
||||
Trust Uploader
|
||||
</a></li>
|
||||
|
||||
|
||||
<li><a href="/make_money.html">
|
||||
Make Money
|
||||
</a></li>
|
||||
<li><a href="/checkfiles.html">
|
||||
Link Checker
|
||||
</a></li>
|
||||
<li><a href="/contacts">
|
||||
Contact Us
|
||||
</a></li>
|
||||
</ul>
|
||||
<div class="text-center" style="padding-top: 8px;">
|
||||
<!-- <a href="http://www.xvstheme.com/" rel="nofollow" title="Designed by XVSTheme" class="small text-reset" style="display:inline-flex; align-items: center">
|
||||
<span style="margin-right: 4px;">Designed by</span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="78.1" height="11" viewBox="0 0 78.1 11" xml:space="preserve"><path d="M73.5 7.5h-5.7c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.6 1.7-1.9 2.6-3.9 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9zm-3.9-3.1c-1.1 0-1.6.4-1.7 1.6h3.4c-.2-1.1-.7-1.6-1.7-1.6zM62 6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V6.3c0-1-.4-1.4-1.3-1.4-1 0-1.5.5-1.5 1.6v4.2h-2.3V3.1l2.1-.1.2 1c.4-.7 1.2-1.1 2.2-1.1 1.3 0 2.2.5 2.6 1.4.5-.9 1.3-1.4 2.5-1.4 2 0 3 1.1 3 3.4v4.5H62V6.3zM44.6 7.5c0 1.2.7 1.9 1.8 1.9.8 0 1.4-.4 1.6-1h2.4c-.5 1.7-1.8 2.6-3.8 2.6-2.8 0-4.2-1.4-4.2-4.1 0-2.8 1.3-4.1 4.1-4.1 2.7 0 4 1.3 4 3.8 0 .3 0 .6-.1.9h-5.8zm1.8-3.1c-1.1 0-1.6.4-1.7 1.6H48c-.1-1.1-.6-1.6-1.6-1.6zm-7.6 1.9c0-1-.4-1.4-1.4-1.4-1.2 0-1.6.5-1.6 1.6v4.2h-2.3V0h2.3v3.8c.4-.6 1.2-1 2.2-1 2.1 0 3.1 1.1 3.1 3.4v4.5h-2.4c.1.1.1-4.4.1-4.4zM27.4 7.6V5.2h-1.1V3.5l1.1-.4V1.4h2.3v1.7H32v2.1h-2.3v2.3c0 .9.3 1.2 1.2 1.2h1v2.1h-1.3c-2.3 0-3.2-.9-3.2-3.2zm-4.6-1.5c2.2.4 2.8.9 2.8 2.4S24.1 11 22 11c-2.4 0-3.8-.9-4.1-2.6h2.3c.2.6.7 1 1.7 1 .8 0 1.3-.4 1.3-.8 0-.5-.2-.7-1.2-.8l-1.5-.2c-1.8-.3-2.6-1-2.6-2.1C17.9 4 19.3 3 21.5 3c2.3 0 3.7.9 3.8 2.4h-2.4c-.1-.5-.7-.8-1.6-.8-.7 0-1.2.3-1.2.8 0 .4.2.6 1 .7.3-.1 1.7 0 1.7 0zM13.2 11c-2.2 0-3.1-1-3.5-3.5L9 3.1h2.3l.7 4.3c.2 1.1.5 1.5 1.2 1.5s1-.4 1.2-1.5l.6-4.3h2.4l-.7 4.4c-.4 2.5-1.4 3.5-3.5 3.5zm-7.3-.2L4.4 8.4l-1.6 2.3H0l2.8-3.9L.1 3.1h2.8l1.4 2.3 1.4-2.3h2.8L6 6.9l2.8 3.9H5.9z" fill="#000222"/><path d="M78.1 8.7h-2.6V11h2.6V8.7z" fill="#28e98c"/></svg>
|
||||
</a> -->
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="7df5bff9531f834fe6fb8e32-|49" defer></script></body>
|
||||
</html>
|
||||
148
src/utils/__fixtures__/Fetcher/https:verhdlink.cammoviett0120338
generated
Normal file
148
src/utils/__fixtures__/Fetcher/https:verhdlink.cammoviett0120338
generated
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Movie tt0120338</title>
|
||||
<meta name="description" content="Movie tt0120338">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" href="/static/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="/static/css/main.css?v=1.2.7" />
|
||||
<link rel="stylesheet" href="/static/css/dl.css?v=4" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<link rel="stylesheet" href="/static/css/_player.css?v=38" />
|
||||
<!--<link rel="stylesheet" href="/static/css/_player.css?v=1747060085" />-->
|
||||
|
||||
<div class="_player">
|
||||
|
||||
<ul class="_player-mirrors-type">
|
||||
<!-- <li class="active" data-type="castellano">
|
||||
Castellano
|
||||
</li>-->
|
||||
<li class="active" data-type="latino">
|
||||
Latino
|
||||
</li>
|
||||
<li class="" data-type="castellano">
|
||||
Castellano
|
||||
</li>
|
||||
<li class="" data-type="subtitulado">
|
||||
Subtitulado
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="_player-mirrors latino top_class active">
|
||||
<li class="active" data-link="//supervideo.cc/e/g6okbr0kd790">
|
||||
supervideo </li>
|
||||
<li class="" data-link="//dropload.io/embed-jjjx9j5joiz8.html">
|
||||
dropload </li>
|
||||
<li class="fullhd" data-link="https://verhdlink.cam/fullhd/index.php?code=tt0120338">
|
||||
Player HD
|
||||
</li>
|
||||
<li class="" data-link="//mixdrop.ag/e/vn0wx308fq984q">
|
||||
mixdrop </li>
|
||||
<li class="" data-link="https://streamtape.com/e/Bjp2vjrdBxsK82">
|
||||
streamtape </li>
|
||||
<li class="" data-link="//dood.to/e/rw7rxdfrbg09">
|
||||
doodstream </li>
|
||||
</ul>
|
||||
<ul class="_player-mirrors castellano top_class ">
|
||||
<li class="active" data-link="//supervideo.cc/e/qe1fviow8uwy">
|
||||
supervideo </li>
|
||||
<li class="" data-link="//dropload.io/embed-ick4ti66vt6s.html">
|
||||
dropload </li>
|
||||
<li class="fullhd" data-link="https://verhdlink.cam/fullhd/index.php?code=tt0120338">
|
||||
Player HD
|
||||
</li>
|
||||
<li class="" data-link="//mixdrop.ag/e/xokzmv61hrwe8o">
|
||||
mixdrop </li>
|
||||
<li class="" data-link="//dood.to/e/gy8l8mb2i311">
|
||||
doodstream </li>
|
||||
</ul>
|
||||
<ul class="_player-mirrors subtitulado top_class ">
|
||||
<li class="active" data-link="//supervideo.cc/e/8xc9f2x2w09p">
|
||||
supervideo </li>
|
||||
<li class="" data-link="//dropload.io/embed-3rj3nyfors6b.html">
|
||||
dropload </li>
|
||||
<li class="fullhd" data-link="https://verhdlink.cam/fullhd/index.php?code=tt0120338">
|
||||
Player HD
|
||||
</li>
|
||||
<li class="" data-link="//mixdrop.ag/e/rwrel38vigr0r7">
|
||||
mixdrop </li>
|
||||
<li class="" data-link="https://streamtape.com/e/a4vQmmKRkBfdeX">
|
||||
streamtape </li>
|
||||
<li class="" data-link="//dood.to/e/6bl3j6pugyuh">
|
||||
doodstream </li>
|
||||
</ul>
|
||||
|
||||
<div class="_player-container top_class">
|
||||
<a href="#" class="_player-play">
|
||||
<span><span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="35.3" height="38" viewBox="0 0 35.3 38">
|
||||
<path d="M33.5 22l-28 15.6c-2.4 1.3-5.5-.3-5.5-3V3.4C0 .7 3-.9 5.4.5l28 15.6c1.7.9 2.3 3 1.3 4.6-.2.5-.7 1-1.2 1.3z" fill="#fff" /></svg>
|
||||
</span></span>
|
||||
</a>
|
||||
<div class="_player-bar top_class">
|
||||
<div class="_player-time">
|
||||
<span>0:00</span>
|
||||
<span class="_player-time-bar"></span>
|
||||
<span>120:43</span>
|
||||
</div>
|
||||
<div class="_player-btns">
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="14" viewBox="0 0 13 14">
|
||||
<path d="M12.3 8.1L2 13.9c-.9.5-2-.1-2-1.1V1.3C0 .3 1.1-.3 2 .2L12.3 6c.7.3.9 1 .5 1.6-.1.2-.2.4-.5.5z" fill="#00c6ff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="17.9" height="16" viewBox="0 0 17.9 16">
|
||||
<path
|
||||
d="M12.5 4l-1.3 1.3c.6.7 1 1.7 1 2.7s-.4 2-1.1 2.7l1.3 1.3c1-1 1.7-2.4 1.7-4s-.6-3-1.6-4zm2.6-2.7l-1.3 1.3C15.2 4 16 5.9 16 8s-.8 4-2.2 5.3l1.3 1.3c1.7-1.7 2.8-4.1 2.8-6.7s-1.1-4.8-2.8-6.6zM2.4 5.2H0v5.6h2.4L7.5 16h1.9V0H7.5L2.4 5.2zm5.1 8.1L3.1 8.9H1.9V7.1h1.3l4.4-4.4v10.6z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="34.3" height="14" viewBox="0 0 34.3 14">
|
||||
<path
|
||||
d="M7 0C3.1 0 0 3.1 0 7s3.1 7 7 7c2.6 0 4.8-1.4 6-3.5l-1.4-.8c-.9 1.6-2.6 2.7-4.6 2.7-3 0-5.4-2.4-5.4-5.4C1.6 4 4 1.6 7 1.6c1.5 0 2.8.6 3.8 1.6L9 5h4.6V.3L11.9 2C10.6.8 8.9 0 7 0zm14.2 5.1h-1.3V7h-1.8v1.3h1.8v2h1.3v-2H23V7h-1.8V5.1zm2.9-.2V6l1.7-.5V11h1.4V3.9H27l-2.9 1zm9.5-.3c-.4-.5-1-.8-1.8-.8s-1.4.3-1.8.8c-.4.5-.6 1.3-.6 2.3v1.3c0 1 .2 1.7.6 2.2.4.5 1 .8 1.8.8s1.4-.3 1.8-.8c.4-.5.6-1.3.6-2.3V6.8c.1-1-.1-1.7-.6-2.2zm-.7 3.7c0 .6-.1 1-.2 1.2-.2.3-.4.4-.7.4-.3 0-.6-.1-.8-.4-.2-.3-.2-.7-.2-1.3V6.5c0-.5.1-.9.3-1.2.2-.3.4-.4.7-.4.3 0 .6.1.8.4.2.3.2.7.2 1.3v1.7z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<div class="space"></div>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.5" height="16" viewBox="0 0 20.5 16">
|
||||
<path
|
||||
d="M2.2 12.2c.5 0 1-.4 1-1V4.8c0-.4-.2-.7-.6-.9-.4-.1-.8-.1-1 .2L.3 5.4c-.4.4-.4 1 0 1.4.3.2.6.3 1 .2v4.2c0 .5.4 1 .9 1zm3.7-8.4c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8h1.3c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8H5.9zM7 10.2H6V5.8h1v4.4zm4.7-6.4c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8H13c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8h-1.3zm1.1 6.4h-1V9h1v1.2zm0-3.2h-1V5.8h1V7zm5.9-3.2h-1.3c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8h1.3c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8zm-.2 6.4h-1V5.8h1v4.4zM1 1.9h18.5c.5 0 1-.4 1-1 0-.5-.4-1-1-1H1C.4 0 0 .4 0 1c0 .5.4.9 1 .9zm18.5 12.2H1c-.5 0-1 .4-1 1s.4 1 1 1h18.5c.5 0 1-.4 1-1s-.5-1-1-1z"
|
||||
fill="#00c6ff" /></svg>
|
||||
</a>
|
||||
<a href="/peliculas-4k.php" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.5" height="16" viewBox="0 0 20.5 16">
|
||||
<path
|
||||
d="M1 1.9h18.6c.5 0 1-.4 1-1 0-.5-.4-1-1-1H1C.4 0 0 .4 0 1c0 .5.4.9 1 .9zm18.5 12.2H1c-.5 0-1 .4-1 1s.4 1 1 1h18.6c.5 0 1-.4 1-1s-.5-1-1.1-1zM16 5.5c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L12.8 6V4.8c0-.5-.4-1-1-1s-1 .4-1 1v6.4c0 .5.4 1 1 1s1-.4 1-1V10l1.9 1.9c.2.2.4.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4l-2.1-2c-.1-.1-.2-.3-.2-.5s.1-.3.2-.5l2-2zm-7.4 6.7c.5 0 1-.4 1-1V4.8c0-.5-.4-1-1-1-.5 0-1 .4-1 1V7h-1V4.8c0-.5-.4-1-1-1-.5 0-1 .4-1 1V8c0 .5.4 1 1 1h1.9v2.2c.2.6.6 1 1.1 1z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path
|
||||
d="M5 0H1C.4 0 0 .4 0 1v4c0 .6.4 1 1 1s1-.4 1-1V2h3c.6 0 1-.4 1-1s-.4-1-1-1zm10 0h-4c-.6 0-1 .4-1 1s.4 1 1 1h3v3c0 .6.4 1 1 1s1-.4 1-1V1c0-.6-.4-1-1-1zM5 14H2v-3c0-.6-.4-1-1-1s-1 .4-1 1v4c0 .6.4 1 1 1h4c.6 0 1-.4 1-1 0-.5-.4-1-1-1zm10-4c-.6 0-1 .4-1 1v3h-3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<img src="https://m.media-amazon.com/images/M/MV5BMjAxNzEwNTUwNF5BMl5BanBnXkFtZTcwNjE3NTk1Nw@@._V1_QL75_UX820_.jpg" class="_player-cover top_class" alt="">
|
||||
<iframe id="_player" class="top_class" style="" allowfullscreen="" src="" scrolling="no" style="background-color:#fff"></iframe>
|
||||
<div class="spinner-container" style="display:none">
|
||||
<div class="spinner-border"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/static/js/jquery.min.js"></script>
|
||||
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/static/js/main.js?v=10.7"></script>
|
||||
<!--<script src="/static/js/main.js?v=1747060085"></script>-->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
96
src/utils/__fixtures__/Fetcher/https:verhdlink.cammoviett12345678
generated
Normal file
96
src/utils/__fixtures__/Fetcher/https:verhdlink.cammoviett12345678
generated
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Movie </title>
|
||||
<meta name="description" content="Movie ">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" href="/static/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="/static/css/main.css?v=1.2.7" />
|
||||
<link rel="stylesheet" href="/static/css/dl.css?v=4" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<link rel="stylesheet" href="/static/css/_player.css?v=38" />
|
||||
<!--<link rel="stylesheet" href="/static/css/_player.css?v=1747060128" />-->
|
||||
|
||||
<div class="_player">
|
||||
|
||||
<ul class="_player-mirrors-type">
|
||||
<!-- <li class="active" data-type="castellano">
|
||||
Castellano
|
||||
</li>-->
|
||||
</ul>
|
||||
|
||||
|
||||
<div class="_player-container top_class">
|
||||
<a href="#" class="_player-play">
|
||||
<span><span>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="35.3" height="38" viewBox="0 0 35.3 38">
|
||||
<path d="M33.5 22l-28 15.6c-2.4 1.3-5.5-.3-5.5-3V3.4C0 .7 3-.9 5.4.5l28 15.6c1.7.9 2.3 3 1.3 4.6-.2.5-.7 1-1.2 1.3z" fill="#fff" /></svg>
|
||||
</span></span>
|
||||
</a>
|
||||
<div class="_player-bar top_class">
|
||||
<div class="_player-time">
|
||||
<span>0:00</span>
|
||||
<span class="_player-time-bar"></span>
|
||||
<span>120:43</span>
|
||||
</div>
|
||||
<div class="_player-btns">
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="14" viewBox="0 0 13 14">
|
||||
<path d="M12.3 8.1L2 13.9c-.9.5-2-.1-2-1.1V1.3C0 .3 1.1-.3 2 .2L12.3 6c.7.3.9 1 .5 1.6-.1.2-.2.4-.5.5z" fill="#00c6ff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="17.9" height="16" viewBox="0 0 17.9 16">
|
||||
<path
|
||||
d="M12.5 4l-1.3 1.3c.6.7 1 1.7 1 2.7s-.4 2-1.1 2.7l1.3 1.3c1-1 1.7-2.4 1.7-4s-.6-3-1.6-4zm2.6-2.7l-1.3 1.3C15.2 4 16 5.9 16 8s-.8 4-2.2 5.3l1.3 1.3c1.7-1.7 2.8-4.1 2.8-6.7s-1.1-4.8-2.8-6.6zM2.4 5.2H0v5.6h2.4L7.5 16h1.9V0H7.5L2.4 5.2zm5.1 8.1L3.1 8.9H1.9V7.1h1.3l4.4-4.4v10.6z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="34.3" height="14" viewBox="0 0 34.3 14">
|
||||
<path
|
||||
d="M7 0C3.1 0 0 3.1 0 7s3.1 7 7 7c2.6 0 4.8-1.4 6-3.5l-1.4-.8c-.9 1.6-2.6 2.7-4.6 2.7-3 0-5.4-2.4-5.4-5.4C1.6 4 4 1.6 7 1.6c1.5 0 2.8.6 3.8 1.6L9 5h4.6V.3L11.9 2C10.6.8 8.9 0 7 0zm14.2 5.1h-1.3V7h-1.8v1.3h1.8v2h1.3v-2H23V7h-1.8V5.1zm2.9-.2V6l1.7-.5V11h1.4V3.9H27l-2.9 1zm9.5-.3c-.4-.5-1-.8-1.8-.8s-1.4.3-1.8.8c-.4.5-.6 1.3-.6 2.3v1.3c0 1 .2 1.7.6 2.2.4.5 1 .8 1.8.8s1.4-.3 1.8-.8c.4-.5.6-1.3.6-2.3V6.8c.1-1-.1-1.7-.6-2.2zm-.7 3.7c0 .6-.1 1-.2 1.2-.2.3-.4.4-.7.4-.3 0-.6-.1-.8-.4-.2-.3-.2-.7-.2-1.3V6.5c0-.5.1-.9.3-1.2.2-.3.4-.4.7-.4.3 0 .6.1.8.4.2.3.2.7.2 1.3v1.7z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<div class="space"></div>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.5" height="16" viewBox="0 0 20.5 16">
|
||||
<path
|
||||
d="M2.2 12.2c.5 0 1-.4 1-1V4.8c0-.4-.2-.7-.6-.9-.4-.1-.8-.1-1 .2L.3 5.4c-.4.4-.4 1 0 1.4.3.2.6.3 1 .2v4.2c0 .5.4 1 .9 1zm3.7-8.4c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8h1.3c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8H5.9zM7 10.2H6V5.8h1v4.4zm4.7-6.4c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8H13c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8h-1.3zm1.1 6.4h-1V9h1v1.2zm0-3.2h-1V5.8h1V7zm5.9-3.2h-1.3c-1 0-1.8.8-1.8 1.8v4.8c0 1 .8 1.8 1.8 1.8h1.3c1 0 1.8-.8 1.8-1.8V5.6c0-1-.8-1.8-1.8-1.8zm-.2 6.4h-1V5.8h1v4.4zM1 1.9h18.5c.5 0 1-.4 1-1 0-.5-.4-1-1-1H1C.4 0 0 .4 0 1c0 .5.4.9 1 .9zm18.5 12.2H1c-.5 0-1 .4-1 1s.4 1 1 1h18.5c.5 0 1-.4 1-1s-.5-1-1-1z"
|
||||
fill="#00c6ff" /></svg>
|
||||
</a>
|
||||
<a href="/peliculas-4k.php" target="_blank">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20.5" height="16" viewBox="0 0 20.5 16">
|
||||
<path
|
||||
d="M1 1.9h18.6c.5 0 1-.4 1-1 0-.5-.4-1-1-1H1C.4 0 0 .4 0 1c0 .5.4.9 1 .9zm18.5 12.2H1c-.5 0-1 .4-1 1s.4 1 1 1h18.6c.5 0 1-.4 1-1s-.5-1-1.1-1zM16 5.5c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L12.8 6V4.8c0-.5-.4-1-1-1s-1 .4-1 1v6.4c0 .5.4 1 1 1s1-.4 1-1V10l1.9 1.9c.2.2.4.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4l-2.1-2c-.1-.1-.2-.3-.2-.5s.1-.3.2-.5l2-2zm-7.4 6.7c.5 0 1-.4 1-1V4.8c0-.5-.4-1-1-1-.5 0-1 .4-1 1V7h-1V4.8c0-.5-.4-1-1-1-.5 0-1 .4-1 1V8c0 .5.4 1 1 1h1.9v2.2c.2.6.6 1 1.1 1z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
<a href="#" onclick="return false">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<path
|
||||
d="M5 0H1C.4 0 0 .4 0 1v4c0 .6.4 1 1 1s1-.4 1-1V2h3c.6 0 1-.4 1-1s-.4-1-1-1zm10 0h-4c-.6 0-1 .4-1 1s.4 1 1 1h3v3c0 .6.4 1 1 1s1-.4 1-1V1c0-.6-.4-1-1-1zM5 14H2v-3c0-.6-.4-1-1-1s-1 .4-1 1v4c0 .6.4 1 1 1h4c.6 0 1-.4 1-1 0-.5-.4-1-1-1zm10-4c-.6 0-1 .4-1 1v3h-3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1z"
|
||||
fill="#fff" /></svg>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<img src="" class="_player-cover top_class" alt="">
|
||||
<iframe id="_player" class="top_class" style="" allowfullscreen="" src="" scrolling="no" style="background-color:#fff"></iframe>
|
||||
<div class="spinner-container" style="display:none">
|
||||
<div class="spinner-border"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/static/js/jquery.min.js"></script>
|
||||
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/static/js/main.js?v=10.7"></script>
|
||||
<!--<script src="/static/js/main.js?v=1747060128"></script>-->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Loading…
Reference in a new issue