{"id":14963797,"url":"https://github.com/der3318/m3u8-dlwrapper","last_synced_at":"2025-10-25T03:30:48.080Z","repository":{"id":92549074,"uuid":"458489075","full_name":"der3318/m3u8-dlwrapper","owner":"der3318","description":".Net Framework 4.7.2 - WPF Application that Downloads HLS using FFmpeg","archived":false,"fork":false,"pushed_at":"2024-03-15T10:43:46.000Z","size":33908,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T05:25:12.906Z","etag":null,"topics":["automation","ffmpeg","http-live-streaming","windows-presentation-foundation"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/der3318.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-12T10:29:07.000Z","updated_at":"2024-10-22T08:29:30.000Z","dependencies_parsed_at":"2024-03-15T11:58:44.661Z","dependency_job_id":null,"html_url":"https://github.com/der3318/m3u8-dlwrapper","commit_stats":{"total_commits":11,"total_committers":2,"mean_commits":5.5,"dds":"0.18181818181818177","last_synced_commit":"b1248f3309405bf4d4da2856f24ddb8049dad309"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/der3318%2Fm3u8-dlwrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/der3318%2Fm3u8-dlwrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/der3318%2Fm3u8-dlwrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/der3318%2Fm3u8-dlwrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/der3318","download_url":"https://codeload.github.com/der3318/m3u8-dlwrapper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238071090,"owners_count":19411600,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","ffmpeg","http-live-streaming","windows-presentation-foundation"],"created_at":"2024-09-24T13:32:09.619Z","updated_at":"2025-10-25T03:30:43.028Z","avatar_url":"https://github.com/der3318.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n## 📹 HLS Download Wrapper\n\n![version](https://img.shields.io/badge/version-1.1.0.0-blue.svg)\n![dotnetframework](https://img.shields.io/badge/.net%20framework-4.7.2-green.svg)\n[![ffmpeg](https://img.shields.io/badge/ffmpeg-4.4-brightgreen.svg)](https://github.com/FFmpeg/FFmpeg/commit/f68ab9de4e)\n[![icon](https://img.shields.io/badge/icon-iconfinder-pink.svg)](https://www.iconfinder.com)\n![portable](https://img.shields.io/badge/portable-windows%20x64-yellow.svg)\n![license](https://img.shields.io/badge/license-GPL%20%28inherited%29-blueviolet.svg)\n\nWPF interface bridging the m3u8 stream download utility of [FFmpeg](https://github.com/FFmpeg/FFmpeg).\n\n\u003cimg src=\"/imgs/Demo.gif?raw=true\"\u003e\n\n\n### 💡 How This Works\n\nVisit [m3u8-dlwrapper.zip](https://github.com/der3318/m3u8-dlwrapper/releases/download/v1.1.0.0/m3u8-dlwrapper.zip) for the built binaries, or build the WPF project using Visual Studio on your own. Unzip and run `m3u8-dlwrapper.exe` on a Windows x64 machine. Enter the clip info to start downloading a .m3u8 stream.\n\nThese are what the tool actually does in the backend:\n\n| Option | FFmpeg Command |\n| :- | :- |\n| 2x checked | ffmpeg.exe -user_agent \"{UserAgent}\" -headers \"{Cookie}\" -i {M3U8Link} -filter_complex \"[0:v]setpts=PTS/2[v];[0:a]atempo=2[a]\" -map \"[v]\" -map \"[a]\" -bsf:a aac_adtstoasc {SaveAs.mp4}\n| 2x unchecked | ffmpeg.exe -user_agent \"{UserAgent}\" -headers \"{Cookie}\" -i {M3U8Link} -c copy -bsf:a aac_adtstoasc {SaveAs.mp4} |\n\nAll the STDOUT and STDERR (100 latest lines) of `ffmpeg.exe` wil be redirect and kept in the text area.\n\n\n### 🖇️ How to Use - HLS (.m3u8) Link Retrieval\n\nChromium's DevTools panel (F12) is very useful. HLS links can be easily captured under \"Network\" tab when using \".m3u8\" as the filter. Noted that this no longer works for Youtube and Bilibili, but it's still worth trying on some other video sites.\n\n\u003cimg src=\"/imgs/LinkRetrieval.png\"\u003e\n\n\n### 🌐 How to Use - User Agent\n\nSometimes your request to a HLS link might be rejected due to incorrect user agent. Override the browser agent to your own with help of the online query: https://www.whatismybrowser.com/detect/what-is-my-user-agent\n\n\u003cimg src=\"/imgs/UserAgent.png\"\u003e\n\n\n### 🍪 How to Use - Cookie\n\nFor those sites requiring sign-in and memberships to view videos, cookies play an important role. You might need to duplicate some cookies in order to make the tool works. Take a look at what are being used by clicking at the begining of the URL field:\n\n\u003cimg src=\"/imgs/Cookie.png\"\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fder3318%2Fm3u8-dlwrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fder3318%2Fm3u8-dlwrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fder3318%2Fm3u8-dlwrapper/lists"}