Legend017/mediaflow-proxy
0
1<!DOCTYPE html>2<html lang="en">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>MediaFlow Proxy</title>7 <link rel="icon" href="/logo.png" type="image/x-icon">8 <style>9 body {10 font-family: Arial, sans-serif;11 line-height: 1.6;12 color: #333;13 max-width: 800px;14 margin: 0 auto;15 padding: 20px;16 background-color: #f9f9f9;17 }18 19 header {20 background-color: #90aacc;21 color: #fff;22 padding: 10px 0;23 text-align: center;24 }25 26 header img {27 width: 200px;28 height: 200px;29 vertical-align: middle;30 border-radius: 15px;31 }32 33 header h1 {34 display: inline;35 margin-left: 20px;36 font-size: 36px;37 }38 39 .feature {40 background-color: #f4f4f4;41 border-left: 4px solid #3498db;42 padding: 10px;43 margin-bottom: 10px;44 }45 46 a {47 color: #3498db;48 }49 </style>50</head>51<body>52<header>53 <img src="/logo.png" alt="MediaFlow Proxy Logo">54 <h1>MediaFlow Proxy</h1>55</header>56<p>A high-performance proxy server for streaming media, supporting HTTP(S), HLS, and MPEG-DASH with real-time DRM decryption.</p>57 58<h2>Key Features</h2>59<div class="feature">Convert MPEG-DASH streams (DRM-protected and non-protected) to HLS</div>60<div class="feature">Support for Clear Key DRM-protected MPD DASH streams</div>61<div class="feature">Handle both live and video-on-demand (VOD) DASH streams</div>62<div class="feature">Proxy HTTP/HTTPS links with custom headers</div>63<div class="feature">Proxy and modify HLS (M3U8) streams in real-time with custom headers and key URL modifications for bypassing some sneaky restrictions.</div>64<div class="feature">Protect against unauthorized access and network bandwidth abuses</div>65 66<h2>Getting Started</h2>67<p>Visit the <a href="https://github.com/mhdzumair/mediaflow-proxy">GitHub repository</a> for installation instructions and documentation.</p>68 69<h2>Premium Hosted Service</h2>70<p>For a hassle-free experience, check out <a href="https://store.elfhosted.com/product/mediaflow-proxy">premium hosted service on ElfHosted</a>.</p>71 72<h2>API Documentation</h2>73<p>Explore the <a href="/docs">Swagger UI</a> for comprehensive details about the API endpoints and their usage.</p>74 75</body>76</html>