All Projects → sidneys → youtube-playlist-player

sidneys / youtube-playlist-player

Licence: MIT License
Watch and edit YouTube playlists on the desktop.

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to youtube-playlist-player

IdealMedia
Awesome app to listen music and audiobooks on the device and online at vk.com. Search, download, set as ringtone, sort by albums, authors, folder. Powerful equalizer.
Stars: ✭ 28 (+100%)
Mutual labels:  playlists, playlist
YoutubeSpotifyDL
Youtube and Spotify music downloader with metadata.
Stars: ✭ 66 (+371.43%)
Mutual labels:  playlists
albumArtCreator
A simple tool to make it easy to create good looking album art
Stars: ✭ 26 (+85.71%)
Mutual labels:  playlist
HAudioPlayer
AVPlayer再封装,实现类网易云音乐播放动画效果
Stars: ✭ 15 (+7.14%)
Mutual labels:  mediaplayer
ChatVoicePlayer
An Android library to make the implementation of voice/audio messages' playing easier
Stars: ✭ 157 (+1021.43%)
Mutual labels:  mediaplayer
PlaylistParty
📺 Play Spotify Playlists on Youtube.
Stars: ✭ 20 (+42.86%)
Mutual labels:  playlist
smotreshka-ripper
smotreshka.tv playlist maker
Stars: ✭ 16 (+14.29%)
Mutual labels:  playlist
163MusicToSpotify
Convert your favorite 163 music playlist to Spotify
Stars: ✭ 98 (+600%)
Mutual labels:  playlist
MQPlayer
Android video player based on FFmpeg and Exoplayer
Stars: ✭ 20 (+42.86%)
Mutual labels:  mediaplayer
ad-alexatalkingclock
Alexa (or other Smart Speakers) tell you the time without asking every hour. Please ⭐️if you like my app :)
Stars: ✭ 30 (+114.29%)
Mutual labels:  mediaplayer
HPlayer2
Modular Media Player for Raspberry Pi and more...
Stars: ✭ 28 (+100%)
Mutual labels:  mediaplayer
IPtv
A collection of private IPtv list as well as Third-party IPtv list. (not updated anymore)
Stars: ✭ 16 (+14.29%)
Mutual labels:  playlist
android-audio-sensei
High-level library to make android audio recording and playing more simple by handling boring stuff like runtime permissions and by completely abstracting audio playback controller
Stars: ✭ 41 (+192.86%)
Mutual labels:  mediaplayer
youtube-playlist-duration
A Google Chrome extension for calculating the duration of YouTube playlists.
Stars: ✭ 24 (+71.43%)
Mutual labels:  playlists
hls-live-thumbnails
A service which will generate thumbnails from a live HLS stream.
Stars: ✭ 49 (+250%)
Mutual labels:  playlist
YoutubePlaylistDownloader
A tool to download whole playlists, channels or single videos from youtube and also optionally convert them to almost any format you would like
Stars: ✭ 226 (+1514.29%)
Mutual labels:  playlists
musicplayer
musicplayer 音乐播放器框架 简单易懂易扩展 已写了播放器demo和列表播放的demo兼容七牛等第三方Mediaplayer
Stars: ✭ 14 (+0%)
Mutual labels:  mediaplayer
fresh script
Find Spotify tracks posted to the HipHopHeads subreddit and add them to a Spotify playlist.
Stars: ✭ 69 (+392.86%)
Mutual labels:  playlist
m3ufilter
ABANDONED - A tool that allows to filter specific items from an m3u filter designed for IPTV.
Stars: ✭ 46 (+228.57%)
Mutual labels:  playlist
aws-clustered-video-streams
A clustered video stream is an AWS architecture that increases the quality and reliability of live events by providing seamless regional failover capabilities for live video steams. Operators can monitor the status of the clustered stream from a single pane of glass and dynamically control from which region the stream consumed by a player origin…
Stars: ✭ 35 (+150%)
Mutual labels:  playlist

YouTube Playlist Player Beta travis appveyor npm dependencies devDependencies



Watch & edit your YouTube playlist on the desktop.
Available for macOS, Windows and Linux.

Features

Multiple Viewing Modes

Supports regular Playback as well as YouTube TV (Leanback) viewing modes.

Unobstrusive

Watch videos without browser chrome.

Efficient

Enables hardware-accelerated h264 YouTube playback across platforms.

Simple

Copy & paste a YouTube playlist URL to get started. Login to edit playlists.

Adblocker

Filters on-page and in-stream ads.

Contents

  1. Installation
  2. Developers
  3. Continuous Integration
  4. Contact
  5. Author

Installation

Standard Installation

Download the latest version of YouTube Playlist Player on the Releases page.

Installation as Commandline Tool

npm install --global youtube-playlist-player		# Installs the node CLI module
youtube-playlist-player							# Runs it

Developers

Sources

Clone the repo and install dependencies.

git clone https://github.com/sidneys/youtube-playlist-player.git youtube-playlist-player
cd youtube-playlist-player
npm install

Scripts

npm run start

Run the app with integrated Electron.

npm run start
npm run start:dev 					# with Debugging Tools
npm run start:livereload 			# with Debugging Tools and Livereload

npm run localsetup

Install the app in the System app folder and start it.

npm run localsetup
npm run localsetup:rebuild			# Build before installation
npm run localsetup:rebuild:dev 		# Build before installation, use Developer Tools

npm run build

Build the app and create installers (see requirements).

npm run build					# build all available platforms
npm run build macos windows		# build specific platforms (macos/linux/windows)

Build Requirements

  • Building for Windows requires wine and mono (on macOS, Linux)
  • Building for Linux requires fakeroot and dpkg (on macOS, Windows)
  • Only macOS can build for other platforms.

macOS Build Setup

Install Homebrew, then run:

brew install wine mono fakeroot dpkg

Linux Build Setup

sudo apt-get install wine mono fakeroot dpkg

Continuous Integration

Turnkey build-in-the-cloud for Windows 10, macOS and Linux.

The process is managed by a custom layer of node scripts and Electron-optimized configuration templates. Completed Installation packages are deployed to GitHub Releases. Builds for all platforms and architectures take about 5 minutes. Backed by the open-source-friendly guys at Travis and AppVeyor](https://ci.appveyor.com/) and running electron-packager under the hood.

Setup

  1. Fork the repo
  2. Generate your GitHub Personal Access Token using "repo" as scope. Copy it to the clipboard.
  3. macOS + Linux
    1. Sign in to Travis using GitHub.
    2. Open your Travis Profile, click "Sync Account" and wait for the process to complete.
    3. Find this repository in the list, enable it and click "" to open its settings.
    4. Create a new Environment Variable named GITHUB_TOKEN. Paste your Token from step 2 as value.
  4. Windows
    1. Sign in to AppVeyor using GitHub.
    2. Click on "New Project", select "GitHub", look up this repo in the list and click "Add".
    3. After import navigate to the Settings > Environment subsection
    4. Select "Add Variable", insert GITHUB_TOKEN for name, paste your Token as value. Save.

Triggering Builds

  1. Add a new Tag to start the build process:

    git tag -a v1.0.1
    git push --tags

    The builds are started in parallel and added to the "Releases" page of the GitHub repo (in draft mode).

  2. Use the editing feature to publish the new app version.

  3. There is no step 3

Contact Contributions Wanted

  • Gitter Developer Chat
  • Issues File, track and discuss features and issues
  • Wiki Read or contribute to the project Wiki

Author

sidneys 2016

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].