├── .gitignore ├── LICENSE ├── README.md ├── samples ├── a │ ├── a.srt │ ├── a.webm │ └── output │ │ ├── frame0001.jpg │ │ ├── frame0002.jpg │ │ ├── frame0004.jpg │ │ ├── frame0008.jpg │ │ ├── frame0011.jpg │ │ ├── frame0015.jpg │ │ ├── frame0017.jpg │ │ ├── frame0019.jpg │ │ ├── frame0023.jpg │ │ ├── frame0027.jpg │ │ ├── frame0029.jpg │ │ ├── frame0031.jpg │ │ ├── frame0034.jpg │ │ ├── frame0036.jpg │ │ ├── frame0040.jpg │ │ ├── frame0044.jpg │ │ ├── frame0047.jpg │ │ ├── frame0050.jpg │ │ ├── frame0052.jpg │ │ └── frame0055.jpg ├── b │ ├── b.mp4 │ ├── b.srt │ └── output │ │ ├── frame0003.jpg │ │ ├── frame0008.jpg │ │ ├── frame0012.jpg │ │ ├── frame0020.jpg │ │ ├── frame0028.jpg │ │ ├── frame0034.jpg │ │ ├── frame0037.jpg │ │ ├── frame0048.jpg │ │ └── frame0055.jpg └── moon │ └── selected │ ├── frame0577.jpg │ ├── frame0631.jpg │ ├── frame0895.jpg │ ├── frame1126.jpg │ ├── frame1517.jpg │ ├── frame2128.jpg │ ├── frame2576.jpg │ ├── frame2639.jpg │ ├── frame2783.jpg │ ├── frame3030.jpg │ ├── frame3223.jpg │ ├── frame3432.jpg │ ├── frame3834.jpg │ ├── frame4107.jpg │ ├── frame4188.jpg │ ├── frame4278.jpg │ ├── frame4665.jpg │ ├── frame4767.jpg │ ├── frame4878.jpg │ ├── frame4986.jpg │ ├── frame5041.jpg │ ├── frame5298.jpg │ ├── frame5388.jpg │ └── frame5485.jpg └── script.py /.gitignore: -------------------------------------------------------------------------------- 1 | samples/moon/out/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/README.md -------------------------------------------------------------------------------- /samples/a/a.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/a.srt -------------------------------------------------------------------------------- /samples/a/a.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/a.webm -------------------------------------------------------------------------------- /samples/a/output/frame0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0001.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0002.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0004.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0008.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0011.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0015.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0017.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0019.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0023.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0027.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0029.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0031.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0034.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0036.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0040.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0044.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0047.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0050.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0052.jpg -------------------------------------------------------------------------------- /samples/a/output/frame0055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/a/output/frame0055.jpg -------------------------------------------------------------------------------- /samples/b/b.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/b.mp4 -------------------------------------------------------------------------------- /samples/b/b.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/b.srt -------------------------------------------------------------------------------- /samples/b/output/frame0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0003.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0008.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0012.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0020.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0028.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0034.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0037.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0048.jpg -------------------------------------------------------------------------------- /samples/b/output/frame0055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/b/output/frame0055.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame0577.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame0577.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame0631.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame0631.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame0895.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame0895.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame1126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame1126.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame1517.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame1517.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame2128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame2128.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame2576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame2576.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame2639.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame2639.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame2783.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame2783.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame3030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame3030.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame3223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame3223.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame3432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame3432.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame3834.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame3834.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4107.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4188.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4278.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4665.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4665.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4767.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4767.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4878.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame4986.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame4986.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame5041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame5041.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame5298.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame5298.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame5388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame5388.jpg -------------------------------------------------------------------------------- /samples/moon/selected/frame5485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/samples/moon/selected/frame5485.jpg -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhnvrm/SubScribe/HEAD/script.py --------------------------------------------------------------------------------