├── LICENSE ├── README.md ├── backend ├── apikeys.json ├── characters │ ├── Benjamin.png │ └── Sophia.png ├── functions │ ├── combine_videos_function.py │ ├── create_audio_image_function.py │ ├── create_image_videos_function.py │ ├── create_script_function.py │ ├── create_search_query_function.py │ ├── create_speech_function.py │ ├── create_video_from_audio_function.py │ ├── get_image_function.py │ └── video_main_function.py ├── main.py ├── requirements.txt └── src │ └── backup.jpg └── frontend └── topic2explanation ├── .eslintrc.json ├── .gitignore ├── app ├── components │ ├── box1.jsx │ ├── box2.jsx │ ├── generateoutput.jsx │ ├── main.jsx │ └── nav.jsx ├── favicon.ico ├── globals.css ├── images │ ├── Alystria.png │ ├── background.png │ └── send.png ├── layout.jsx └── page.jsx ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js └── tailwind.config.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/README.md -------------------------------------------------------------------------------- /backend/apikeys.json: -------------------------------------------------------------------------------- 1 | { 2 | "api_keys": [""] 3 | } 4 | -------------------------------------------------------------------------------- /backend/characters/Benjamin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/characters/Benjamin.png -------------------------------------------------------------------------------- /backend/characters/Sophia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/characters/Sophia.png -------------------------------------------------------------------------------- /backend/functions/combine_videos_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/combine_videos_function.py -------------------------------------------------------------------------------- /backend/functions/create_audio_image_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_audio_image_function.py -------------------------------------------------------------------------------- /backend/functions/create_image_videos_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_image_videos_function.py -------------------------------------------------------------------------------- /backend/functions/create_script_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_script_function.py -------------------------------------------------------------------------------- /backend/functions/create_search_query_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_search_query_function.py -------------------------------------------------------------------------------- /backend/functions/create_speech_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_speech_function.py -------------------------------------------------------------------------------- /backend/functions/create_video_from_audio_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/create_video_from_audio_function.py -------------------------------------------------------------------------------- /backend/functions/get_image_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/get_image_function.py -------------------------------------------------------------------------------- /backend/functions/video_main_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/functions/video_main_function.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/src/backup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/backend/src/backup.jpg -------------------------------------------------------------------------------- /frontend/topic2explanation/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/topic2explanation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/.gitignore -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/box1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/components/box1.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/box2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/components/box2.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/generateoutput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/components/generateoutput.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/components/main.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/components/nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/components/nav.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/favicon.ico -------------------------------------------------------------------------------- /frontend/topic2explanation/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/globals.css -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/Alystria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/images/Alystria.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/images/background.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/images/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/images/send.png -------------------------------------------------------------------------------- /frontend/topic2explanation/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/layout.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/app/page.jsx -------------------------------------------------------------------------------- /frontend/topic2explanation/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/jsconfig.json -------------------------------------------------------------------------------- /frontend/topic2explanation/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/next.config.js -------------------------------------------------------------------------------- /frontend/topic2explanation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/package-lock.json -------------------------------------------------------------------------------- /frontend/topic2explanation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/package.json -------------------------------------------------------------------------------- /frontend/topic2explanation/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/postcss.config.js -------------------------------------------------------------------------------- /frontend/topic2explanation/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshitIreddy/AI-Powered-Video-Tutorial-Generator/HEAD/frontend/topic2explanation/tailwind.config.js --------------------------------------------------------------------------------