{"id":25538824,"url":"https://github.com/subhajitroycode/record-player","last_synced_at":"2025-11-03T16:03:06.325Z","repository":{"id":278212238,"uuid":"933719560","full_name":"subhajitroycode/record-player","owner":"subhajitroycode","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-18T15:08:22.000Z","size":103,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-18T16:23:35.806Z","etag":null,"topics":["react","react-hooks","reactjs","record-player","spotify","spotify-api","spotify-web-api","vinyl","vinyl-records"],"latest_commit_sha":null,"homepage":"https://record-player-sigma.vercel.app/","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/subhajitroycode.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":"2025-02-16T14:43:07.000Z","updated_at":"2025-02-18T15:17:00.000Z","dependencies_parsed_at":"2025-02-18T16:23:38.540Z","dependency_job_id":"a5e763d0-c038-47c2-aab6-fa8a8ca4bdd3","html_url":"https://github.com/subhajitroycode/record-player","commit_stats":null,"previous_names":["subhajitroycode/record-player"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Frecord-player","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Frecord-player/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Frecord-player/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Frecord-player/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subhajitroycode","download_url":"https://codeload.github.com/subhajitroycode/record-player/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239781115,"owners_count":19695962,"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":["react","react-hooks","reactjs","record-player","spotify","spotify-api","spotify-web-api","vinyl","vinyl-records"],"created_at":"2025-02-20T05:24:15.369Z","updated_at":"2025-11-03T16:03:06.272Z","avatar_url":"https://github.com/subhajitroycode.png","language":"JavaScript","readme":"# Record Player - Spotify Vinyl Experience\n\n![Record Player Preview](./public/desktop.jpeg)\n\n## Overview\n\nRecord Player is a web application that brings the nostalgic experience of vinyl records to your digital Spotify music. This React-based app creates an immersive listening experience with a realistic vinyl interface that animates as your music plays.\n\n## Features\n\n- **Authentic Vinyl Experience**: Watch as the record spins and the needle moves during playback\n- **Spotify Premium Integration**: Stream your Spotify playlists directly within the app\n- **Playlist Navigation**: Browse and select from your personal Spotify library\n- **Playback Controls**: Play, pause, and skip tracks with visual feedback\n- **Responsive Design**: Enjoy the experience on various device sizes\n\n## Demo\n\n[View Live Demo](https://record-player-sigma.vercel.app/)\n\n## Technologies Used\n\n- React.js\n- Spotify Web Playback SDK\n- Web API\n- Tailwind CSS\n- Vite\n- React Icons\n\n## Prerequisites\n\n- Spotify Premium account *(required for playback functionality)*\n- Modern web browser\n- Node.js and npm for local development\n\n## Installation\n\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/subhajitroycode/record-player.git\n   cd record-player\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Create a `.env` file in the root directory with your Spotify API credentials:\n   ```\n   VITE_CLIENT_ID=your_spotify_client_id\n   VITE_REDIRECT_URI=http://localhost:5173\n   ```\n\n4. Start the development server:\n   ```bash\n   npm run dev\n   ```\n\n5. Open your browser and navigate to the provided local URL (usually http://localhost:5173)\n\n## Usage\n\n1. Log in with your Spotify Premium account\n2. Browse your playlists in the horizontal scrolling menu\n3. Select a playlist to load it onto the virtual record player\n4. Use the controls beneath the record player to manage playback\n5. Watch as the vinyl spins and the needle moves during playback\n\n## Authorization Scopes\n\nThis application requires the following Spotify authorization scopes:\n\n- `user-read-private`: To verify Premium subscription status\n- `user-read-email`: For account identification\n- `playlist-read-private`: To access your complete playlist library\n- `streaming`: To enable playback control through the app\n\n## Configuration for Development\n\nTo run this application in development mode, you'll need to:\n\n1. Create a Spotify Developer account and register a new application\n2. Configure your app in the Spotify Developer Dashboard:\n   - Add `http://localhost:5173` as a Redirect URI\n   - Note your Client ID (no Client Secret needed as we use PKCE)\n3. Update your `.env` file with the Client ID\n\n## Deployment\n\nThis application can be deployed to any static hosting service:\n\n1. Build the production version:\n   ```bash\n   npm run build\n   ```\n\n2. Deploy the contents of the `dist` directory to your hosting service\n\n3. Remember to add your production URL to the Redirect URIs in your Spotify Developer Dashboard\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## Acknowledgements\n\n- [Spotify Web API](https://developer.spotify.com/documentation/web-api/)\n- [Spotify Web Playback SDK](https://developer.spotify.com/documentation/web-playback-sdk/)\n- [React Icons](https://react-icons.github.io/react-icons/)\n- [Tailwind CSS](https://tailwindcss.com/)\n\n## Socials\n\nConnect with me on:\n- X/Twitter: [@subhajitroycode](https://x.com/subhajitroycode)\n- LinkedIn: [subhajitroycode](https://linkedin.com/in/subhajitroycode)\n- Instagram: [@subhajitroycode](https://instagram.com/subhajitroycode)\n\nProject Link: [github.com/subhajitroycode/record-player](https://github.com/subhajitroycode/record-player)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhajitroycode%2Frecord-player","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhajitroycode%2Frecord-player","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhajitroycode%2Frecord-player/lists"}