MissAV [ALL]: Fix HTTP 403 on video playback (fix #633)#634
Merged
Conversation
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideRoutes MissAV HLS playback through the local m3u8server proxy so Cloudflare WAF is only seeing OkHttp traffic, by introducing M3u8Integration usage in the source and wiring in the new library dependency and version bump. Sequence diagram for updated HLS playback via M3u8IntegrationsequenceDiagram
actor User
participant MissAV
participant PlaylistUtils
participant M3u8Integration
participant Player
User->>MissAV: openVideo
MissAV->>PlaylistUtils: extractFromHls(masterPlaylist, referer)
PlaylistUtils-->>MissAV: videos
MissAV->>M3u8Integration: processVideoList(videos)
M3u8Integration-->>MissAV: proxiedVideos
MissAV-->>Player: proxiedVideos
Player->>Player: play proxiedVideos
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
… surrit.com CDN surrit.com added Cloudflare WAF which blocks mpv's TLS fingerprint (ffmpeg stack) with HTTP 403, while OkHttp passes fine. Route video playback through the local m3u8 proxy server so all upstream fetches use OkHttp instead of mpv's native network stack. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
jhangyu
force-pushed
the
fix/missav-cloudflare-403
branch
from
July 12, 2026 17:29
0c4204e to
a4dcdbd
Compare
|
Related to #542 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #542.
surrit.comCDN added Cloudflare WAF. OkHttp passes, but mpv's ffmpeg TLS fingerprint gets blocked with 403. Route HLS playback through the localm3u8serverproxy so all upstream fetches use OkHttp.Checklist:
extVersionCodevalue inbuild.gradlefor individual extensionsoverrideVersionCodeorbaseVersionCodeas needed for all multisrc extensionsisNsfw = trueflag inbuild.gradlewhen appropriateidif a source's name or language were changedweb_hi_res_512.pngwhen adding a new extensionAdd a 👍 reaction to pull requests you find important.
Summary by Sourcery
Route MissAV HLS video playback through the local m3u8 proxy to avoid CDN 403 errors and update the extension metadata accordingly.
Bug Fixes:
Enhancements:
Build: