├── .gitignore ├── 01_intro ├── 01-notes.md └── manifesto.txt ├── 02_basics ├── 01-downloading-video.md ├── 02-ffmpeg.md └── filter_anat.png ├── 03_language ├── 01_loops.md └── 02_videogrep.md ├── 04_coding_video ├── 01-python.md ├── 02-moviepy.md ├── overlay.py └── shuffle_video.py ├── 05_detection ├── 01_ffmpeg_and_python.md ├── 02_shot_detection.md ├── 03_captioning_and_labeling.md ├── caption_shots.py ├── extract_objects.py ├── label_shots.py ├── search_scenes.py ├── shots.py └── shuffle_scenes.py ├── 06_classification ├── 01-functions-modules.md ├── 02-custom-classifiers.md ├── custom_classifier_image.py ├── custom_classifier_video.py ├── download_images.py ├── object_extractor.py ├── shots.py ├── supercut_from_classifer.py └── visualgrep.py ├── 07_publishing ├── 01_command_line_apps.md ├── args1.py ├── cutclip.py ├── cutclip │ ├── README.md │ ├── cutclip.py │ └── pyproject.toml ├── interactive_video_grid_audio.html ├── video_grid.html ├── video_grid_audio.html ├── videos.txt └── vids.json ├── 08_motion_and_segmentation ├── live_motion.py ├── motion_tracker.py ├── segment.py └── segment_video.py ├── 09_faces ├── face_on.py └── webcam.py └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | venv/ 3 | -------------------------------------------------------------------------------- /01_intro/01-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/01_intro/01-notes.md -------------------------------------------------------------------------------- /01_intro/manifesto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/01_intro/manifesto.txt -------------------------------------------------------------------------------- /02_basics/01-downloading-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/02_basics/01-downloading-video.md -------------------------------------------------------------------------------- /02_basics/02-ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/02_basics/02-ffmpeg.md -------------------------------------------------------------------------------- /02_basics/filter_anat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/02_basics/filter_anat.png -------------------------------------------------------------------------------- /03_language/01_loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/03_language/01_loops.md -------------------------------------------------------------------------------- /03_language/02_videogrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/03_language/02_videogrep.md -------------------------------------------------------------------------------- /04_coding_video/01-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/04_coding_video/01-python.md -------------------------------------------------------------------------------- /04_coding_video/02-moviepy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/04_coding_video/02-moviepy.md -------------------------------------------------------------------------------- /04_coding_video/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/04_coding_video/overlay.py -------------------------------------------------------------------------------- /04_coding_video/shuffle_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/04_coding_video/shuffle_video.py -------------------------------------------------------------------------------- /05_detection/01_ffmpeg_and_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/01_ffmpeg_and_python.md -------------------------------------------------------------------------------- /05_detection/02_shot_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/02_shot_detection.md -------------------------------------------------------------------------------- /05_detection/03_captioning_and_labeling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/03_captioning_and_labeling.md -------------------------------------------------------------------------------- /05_detection/caption_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/caption_shots.py -------------------------------------------------------------------------------- /05_detection/extract_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/extract_objects.py -------------------------------------------------------------------------------- /05_detection/label_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/label_shots.py -------------------------------------------------------------------------------- /05_detection/search_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/search_scenes.py -------------------------------------------------------------------------------- /05_detection/shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/shots.py -------------------------------------------------------------------------------- /05_detection/shuffle_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/05_detection/shuffle_scenes.py -------------------------------------------------------------------------------- /06_classification/01-functions-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/01-functions-modules.md -------------------------------------------------------------------------------- /06_classification/02-custom-classifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/02-custom-classifiers.md -------------------------------------------------------------------------------- /06_classification/custom_classifier_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/custom_classifier_image.py -------------------------------------------------------------------------------- /06_classification/custom_classifier_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/custom_classifier_video.py -------------------------------------------------------------------------------- /06_classification/download_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/download_images.py -------------------------------------------------------------------------------- /06_classification/object_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/object_extractor.py -------------------------------------------------------------------------------- /06_classification/shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/shots.py -------------------------------------------------------------------------------- /06_classification/supercut_from_classifer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/supercut_from_classifer.py -------------------------------------------------------------------------------- /06_classification/visualgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/06_classification/visualgrep.py -------------------------------------------------------------------------------- /07_publishing/01_command_line_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/01_command_line_apps.md -------------------------------------------------------------------------------- /07_publishing/args1.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | print(sys.argv) 4 | -------------------------------------------------------------------------------- /07_publishing/cutclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/cutclip.py -------------------------------------------------------------------------------- /07_publishing/cutclip/README.md: -------------------------------------------------------------------------------- 1 | # Cutclip Readme 2 | -------------------------------------------------------------------------------- /07_publishing/cutclip/cutclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/cutclip/cutclip.py -------------------------------------------------------------------------------- /07_publishing/cutclip/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/cutclip/pyproject.toml -------------------------------------------------------------------------------- /07_publishing/interactive_video_grid_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/interactive_video_grid_audio.html -------------------------------------------------------------------------------- /07_publishing/video_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/video_grid.html -------------------------------------------------------------------------------- /07_publishing/video_grid_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/video_grid_audio.html -------------------------------------------------------------------------------- /07_publishing/videos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/videos.txt -------------------------------------------------------------------------------- /07_publishing/vids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/07_publishing/vids.json -------------------------------------------------------------------------------- /08_motion_and_segmentation/live_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/08_motion_and_segmentation/live_motion.py -------------------------------------------------------------------------------- /08_motion_and_segmentation/motion_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/08_motion_and_segmentation/motion_tracker.py -------------------------------------------------------------------------------- /08_motion_and_segmentation/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/08_motion_and_segmentation/segment.py -------------------------------------------------------------------------------- /08_motion_and_segmentation/segment_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/08_motion_and_segmentation/segment_video.py -------------------------------------------------------------------------------- /09_faces/face_on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/09_faces/face_on.py -------------------------------------------------------------------------------- /09_faces/webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/09_faces/webcam.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/infinite-video-fall-2023/HEAD/README.md --------------------------------------------------------------------------------