├── .gitignore ├── README.md ├── config-overrides.js ├── docs ├── blur.jpg ├── concatenate.jpg ├── intro.gif ├── stutter.jpg ├── subtitle.jpg └── upload.gif ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── models │ ├── face_landmark_68_model-shard1 │ ├── face_landmark_68_model-weights_manifest.json │ ├── face_landmark_68_tiny_model-shard1 │ ├── face_landmark_68_tiny_model-weights_manifest.json │ ├── face_recognition_model-shard1 │ ├── face_recognition_model-shard2 │ ├── face_recognition_model-weights_manifest.json │ ├── mtcnn_model-shard1 │ ├── mtcnn_model-weights_manifest.json │ ├── ssd_mobilenetv1_model-shard1 │ ├── ssd_mobilenetv1_model-shard2 │ ├── ssd_mobilenetv1_model-weights_manifest.json │ ├── tiny_face_detector_model-shard1 │ └── tiny_face_detector_model-weights_manifest.json └── robots.txt ├── python_server ├── .flaskenv ├── .gitignore ├── blur_utils.py ├── config.py ├── face_clustering.py ├── face_models.py ├── input │ ├── bezos_tracking.json │ ├── childrenFaces.json │ ├── deploy.prototxt │ └── res10_300x300_ssd_iter_140000.caffemodel ├── install.sh ├── models │ ├── __init__.py │ ├── graph │ │ ├── mobilenet_thin │ │ │ ├── __init__.py │ │ │ ├── graph.pb │ │ │ ├── graph_freeze.pb │ │ │ └── graph_opt.pb │ │ ├── mobilenet_v2_large │ │ │ └── graph_opt.pb │ │ └── mobilenet_v2_small │ │ │ └── graph_opt.pb │ ├── numpy │ │ └── download.sh │ └── pretrained │ │ ├── mobilenet_v1_0.50_224_2017_06_14 │ │ └── download.sh │ │ ├── mobilenet_v1_0.75_224_2017_06_14 │ │ └── download.sh │ │ ├── mobilenet_v1_1.0_224_2017_06_14 │ │ └── download.sh │ │ └── resnet_v2_101 │ │ └── download.sh ├── pose_models.py ├── pose_utils.py ├── requirements.txt ├── requirements2.txt ├── routes.py ├── speechToText.py ├── templates │ └── index.html ├── tf_pose │ ├── __init__.py │ ├── common.py │ ├── datum_pb2.py │ ├── estimator.py │ ├── eval.py │ ├── mobilenet │ │ ├── __init__.py │ │ ├── conv_blocks.py │ │ ├── mobilenet.py │ │ └── mobilenet_v2.py │ ├── network_base.py │ ├── network_cmu.py │ ├── network_dsconv.py │ ├── network_mobilenet.py │ ├── network_mobilenet_thin.py │ ├── network_mobilenet_v2.py │ ├── networks.py │ ├── pafprocess │ │ ├── README.md │ │ ├── __init__.py │ │ ├── _pafprocess.cpython-37m-darwin.so │ │ ├── build │ │ │ └── temp.macosx-10.6-intel-3.7 │ │ │ │ ├── pafprocess.o │ │ │ │ └── pafprocess_wrap.o │ │ ├── numpy.i │ │ ├── pafprocess.cpp │ │ ├── pafprocess.h │ │ ├── pafprocess.i │ │ ├── pafprocess.py │ │ ├── pafprocess_wrap.cpp │ │ ├── pafprocess_wrap.cxx │ │ └── setup.py │ ├── pose_augment.py │ ├── pose_dataset.py │ ├── pystopwatch.py │ ├── runner.py │ ├── slidingwindow │ │ ├── ArrayUtils.py │ │ ├── Batching.py │ │ ├── Merging.py │ │ ├── RectangleUtils.py │ │ ├── SlidingWindow.py │ │ ├── WindowDistance.py │ │ └── __init__.py │ ├── tensblur │ │ ├── __init__.py │ │ └── smoother.py │ └── train.py └── video_utils.py ├── server ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── config │ ├── .env.example │ └── env.js ├── ecosystem.config.js ├── index.js ├── package.json ├── src │ ├── app.js │ ├── bin │ │ └── www │ ├── controllers │ │ └── user.js │ ├── db │ │ ├── graphql │ │ │ ├── index.js │ │ │ ├── resolver.js │ │ │ └── schema.js │ │ ├── index.js │ │ ├── methods.js │ │ └── schema.js │ ├── middlewares │ │ └── index.js │ ├── routes │ │ ├── index.js │ │ ├── user.js │ │ └── video.js │ └── utils │ │ ├── aws.js │ │ ├── error.js │ │ ├── index.js │ │ ├── logger │ │ ├── debug.js │ │ ├── helper.js │ │ └── index.js │ │ └── ml.utils.js └── yarn.lock ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── Dashboard.js │ ├── Dashboard │ │ ├── Features.js │ │ ├── KnownPeople.js │ │ ├── Preview.js │ │ ├── Subtitles.js │ │ └── VideoEdit.js │ ├── FaceBlur.js │ ├── Intro.js │ ├── Main.js │ ├── NetflixHome.js │ ├── PageTemplate.js │ ├── Pose.js │ ├── PoseProgress.js │ ├── ProfileCheck.js │ ├── ProfileList.js │ ├── Spinner.js │ ├── TongueSlip.js │ ├── UploadedVideos.js │ ├── VideoInput.js │ ├── VideoRecord.js │ ├── VideoWIthOverlay.js │ └── face_video.mp4 ├── hooks │ ├── usePromise.js │ └── useSetState.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── static │ ├── daredevil.mp3 │ ├── dj.jpg │ ├── fonts │ │ ├── BebasNeue-Regular.eot │ │ ├── BebasNeue-Regular.otf │ │ └── BebasNeue-Regular.ttf │ ├── gogi.jpg │ ├── houseofcards.mp3 │ ├── icons │ │ ├── FileIcon_MP4.png │ │ ├── add_to_queue-24px.svg │ │ ├── call_merge-24px.svg │ │ ├── close-24px.svg │ │ ├── closed-captioning-regular.svg │ │ ├── cloud_download-24px.svg │ │ ├── cloud_upload-24px.svg │ │ ├── columns-solid.svg │ │ ├── done_outline-24px.svg │ │ ├── microphone-alt-solid.svg │ │ ├── tag-solid.svg │ │ ├── theater-masks-solid.svg │ │ ├── user-tag-solid.svg │ │ ├── video-solid.svg │ │ └── wrench-solid.svg │ ├── logo.png │ ├── netflix_intro.mp3 │ ├── seol.jpg │ ├── strangerthings.mp3 │ └── youns.jpeg ├── utils │ ├── SPECS.md │ ├── api.js │ ├── mixins.js │ ├── mocks.js │ ├── network.js │ ├── storage.js │ └── video.utils.js └── variables.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/config-overrides.js -------------------------------------------------------------------------------- /docs/blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/blur.jpg -------------------------------------------------------------------------------- /docs/concatenate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/concatenate.jpg -------------------------------------------------------------------------------- /docs/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/intro.gif -------------------------------------------------------------------------------- /docs/stutter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/stutter.jpg -------------------------------------------------------------------------------- /docs/subtitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/subtitle.jpg -------------------------------------------------------------------------------- /docs/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/docs/upload.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /public/models/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/mtcnn_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/mtcnn_model-shard1 -------------------------------------------------------------------------------- /public/models/mtcnn_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/mtcnn_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/ssd_mobilenetv1_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/ssd_mobilenetv1_model-shard1 -------------------------------------------------------------------------------- /public/models/ssd_mobilenetv1_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/ssd_mobilenetv1_model-shard2 -------------------------------------------------------------------------------- /public/models/ssd_mobilenetv1_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/ssd_mobilenetv1_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/public/robots.txt -------------------------------------------------------------------------------- /python_server/.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/.flaskenv -------------------------------------------------------------------------------- /python_server/.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | -------------------------------------------------------------------------------- /python_server/blur_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/blur_utils.py -------------------------------------------------------------------------------- /python_server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/config.py -------------------------------------------------------------------------------- /python_server/face_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/face_clustering.py -------------------------------------------------------------------------------- /python_server/face_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/face_models.py -------------------------------------------------------------------------------- /python_server/input/bezos_tracking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/input/bezos_tracking.json -------------------------------------------------------------------------------- /python_server/input/childrenFaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/input/childrenFaces.json -------------------------------------------------------------------------------- /python_server/input/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/input/deploy.prototxt -------------------------------------------------------------------------------- /python_server/input/res10_300x300_ssd_iter_140000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/input/res10_300x300_ssd_iter_140000.caffemodel -------------------------------------------------------------------------------- /python_server/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/install.sh -------------------------------------------------------------------------------- /python_server/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_thin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_thin/graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/graph/mobilenet_thin/graph.pb -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_thin/graph_freeze.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/graph/mobilenet_thin/graph_freeze.pb -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_thin/graph_opt.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/graph/mobilenet_thin/graph_opt.pb -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_v2_large/graph_opt.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/graph/mobilenet_v2_large/graph_opt.pb -------------------------------------------------------------------------------- /python_server/models/graph/mobilenet_v2_small/graph_opt.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/graph/mobilenet_v2_small/graph_opt.pb -------------------------------------------------------------------------------- /python_server/models/numpy/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/numpy/download.sh -------------------------------------------------------------------------------- /python_server/models/pretrained/mobilenet_v1_0.50_224_2017_06_14/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/pretrained/mobilenet_v1_0.50_224_2017_06_14/download.sh -------------------------------------------------------------------------------- /python_server/models/pretrained/mobilenet_v1_0.75_224_2017_06_14/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/pretrained/mobilenet_v1_0.75_224_2017_06_14/download.sh -------------------------------------------------------------------------------- /python_server/models/pretrained/mobilenet_v1_1.0_224_2017_06_14/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/pretrained/mobilenet_v1_1.0_224_2017_06_14/download.sh -------------------------------------------------------------------------------- /python_server/models/pretrained/resnet_v2_101/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/models/pretrained/resnet_v2_101/download.sh -------------------------------------------------------------------------------- /python_server/pose_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/pose_models.py -------------------------------------------------------------------------------- /python_server/pose_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/pose_utils.py -------------------------------------------------------------------------------- /python_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/requirements.txt -------------------------------------------------------------------------------- /python_server/requirements2.txt: -------------------------------------------------------------------------------- 1 | pycocotools==2.0 2 | -------------------------------------------------------------------------------- /python_server/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/routes.py -------------------------------------------------------------------------------- /python_server/speechToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/speechToText.py -------------------------------------------------------------------------------- /python_server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/templates/index.html -------------------------------------------------------------------------------- /python_server/tf_pose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/__init__.py -------------------------------------------------------------------------------- /python_server/tf_pose/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/common.py -------------------------------------------------------------------------------- /python_server/tf_pose/datum_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/datum_pb2.py -------------------------------------------------------------------------------- /python_server/tf_pose/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/estimator.py -------------------------------------------------------------------------------- /python_server/tf_pose/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/eval.py -------------------------------------------------------------------------------- /python_server/tf_pose/mobilenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_server/tf_pose/mobilenet/conv_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/mobilenet/conv_blocks.py -------------------------------------------------------------------------------- /python_server/tf_pose/mobilenet/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/mobilenet/mobilenet.py -------------------------------------------------------------------------------- /python_server/tf_pose/mobilenet/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/mobilenet/mobilenet_v2.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_base.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_cmu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_cmu.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_dsconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_dsconv.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_mobilenet.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_mobilenet_thin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_mobilenet_thin.py -------------------------------------------------------------------------------- /python_server/tf_pose/network_mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/network_mobilenet_v2.py -------------------------------------------------------------------------------- /python_server/tf_pose/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/networks.py -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/README.md -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/_pafprocess.cpython-37m-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/_pafprocess.cpython-37m-darwin.so -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/build/temp.macosx-10.6-intel-3.7/pafprocess.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/build/temp.macosx-10.6-intel-3.7/pafprocess.o -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/build/temp.macosx-10.6-intel-3.7/pafprocess_wrap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/build/temp.macosx-10.6-intel-3.7/pafprocess_wrap.o -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/numpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/numpy.i -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess.cpp -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess.h -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess.i -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess.py -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess_wrap.cpp -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/pafprocess_wrap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/pafprocess_wrap.cxx -------------------------------------------------------------------------------- /python_server/tf_pose/pafprocess/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pafprocess/setup.py -------------------------------------------------------------------------------- /python_server/tf_pose/pose_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pose_augment.py -------------------------------------------------------------------------------- /python_server/tf_pose/pose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pose_dataset.py -------------------------------------------------------------------------------- /python_server/tf_pose/pystopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/pystopwatch.py -------------------------------------------------------------------------------- /python_server/tf_pose/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/runner.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/ArrayUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/ArrayUtils.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/Batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/Batching.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/Merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/Merging.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/RectangleUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/RectangleUtils.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/SlidingWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/SlidingWindow.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/WindowDistance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/WindowDistance.py -------------------------------------------------------------------------------- /python_server/tf_pose/slidingwindow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/slidingwindow/__init__.py -------------------------------------------------------------------------------- /python_server/tf_pose/tensblur/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_server/tf_pose/tensblur/smoother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/tensblur/smoother.py -------------------------------------------------------------------------------- /python_server/tf_pose/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/tf_pose/train.py -------------------------------------------------------------------------------- /python_server/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/python_server/video_utils.py -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/LICENSE.md -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/README.md -------------------------------------------------------------------------------- /server/config/.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/config/env.js -------------------------------------------------------------------------------- /server/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/ecosystem.config.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/app.js -------------------------------------------------------------------------------- /server/src/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/bin/www -------------------------------------------------------------------------------- /server/src/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/controllers/user.js -------------------------------------------------------------------------------- /server/src/db/graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/graphql/index.js -------------------------------------------------------------------------------- /server/src/db/graphql/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/graphql/resolver.js -------------------------------------------------------------------------------- /server/src/db/graphql/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/graphql/schema.js -------------------------------------------------------------------------------- /server/src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/index.js -------------------------------------------------------------------------------- /server/src/db/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/methods.js -------------------------------------------------------------------------------- /server/src/db/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/db/schema.js -------------------------------------------------------------------------------- /server/src/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/middlewares/index.js -------------------------------------------------------------------------------- /server/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/routes/index.js -------------------------------------------------------------------------------- /server/src/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/routes/user.js -------------------------------------------------------------------------------- /server/src/routes/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/routes/video.js -------------------------------------------------------------------------------- /server/src/utils/aws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/aws.js -------------------------------------------------------------------------------- /server/src/utils/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/error.js -------------------------------------------------------------------------------- /server/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/index.js -------------------------------------------------------------------------------- /server/src/utils/logger/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/logger/debug.js -------------------------------------------------------------------------------- /server/src/utils/logger/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/logger/helper.js -------------------------------------------------------------------------------- /server/src/utils/logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/logger/index.js -------------------------------------------------------------------------------- /server/src/utils/ml.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/src/utils/ml.utils.js -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/server/yarn.lock -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard.js -------------------------------------------------------------------------------- /src/components/Dashboard/Features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard/Features.js -------------------------------------------------------------------------------- /src/components/Dashboard/KnownPeople.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard/KnownPeople.js -------------------------------------------------------------------------------- /src/components/Dashboard/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard/Preview.js -------------------------------------------------------------------------------- /src/components/Dashboard/Subtitles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard/Subtitles.js -------------------------------------------------------------------------------- /src/components/Dashboard/VideoEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Dashboard/VideoEdit.js -------------------------------------------------------------------------------- /src/components/FaceBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/FaceBlur.js -------------------------------------------------------------------------------- /src/components/Intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Intro.js -------------------------------------------------------------------------------- /src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Main.js -------------------------------------------------------------------------------- /src/components/NetflixHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/NetflixHome.js -------------------------------------------------------------------------------- /src/components/PageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/PageTemplate.js -------------------------------------------------------------------------------- /src/components/Pose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Pose.js -------------------------------------------------------------------------------- /src/components/PoseProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/PoseProgress.js -------------------------------------------------------------------------------- /src/components/ProfileCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/ProfileCheck.js -------------------------------------------------------------------------------- /src/components/ProfileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/ProfileList.js -------------------------------------------------------------------------------- /src/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/Spinner.js -------------------------------------------------------------------------------- /src/components/TongueSlip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/TongueSlip.js -------------------------------------------------------------------------------- /src/components/UploadedVideos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/UploadedVideos.js -------------------------------------------------------------------------------- /src/components/VideoInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/VideoInput.js -------------------------------------------------------------------------------- /src/components/VideoRecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/VideoRecord.js -------------------------------------------------------------------------------- /src/components/VideoWIthOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/VideoWIthOverlay.js -------------------------------------------------------------------------------- /src/components/face_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/components/face_video.mp4 -------------------------------------------------------------------------------- /src/hooks/usePromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/hooks/usePromise.js -------------------------------------------------------------------------------- /src/hooks/useSetState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/hooks/useSetState.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/static/daredevil.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/daredevil.mp3 -------------------------------------------------------------------------------- /src/static/dj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/dj.jpg -------------------------------------------------------------------------------- /src/static/fonts/BebasNeue-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/fonts/BebasNeue-Regular.eot -------------------------------------------------------------------------------- /src/static/fonts/BebasNeue-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/fonts/BebasNeue-Regular.otf -------------------------------------------------------------------------------- /src/static/fonts/BebasNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/fonts/BebasNeue-Regular.ttf -------------------------------------------------------------------------------- /src/static/gogi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/gogi.jpg -------------------------------------------------------------------------------- /src/static/houseofcards.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/houseofcards.mp3 -------------------------------------------------------------------------------- /src/static/icons/FileIcon_MP4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/FileIcon_MP4.png -------------------------------------------------------------------------------- /src/static/icons/add_to_queue-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/add_to_queue-24px.svg -------------------------------------------------------------------------------- /src/static/icons/call_merge-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/call_merge-24px.svg -------------------------------------------------------------------------------- /src/static/icons/close-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/close-24px.svg -------------------------------------------------------------------------------- /src/static/icons/closed-captioning-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/closed-captioning-regular.svg -------------------------------------------------------------------------------- /src/static/icons/cloud_download-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/cloud_download-24px.svg -------------------------------------------------------------------------------- /src/static/icons/cloud_upload-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/cloud_upload-24px.svg -------------------------------------------------------------------------------- /src/static/icons/columns-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/columns-solid.svg -------------------------------------------------------------------------------- /src/static/icons/done_outline-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/done_outline-24px.svg -------------------------------------------------------------------------------- /src/static/icons/microphone-alt-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/microphone-alt-solid.svg -------------------------------------------------------------------------------- /src/static/icons/tag-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/tag-solid.svg -------------------------------------------------------------------------------- /src/static/icons/theater-masks-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/theater-masks-solid.svg -------------------------------------------------------------------------------- /src/static/icons/user-tag-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/user-tag-solid.svg -------------------------------------------------------------------------------- /src/static/icons/video-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/video-solid.svg -------------------------------------------------------------------------------- /src/static/icons/wrench-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/icons/wrench-solid.svg -------------------------------------------------------------------------------- /src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/logo.png -------------------------------------------------------------------------------- /src/static/netflix_intro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/netflix_intro.mp3 -------------------------------------------------------------------------------- /src/static/seol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/seol.jpg -------------------------------------------------------------------------------- /src/static/strangerthings.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/strangerthings.mp3 -------------------------------------------------------------------------------- /src/static/youns.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/static/youns.jpeg -------------------------------------------------------------------------------- /src/utils/SPECS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/SPECS.md -------------------------------------------------------------------------------- /src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/api.js -------------------------------------------------------------------------------- /src/utils/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/mixins.js -------------------------------------------------------------------------------- /src/utils/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/mocks.js -------------------------------------------------------------------------------- /src/utils/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/network.js -------------------------------------------------------------------------------- /src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/storage.js -------------------------------------------------------------------------------- /src/utils/video.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/utils/video.utils.js -------------------------------------------------------------------------------- /src/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/src/variables.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jungdj/AI-Effects/HEAD/yarn.lock --------------------------------------------------------------------------------