├── .env copy ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING_GUIDE.md ├── LICENSE ├── README.md ├── caption ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierrc ├── LICENSE ├── Promo.png ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── audio.mp3 │ ├── bold.ttf │ ├── cover.jpg │ ├── subtitles.srt │ └── video.mp4 ├── remotion.config.ts ├── src │ ├── Composition.tsx │ ├── Root.tsx │ ├── Subtitles.tsx │ ├── Word.tsx │ ├── ensure-font.ts │ ├── index.ts │ └── style.css ├── tailwind.config.js ├── tsconfig.json └── types │ └── global.d.ts ├── face.py ├── last_edit.py ├── main.py ├── main_part.json ├── output └── test.txt ├── process.py ├── raw_video └── subtitles.srt ├── requirements.txt ├── transcript_analysis.py ├── video.gif ├── video.mp4 ├── video_cutter.py └── video_downloader.py /.env copy: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY='Your openAI key' -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Shreesha345 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/CONTRIBUTING_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/README.md -------------------------------------------------------------------------------- /caption/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@remotion" 3 | } 4 | -------------------------------------------------------------------------------- /caption/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/.gitattributes -------------------------------------------------------------------------------- /caption/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/.gitignore -------------------------------------------------------------------------------- /caption/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/.prettierrc -------------------------------------------------------------------------------- /caption/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/LICENSE -------------------------------------------------------------------------------- /caption/Promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/Promo.png -------------------------------------------------------------------------------- /caption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/README.md -------------------------------------------------------------------------------- /caption/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/package-lock.json -------------------------------------------------------------------------------- /caption/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/package.json -------------------------------------------------------------------------------- /caption/public/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/public/audio.mp3 -------------------------------------------------------------------------------- /caption/public/bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/public/bold.ttf -------------------------------------------------------------------------------- /caption/public/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/public/cover.jpg -------------------------------------------------------------------------------- /caption/public/subtitles.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/public/subtitles.srt -------------------------------------------------------------------------------- /caption/public/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/public/video.mp4 -------------------------------------------------------------------------------- /caption/remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/remotion.config.ts -------------------------------------------------------------------------------- /caption/src/Composition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/Composition.tsx -------------------------------------------------------------------------------- /caption/src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/Root.tsx -------------------------------------------------------------------------------- /caption/src/Subtitles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/Subtitles.tsx -------------------------------------------------------------------------------- /caption/src/Word.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/Word.tsx -------------------------------------------------------------------------------- /caption/src/ensure-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/ensure-font.ts -------------------------------------------------------------------------------- /caption/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/index.ts -------------------------------------------------------------------------------- /caption/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/src/style.css -------------------------------------------------------------------------------- /caption/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/tailwind.config.js -------------------------------------------------------------------------------- /caption/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/tsconfig.json -------------------------------------------------------------------------------- /caption/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/caption/types/global.d.ts -------------------------------------------------------------------------------- /face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/face.py -------------------------------------------------------------------------------- /last_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/last_edit.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/main.py -------------------------------------------------------------------------------- /main_part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/main_part.json -------------------------------------------------------------------------------- /output/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/process.py -------------------------------------------------------------------------------- /raw_video/subtitles.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/raw_video/subtitles.srt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/requirements.txt -------------------------------------------------------------------------------- /transcript_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/transcript_analysis.py -------------------------------------------------------------------------------- /video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/video.gif -------------------------------------------------------------------------------- /video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/video.mp4 -------------------------------------------------------------------------------- /video_cutter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/video_cutter.py -------------------------------------------------------------------------------- /video_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreesha345/AI-short-creator/HEAD/video_downloader.py --------------------------------------------------------------------------------