├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.js ├── README.md ├── bg.mp3 ├── chat.png ├── createImage.js ├── index.html ├── package.json ├── share.png ├── src ├── Editing │ └── getImageQuerys.ts ├── audio │ ├── elevenAudio.ts │ ├── getTimestamp.ts │ └── mergeTwoAudio.ts ├── images │ ├── centerImage.ts │ ├── createQuoraImage.ts │ ├── downloadImages.ts │ └── imagesProccessing.ts ├── index.ts ├── promptTemplates │ ├── image.ts │ └── templates.ts ├── scrape.ts ├── transcript │ ├── .gitignore │ └── transcribe.ts ├── upoad │ ├── .gitignore │ ├── azureUpload.ts │ └── upload.ts ├── utils │ └── utils.ts ├── video │ └── video.ts └── videoScript.ts ├── tsconfig.json ├── up-arrow.png ├── up.png ├── verified.png ├── web-ui ├── .eslintrc.json ├── .gitignore ├── README.md ├── Theme │ └── Theming.jsx ├── app │ ├── Header │ │ └── page.jsx │ ├── api │ │ └── email │ │ │ └── route.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── pageHook.js ├── db │ └── mongodb.js ├── jsconfig.json ├── models │ └── Email.js ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── font │ │ ├── InterBlack.ttf │ │ ├── InterBold.ttf │ │ ├── InterMedium.ttf │ │ └── InterRegular.ttf │ ├── img │ │ ├── alarm.png │ │ ├── cyborg.png │ │ ├── cyborgsvg.svg │ │ ├── email.png │ │ ├── got.png │ │ ├── party.png │ │ ├── secret.webp │ │ ├── shake.gif │ │ ├── time.png │ │ └── whisper.png │ ├── next.svg │ └── vercel.svg └── tailwind.config.js └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/README.md -------------------------------------------------------------------------------- /bg.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/bg.mp3 -------------------------------------------------------------------------------- /chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/chat.png -------------------------------------------------------------------------------- /createImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/createImage.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/package.json -------------------------------------------------------------------------------- /share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/share.png -------------------------------------------------------------------------------- /src/Editing/getImageQuerys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/Editing/getImageQuerys.ts -------------------------------------------------------------------------------- /src/audio/elevenAudio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/audio/elevenAudio.ts -------------------------------------------------------------------------------- /src/audio/getTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/audio/getTimestamp.ts -------------------------------------------------------------------------------- /src/audio/mergeTwoAudio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/audio/mergeTwoAudio.ts -------------------------------------------------------------------------------- /src/images/centerImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/images/centerImage.ts -------------------------------------------------------------------------------- /src/images/createQuoraImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/images/createQuoraImage.ts -------------------------------------------------------------------------------- /src/images/downloadImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/images/downloadImages.ts -------------------------------------------------------------------------------- /src/images/imagesProccessing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/images/imagesProccessing.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/promptTemplates/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/promptTemplates/image.ts -------------------------------------------------------------------------------- /src/promptTemplates/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/promptTemplates/templates.ts -------------------------------------------------------------------------------- /src/scrape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/scrape.ts -------------------------------------------------------------------------------- /src/transcript/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/transcript/transcribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/transcript/transcribe.ts -------------------------------------------------------------------------------- /src/upoad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/upoad/.gitignore -------------------------------------------------------------------------------- /src/upoad/azureUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/upoad/azureUpload.ts -------------------------------------------------------------------------------- /src/upoad/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/upoad/upload.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /src/video/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/video/video.ts -------------------------------------------------------------------------------- /src/videoScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/src/videoScript.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/up-arrow.png -------------------------------------------------------------------------------- /up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/up.png -------------------------------------------------------------------------------- /verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/verified.png -------------------------------------------------------------------------------- /web-ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/.eslintrc.json -------------------------------------------------------------------------------- /web-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/.gitignore -------------------------------------------------------------------------------- /web-ui/README.md: -------------------------------------------------------------------------------- 1 | 2 | # web-ui (Waitlist page) 3 | -------------------------------------------------------------------------------- /web-ui/Theme/Theming.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/Theme/Theming.jsx -------------------------------------------------------------------------------- /web-ui/app/Header/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/Header/page.jsx -------------------------------------------------------------------------------- /web-ui/app/api/email/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/api/email/route.js -------------------------------------------------------------------------------- /web-ui/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/favicon.ico -------------------------------------------------------------------------------- /web-ui/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/globals.css -------------------------------------------------------------------------------- /web-ui/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/layout.js -------------------------------------------------------------------------------- /web-ui/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/page.js -------------------------------------------------------------------------------- /web-ui/app/pageHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/app/pageHook.js -------------------------------------------------------------------------------- /web-ui/db/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/db/mongodb.js -------------------------------------------------------------------------------- /web-ui/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/jsconfig.json -------------------------------------------------------------------------------- /web-ui/models/Email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/models/Email.js -------------------------------------------------------------------------------- /web-ui/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/next.config.js -------------------------------------------------------------------------------- /web-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/package-lock.json -------------------------------------------------------------------------------- /web-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/package.json -------------------------------------------------------------------------------- /web-ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/postcss.config.js -------------------------------------------------------------------------------- /web-ui/public/font/InterBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/font/InterBlack.ttf -------------------------------------------------------------------------------- /web-ui/public/font/InterBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/font/InterBold.ttf -------------------------------------------------------------------------------- /web-ui/public/font/InterMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/font/InterMedium.ttf -------------------------------------------------------------------------------- /web-ui/public/font/InterRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/font/InterRegular.ttf -------------------------------------------------------------------------------- /web-ui/public/img/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/alarm.png -------------------------------------------------------------------------------- /web-ui/public/img/cyborg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/cyborg.png -------------------------------------------------------------------------------- /web-ui/public/img/cyborgsvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/cyborgsvg.svg -------------------------------------------------------------------------------- /web-ui/public/img/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/email.png -------------------------------------------------------------------------------- /web-ui/public/img/got.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/got.png -------------------------------------------------------------------------------- /web-ui/public/img/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/party.png -------------------------------------------------------------------------------- /web-ui/public/img/secret.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/secret.webp -------------------------------------------------------------------------------- /web-ui/public/img/shake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/shake.gif -------------------------------------------------------------------------------- /web-ui/public/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/time.png -------------------------------------------------------------------------------- /web-ui/public/img/whisper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/img/whisper.png -------------------------------------------------------------------------------- /web-ui/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/next.svg -------------------------------------------------------------------------------- /web-ui/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/public/vercel.svg -------------------------------------------------------------------------------- /web-ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/web-ui/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChetanXpro/short-video-automation/HEAD/yarn.lock --------------------------------------------------------------------------------