├── COPYING ├── README.md ├── bin ├── .gitignore └── patch.exe ├── input ├── PortalPlayer.swf ├── TudouVideoPlayer_Homer_NewSkin.swf ├── TudouYoukuPlayer_Homer.swf ├── TudouYoukuPlayer_Homer.swf.281.replace.swf └── player.swf ├── link.json ├── output ├── PortalPlayer.swf └── SocialPlayer.swf ├── patch ├── PortalPlayer-1-3.swf.patch ├── PortalPlayer-1.swf.patch ├── SocialPlayer-1-3.swf.patch ├── SocialPlayer-1.swf.patch ├── TudouVideoPlayer_Homer_NewSkin.swf.patch ├── TudouYoukuPlayer_Homer.swf.281.replace.swf.patch ├── TudouYoukuPlayer_Homer.swf.patch └── player.swf.patch ├── temp └── .gitignore ├── tools └── WinRABCDAsm │ ├── Microsoft.CompilerServices.AsyncTargetingPack.Net4.dll │ ├── NLog.dll │ ├── RABCDAsm │ ├── CHANGELOG.md │ ├── COPYING │ ├── README.md │ ├── abcexport.exe │ ├── abcreplace.exe │ ├── asasm.hrc │ ├── liblzma.dll │ ├── liblzma.lib │ ├── rabcasm.exe │ ├── rabcdasm.exe │ ├── swf7zcompress.exe │ ├── swfbinexport.exe │ ├── swfbinreplace.exe │ ├── swfdecompress.exe │ └── swflzmacompress.exe │ ├── WinRABCDAsm.exe │ └── WinRABCDAsm.exe.config └── url.json /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /bin/patch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/bin/patch.exe -------------------------------------------------------------------------------- /input/PortalPlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/input/PortalPlayer.swf -------------------------------------------------------------------------------- /input/TudouVideoPlayer_Homer_NewSkin.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/input/TudouVideoPlayer_Homer_NewSkin.swf -------------------------------------------------------------------------------- /input/TudouYoukuPlayer_Homer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/input/TudouYoukuPlayer_Homer.swf -------------------------------------------------------------------------------- /input/TudouYoukuPlayer_Homer.swf.281.replace.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/input/TudouYoukuPlayer_Homer.swf.281.replace.swf -------------------------------------------------------------------------------- /input/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/input/player.swf -------------------------------------------------------------------------------- /link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/link.json -------------------------------------------------------------------------------- /output/PortalPlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/output/PortalPlayer.swf -------------------------------------------------------------------------------- /output/SocialPlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/output/SocialPlayer.swf -------------------------------------------------------------------------------- /patch/PortalPlayer-1-3.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/PortalPlayer-1-3.swf.patch -------------------------------------------------------------------------------- /patch/PortalPlayer-1.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/PortalPlayer-1.swf.patch -------------------------------------------------------------------------------- /patch/SocialPlayer-1-3.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/SocialPlayer-1-3.swf.patch -------------------------------------------------------------------------------- /patch/SocialPlayer-1.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/SocialPlayer-1.swf.patch -------------------------------------------------------------------------------- /patch/TudouVideoPlayer_Homer_NewSkin.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/TudouVideoPlayer_Homer_NewSkin.swf.patch -------------------------------------------------------------------------------- /patch/TudouYoukuPlayer_Homer.swf.281.replace.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/TudouYoukuPlayer_Homer.swf.281.replace.swf.patch -------------------------------------------------------------------------------- /patch/TudouYoukuPlayer_Homer.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/TudouYoukuPlayer_Homer.swf.patch -------------------------------------------------------------------------------- /patch/player.swf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/patch/player.swf.patch -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/temp/.gitignore -------------------------------------------------------------------------------- /tools/WinRABCDAsm/Microsoft.CompilerServices.AsyncTargetingPack.Net4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/Microsoft.CompilerServices.AsyncTargetingPack.Net4.dll -------------------------------------------------------------------------------- /tools/WinRABCDAsm/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/NLog.dll -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/CHANGELOG.md -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/COPYING -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/README.md -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/abcexport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/abcexport.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/abcreplace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/abcreplace.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/asasm.hrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/asasm.hrc -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/liblzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/liblzma.dll -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/liblzma.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/liblzma.lib -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/rabcasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/rabcasm.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/rabcdasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/rabcdasm.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/swf7zcompress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/swf7zcompress.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/swfbinexport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/swfbinexport.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/swfbinreplace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/swfbinreplace.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/swfdecompress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/swfdecompress.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/RABCDAsm/swflzmacompress.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/RABCDAsm/swflzmacompress.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/WinRABCDAsm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/WinRABCDAsm.exe -------------------------------------------------------------------------------- /tools/WinRABCDAsm/WinRABCDAsm.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/tools/WinRABCDAsm/WinRABCDAsm.exe.config -------------------------------------------------------------------------------- /url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alongL/CleanPlayer/HEAD/url.json --------------------------------------------------------------------------------