├── .gitattributes ├── LICENSE ├── README.md ├── config.json ├── frame_output ├── frame_output.txt ├── resized_frames │ └── resized_frames.txt └── whole_frames │ └── whole_frames.txt ├── index.js ├── package.json ├── play.js └── video_input ├── input.mp4 └── video_input /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/config.json -------------------------------------------------------------------------------- /frame_output/frame_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/frame_output/frame_output.txt -------------------------------------------------------------------------------- /frame_output/resized_frames/resized_frames.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frame_output/whole_frames/whole_frames.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/package.json -------------------------------------------------------------------------------- /play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/play.js -------------------------------------------------------------------------------- /video_input/input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/video_input/input.mp4 -------------------------------------------------------------------------------- /video_input/video_input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshnaksPNG/Bad_Apple_Youtube_Page/HEAD/video_input/video_input --------------------------------------------------------------------------------