├── .gitignore ├── PotPlayer 3D.bat ├── README.md └── Resources ├── 7-Zip └── 7-Zip.url ├── AviSynth ├── AviSynth.exe.url └── WINDIR │ └── SysWOW64 │ └── avisynth.dll.url ├── NVIDIA Profile Inspector ├── NVIDIA Profile Inspector.url └── Profiles │ └── DaumPot Player.nip ├── PotPlayer ├── OpenCodecSetup.exe.url ├── PotPlayerSetup.exe.url └── Settings │ ├── 24-bit audio bit depth.reg │ ├── 7.1 Surround.reg │ ├── Audio normalization disabled.reg │ ├── Blu-ray 3D decoding.reg │ ├── NVIDIA 3D Vision.reg │ ├── SVP motion interpolation.reg │ └── madVR image upscaler.reg ├── SVP ├── PROGRAMDATA │ └── SVP 3.1 │ │ ├── Profiles │ │ └── s m o o t h │ │ └── Settings │ │ ├── SVPMgr.ini │ │ └── settings.ini └── SVP.exe.url ├── Uninstall.bat └── Versions.txt /.gitignore: -------------------------------------------------------------------------------- 1 | Release/ -------------------------------------------------------------------------------- /PotPlayer 3D.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/PotPlayer 3D.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/README.md -------------------------------------------------------------------------------- /Resources/7-Zip/7-Zip.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/7-Zip/7-Zip.url -------------------------------------------------------------------------------- /Resources/AviSynth/AviSynth.exe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/AviSynth/AviSynth.exe.url -------------------------------------------------------------------------------- /Resources/AviSynth/WINDIR/SysWOW64/avisynth.dll.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/AviSynth/WINDIR/SysWOW64/avisynth.dll.url -------------------------------------------------------------------------------- /Resources/NVIDIA Profile Inspector/NVIDIA Profile Inspector.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/NVIDIA Profile Inspector/NVIDIA Profile Inspector.url -------------------------------------------------------------------------------- /Resources/NVIDIA Profile Inspector/Profiles/DaumPot Player.nip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/NVIDIA Profile Inspector/Profiles/DaumPot Player.nip -------------------------------------------------------------------------------- /Resources/PotPlayer/OpenCodecSetup.exe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/OpenCodecSetup.exe.url -------------------------------------------------------------------------------- /Resources/PotPlayer/PotPlayerSetup.exe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/PotPlayerSetup.exe.url -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/24-bit audio bit depth.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/24-bit audio bit depth.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/7.1 Surround.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/7.1 Surround.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/Audio normalization disabled.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/Audio normalization disabled.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/Blu-ray 3D decoding.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/Blu-ray 3D decoding.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/NVIDIA 3D Vision.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/NVIDIA 3D Vision.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/SVP motion interpolation.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/SVP motion interpolation.reg -------------------------------------------------------------------------------- /Resources/PotPlayer/Settings/madVR image upscaler.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/PotPlayer/Settings/madVR image upscaler.reg -------------------------------------------------------------------------------- /Resources/SVP/PROGRAMDATA/SVP 3.1/Profiles/s m o o t h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/SVP/PROGRAMDATA/SVP 3.1/Profiles/s m o o t h -------------------------------------------------------------------------------- /Resources/SVP/PROGRAMDATA/SVP 3.1/Settings/SVPMgr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/SVP/PROGRAMDATA/SVP 3.1/Settings/SVPMgr.ini -------------------------------------------------------------------------------- /Resources/SVP/PROGRAMDATA/SVP 3.1/Settings/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/SVP/PROGRAMDATA/SVP 3.1/Settings/settings.ini -------------------------------------------------------------------------------- /Resources/SVP/SVP.exe.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/SVP/SVP.exe.url -------------------------------------------------------------------------------- /Resources/Uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/Uninstall.bat -------------------------------------------------------------------------------- /Resources/Versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreeDeeJay/PotPlayer3D/HEAD/Resources/Versions.txt --------------------------------------------------------------------------------