Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/remixer-dec/youtubeplaylistrandomizer
Randomize YouTube playlists, shuffle the videos, avoid repetitions, save progress.
https://github.com/remixer-dec/youtubeplaylistrandomizer
es5 ie10 javascript playlist single-page-app spa vue vuejs2 webapp youtube
Last synced: about 14 hours ago
JSON representation
Randomize YouTube playlists, shuffle the videos, avoid repetitions, save progress.
- Host: GitHub
- URL: https://github.com/remixer-dec/youtubeplaylistrandomizer
- Owner: remixer-dec
- License: other
- Created: 2021-01-27T20:50:07.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-23T23:49:54.000Z (about 1 year ago)
- Last Synced: 2024-04-28T05:05:36.372Z (7 months ago)
- Topics: es5, ie10, javascript, playlist, single-page-app, spa, vue, vuejs2, webapp, youtube
- Language: JavaScript
- Homepage: https://remixer-dec.github.io/YouTubePlaylistRandomizer/
- Size: 28.3 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## YouTube playlist randomizer (shuffler)
Are you tired of listening to the same songs over and over? Is YouTube's default shuffle not good enough for you? Do you want to save randomized playlist for later, keeping the playback history? [This app](https://remixer-dec.github.io/YouTubePlaylistRandomizer/) was created to deal with these issues.
![Screenshot](https://i.imgur.com/n5eDzU4.png "Screenshot")
### Random
This randomizer dones't rely on Math.random, and it uses a few different [seed-based pseudorandom generators](https://stackoverflow.com/questions/521295/seeding-the-random-number-generator-in-javascript/47593316 "seed-based pseudorandom generators").
Is up to you, if you want to keep the seed (and the count of generated numbers) or generate it based on current time. You can also specify if duplicates are allowed in the playlist. The seed is reset when you add a playlist or when you reach the full length of the playlist.
### Privacy
After googling a few different implementations of playlist randomizers, I noticed that they either communicate to thrid-party servers or leak their api keys. This implementation uses Google's [iFrame Player API](https://developers.google.com/youtube/iframe_api_reference "iFrame Player API"). So you're only communicating with YouTube directly. All the configuration data is stored locally in your browser.
### Compatibility
This app was written using ES5 + Vue, so you could run it even in Internet Explorer 10. Mobile devices are also supported.### Building
You don't need to build anything. All you need is a static content server.
(c) 2021 Remixer Dec | Source code license: [CC-BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)