├── .gitignore ├── .pycodestyle ├── .pylintrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── docs └── features.md ├── mypy.ini ├── requirements.txt ├── run.py ├── setup.cfg ├── setup.py ├── stubs ├── PyQt5 │ ├── Qt.pyi │ ├── __init__.pyi │ └── sip.pyi ├── cueparser │ └── __init__.pyi ├── psutil │ └── __init__.pyi ├── pysubs2 │ └── __init__.pyi ├── qdarkstyle │ └── __init__.pyi ├── vapoursynth │ ├── __init__.pyi │ └── vapoursynth.pyi └── yaml │ └── __init__.pyi ├── tests ├── Celltimes.txt ├── Cocoro Palette.mp4.ffindex ├── Cocoro Palette.mp4.lwi ├── EP01.qp ├── Import bookmarks from file.py ├── Toumei Elegy.keyframes.log ├── Untitled.vpy.bookmarks ├── [Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.cue ├── [Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.ogm.txt ├── [Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.xml ├── _last_session_.ses ├── candy_boy_05_tfm.txt ├── chapters.txt ├── jintai_01.scxvid.txt ├── koizumi_tc.txt ├── monte_01_tc.txt ├── monte_01_tc_v2.txt ├── script.vpy ├── test.ass ├── timestamps v2.txt └── timestamps v3.txt └── vspreview ├── __init__.py ├── __main__.py ├── core ├── __init__.py ├── abstracts.py ├── bases.py ├── better_abc.py └── types.py ├── main.py ├── models ├── __init__.py ├── outputs.py ├── scening.py └── zoom_levels.py ├── toolbars ├── __init__.py ├── benchmark.py ├── debug.py ├── misc.py ├── pipette.py ├── playback.py └── scening.py ├── utils ├── __init__.py ├── debug.py └── utils.py └── widgets ├── __init__.py ├── colorview.py ├── custom ├── __init__.py ├── combobox.py ├── edits.py ├── graphicsview.py └── misc.py └── timeline.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.gitignore -------------------------------------------------------------------------------- /.pycodestyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.pycodestyle -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/README.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/docs/features.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/run.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/setup.py -------------------------------------------------------------------------------- /stubs/PyQt5/Qt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/PyQt5/Qt.pyi -------------------------------------------------------------------------------- /stubs/PyQt5/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/PyQt5/sip.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/PyQt5/sip.pyi -------------------------------------------------------------------------------- /stubs/cueparser/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/cueparser/__init__.pyi -------------------------------------------------------------------------------- /stubs/psutil/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/psutil/__init__.pyi -------------------------------------------------------------------------------- /stubs/pysubs2/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/pysubs2/__init__.pyi -------------------------------------------------------------------------------- /stubs/qdarkstyle/__init__.pyi: -------------------------------------------------------------------------------- 1 | # pylint: skip-file 2 | 3 | def load_stylesheet_pyqt5() -> str: ... 4 | -------------------------------------------------------------------------------- /stubs/vapoursynth/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .vapoursynth import * 2 | -------------------------------------------------------------------------------- /stubs/vapoursynth/vapoursynth.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/vapoursynth/vapoursynth.pyi -------------------------------------------------------------------------------- /stubs/yaml/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/stubs/yaml/__init__.pyi -------------------------------------------------------------------------------- /tests/Celltimes.txt: -------------------------------------------------------------------------------- 1 | 100 2 | 150 3 | 200 -------------------------------------------------------------------------------- /tests/Cocoro Palette.mp4.ffindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/Cocoro Palette.mp4.ffindex -------------------------------------------------------------------------------- /tests/Cocoro Palette.mp4.lwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/Cocoro Palette.mp4.lwi -------------------------------------------------------------------------------- /tests/EP01.qp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/EP01.qp -------------------------------------------------------------------------------- /tests/Import bookmarks from file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/Import bookmarks from file.py -------------------------------------------------------------------------------- /tests/Toumei Elegy.keyframes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/Toumei Elegy.keyframes.log -------------------------------------------------------------------------------- /tests/Untitled.vpy.bookmarks: -------------------------------------------------------------------------------- 1 | 1045, 1179, 1309 -------------------------------------------------------------------------------- /tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.cue -------------------------------------------------------------------------------- /tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.ogm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.ogm.txt -------------------------------------------------------------------------------- /tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/[Beatrice-Raws] Re:Creators 01 [BDRip 1920x1080 x264 FLAC]_chapters.xml -------------------------------------------------------------------------------- /tests/_last_session_.ses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/_last_session_.ses -------------------------------------------------------------------------------- /tests/candy_boy_05_tfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/candy_boy_05_tfm.txt -------------------------------------------------------------------------------- /tests/chapters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/chapters.txt -------------------------------------------------------------------------------- /tests/jintai_01.scxvid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/jintai_01.scxvid.txt -------------------------------------------------------------------------------- /tests/koizumi_tc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/koizumi_tc.txt -------------------------------------------------------------------------------- /tests/monte_01_tc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/monte_01_tc.txt -------------------------------------------------------------------------------- /tests/monte_01_tc_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/monte_01_tc_v2.txt -------------------------------------------------------------------------------- /tests/script.vpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/script.vpy -------------------------------------------------------------------------------- /tests/test.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/test.ass -------------------------------------------------------------------------------- /tests/timestamps v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/timestamps v2.txt -------------------------------------------------------------------------------- /tests/timestamps v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/tests/timestamps v3.txt -------------------------------------------------------------------------------- /vspreview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/__init__.py -------------------------------------------------------------------------------- /vspreview/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/__main__.py -------------------------------------------------------------------------------- /vspreview/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/core/__init__.py -------------------------------------------------------------------------------- /vspreview/core/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/core/abstracts.py -------------------------------------------------------------------------------- /vspreview/core/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/core/bases.py -------------------------------------------------------------------------------- /vspreview/core/better_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/core/better_abc.py -------------------------------------------------------------------------------- /vspreview/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/core/types.py -------------------------------------------------------------------------------- /vspreview/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/main.py -------------------------------------------------------------------------------- /vspreview/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/models/__init__.py -------------------------------------------------------------------------------- /vspreview/models/outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/models/outputs.py -------------------------------------------------------------------------------- /vspreview/models/scening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/models/scening.py -------------------------------------------------------------------------------- /vspreview/models/zoom_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/models/zoom_levels.py -------------------------------------------------------------------------------- /vspreview/toolbars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/__init__.py -------------------------------------------------------------------------------- /vspreview/toolbars/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/benchmark.py -------------------------------------------------------------------------------- /vspreview/toolbars/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/debug.py -------------------------------------------------------------------------------- /vspreview/toolbars/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/misc.py -------------------------------------------------------------------------------- /vspreview/toolbars/pipette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/pipette.py -------------------------------------------------------------------------------- /vspreview/toolbars/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/playback.py -------------------------------------------------------------------------------- /vspreview/toolbars/scening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/toolbars/scening.py -------------------------------------------------------------------------------- /vspreview/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/utils/__init__.py -------------------------------------------------------------------------------- /vspreview/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/utils/debug.py -------------------------------------------------------------------------------- /vspreview/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/utils/utils.py -------------------------------------------------------------------------------- /vspreview/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/__init__.py -------------------------------------------------------------------------------- /vspreview/widgets/colorview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/colorview.py -------------------------------------------------------------------------------- /vspreview/widgets/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/custom/__init__.py -------------------------------------------------------------------------------- /vspreview/widgets/custom/combobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/custom/combobox.py -------------------------------------------------------------------------------- /vspreview/widgets/custom/edits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/custom/edits.py -------------------------------------------------------------------------------- /vspreview/widgets/custom/graphicsview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/custom/graphicsview.py -------------------------------------------------------------------------------- /vspreview/widgets/custom/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/custom/misc.py -------------------------------------------------------------------------------- /vspreview/widgets/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endilll/vapoursynth-preview/HEAD/vspreview/widgets/timeline.py --------------------------------------------------------------------------------