c1c31d7685
Major improvements: - Series TV support via FS7 provider with dedicated search endpoint - Vidzy downloader now uses Playwright for JS obfuscation and ffmpeg for HLS streams - Episode filenames properly named (Series Title - Episode X) instead of master.m3u8.mp4 - Duplicate download prevention: checks existing tasks before creating new ones - Removed host preference system in favor of intelligent URL-based detection Technical changes: - Vidzy: Added Playwright extraction and M3U8→MP4 conversion with ffmpeg - FS7: Episodes now use pipe format (video_url|series_url|episode_title) - DownloadManager: Extract target_filename from pipe URL and prevent duplicates - UI: New Series tab with search, recommendations, and releases sections - Anime-Sama: Removed hardcoded host preferences, uses site's URL order Generated with [Claude Code](https://claude.com/claude-code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
28 lines
961 B
HTML
28 lines
961 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ohm Stream Downloader</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
|
|
<!-- JavaScript -->
|
|
<script src="/static/js/api.js?v=1.5" defer></script>
|
|
<script src="/static/js/utils.js?v=1.5" defer></script>
|
|
<script src="/static/js/downloads.js?v=1.5" defer></script>
|
|
<script src="/static/js/anime.js?v=1.5" defer></script>
|
|
<script src="/static/js/anime-details.js?v=1.5" defer></script>
|
|
<script src="/static/js/series-search.js?v=1.5" defer></script>
|
|
<script src="/static/js/recommendations.js?v=1.5" defer></script>
|
|
<script src="/static/js/tabs.js?v=1.5" defer></script>
|
|
<script src="/static/js/main.js?v=1.5" defer></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|