{"id":22031391,"url":"https://github.com/ismaildrs/quizscribe","last_synced_at":"2025-05-07T12:22:46.566Z","repository":{"id":264385304,"uuid":"888970142","full_name":"ismaildrs/QuizScribe","owner":"ismaildrs","description":"Transform video content into Interactive Learning","archived":false,"fork":false,"pushed_at":"2024-11-23T21:12:28.000Z","size":14719,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-31T10:01:35.689Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ismaildrs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-15T11:01:11.000Z","updated_at":"2025-01-31T10:48:31.000Z","dependencies_parsed_at":"2024-11-23T22:18:58.248Z","dependency_job_id":null,"html_url":"https://github.com/ismaildrs/QuizScribe","commit_stats":null,"previous_names":["ismaildrs/quizscribe"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FQuizScribe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FQuizScribe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FQuizScribe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismaildrs%2FQuizScribe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ismaildrs","download_url":"https://codeload.github.com/ismaildrs/QuizScribe/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252874435,"owners_count":21817822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-30T08:16:56.588Z","updated_at":"2025-05-07T12:22:46.544Z","avatar_url":"https://github.com/ismaildrs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"public/logo.png\" alt=\"QuizScribe Logo\" width=\"60\" height=\"60\"/\u003e QuizScribe  \n![Version](https://img.shields.io/badge/Version-1.0-blue)  \n![Platform](https://img.shields.io/badge/Platform-Web%20%26%20Extension-green)\n\n**QuizScribe** is your gateway to smarter learning. This innovative platform transforms YouTube videos into interactive courses, allowing you to actively engage with content through summaries, flashcards, quizzes, and diagrams. Powered by cutting-edge AI technologies like **AssemblyAI**, QuizScribe redefines how knowledge is absorbed and retained, making learning more engaging and efficient.\n\n---\n![QuizScribe Preview](public/quizscribe-preview.png)\n\n---\n## 🚀 **Features**\n- **Summaries**: Quickly review the key points of any video.\n- **Flashcards**: Automatically generate study cards and export them to Anki for extended learning.  \n- **Quizzes**: Test your knowledge with personalized, AI-generated multiple-choice questions.  \n- **Diagrams**: Visualize and simplify complex concepts.  \n- **Folders**: Organize videos by topic, theme, or personal goals.  \n- **Browser Extension**: Seamlessly transform any YouTube video into a learning tool with a single click.\n\n---\n## 🌐 **Quick Links**\n- **Chrome Extension Repository**: [QuizScribe Chrome Extension](https://github.com/ismaildrs/quizscribe-extension)  \n- **Blog Post**: [QuizScribe on Dev.to](https://dev.to/ismail_drissi_32520264908/quizscribe-turning-youtube-videos-into-interactive-learning-tools-4l7g)\n\n---\n## 🛠️ **Setup and Installation**\n### Requirements\n- [Node.js](https://nodejs.org/en/)  \n- [Next.js](https://nextjs.org/)\n\n### Getting Started\n1. Clone the repository:  \n   ```bash\n   git clone https://github.com/ismaildrs/quizscribe.git\n   cd quizscribe\n   ```\n2. Install dependencies:  \n   ```bash\n   npm install\n   ```\n3. Set up environment variables:  \n   Create a `.env` file in the root directory with the following values:  \n   ```\n   AUTH_SECRET=\u003cyour_auth_secret\u003e\n   AUTH_GOOGLE_ID=\u003cyour_google_client_id\u003e\n   AUTH_GOOGLE_SECRET=\u003cyour_google_client_secret\u003e\n   ASSEMBLYAI_API_KEY=\u003cyour_assemblyai_api_key\u003e\n   YOUTUBE_API_KEY=\u003cyour_youtube_api_key\u003e\n   DATABASE_URL=\u003cyour_mongodb_connection_string\u003e\n   ```\n   **Variable Details**:\n   - **AUTH_SECRET**: A secure key for authentication.\n   - **AUTH_GOOGLE_ID** and **AUTH_GOOGLE_SECRET**: Obtain from Google Cloud Console under OAuth 2.0.\n   - **ASSEMBLYAI_API_KEY**: Create an account at [AssemblyAI](https://www.assemblyai.com/).\n   - **YOUTUBE_API_KEY**: Enable the YouTube Data API in [Google Cloud Console](https://console.cloud.google.com/).\n   - **DATABASE_URL**: Your MongoDB connection string, available on [MongoDB Atlas](https://www.mongodb.com/atlas/database).\n\n4. Configure the database:  \n   Run these Prisma commands to synchronize your schema:  \n   ```bash\n   npx prisma generate\n   npx prisma db push\n   ```\n5. Start the development server:  \n   ```bash\n   npm run dev\n   ```\n6. Open the app in your browser: [http://localhost:3000](http://localhost:3000).\n\n---\n## 🧑‍💻 **About Us**\nCreated with passion by:  \n\n\u003ca href=\"https://github.com/ismaildrs/quizscribe/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=ismaildrs/quizscribe\" /\u003e\n\u003c/a\u003e\n\nTogether, we aim to make online learning smarter, more engaging, and more accessible.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismaildrs%2Fquizscribe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fismaildrs%2Fquizscribe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismaildrs%2Fquizscribe/lists"}