All Projects → aayush1205 → muCLIar

aayush1205 / muCLIar

Licence: Apache-2.0 license
YouTube automator bringing you your music right on your CLI.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to muCLIar

Ngx Youtube Player
YouTube player app built with Angular 7
Stars: ✭ 92 (-22.69%)
Mutual labels:  playlist, youtube-player
angular-youtube-player
Simple youtube player created with angular and typescript. See demo.
Stars: ✭ 35 (-70.59%)
Mutual labels:  playlist, youtube-player
Musicplayer
Implemented using Clean Arch, MVVM, LiveData, Room, Koin, Coil, Service, Notification and ExoPlayer
Stars: ✭ 413 (+247.06%)
Mutual labels:  playlist, musicplayer
MusicPlayer
A Telegram Music Bot written in Python using Pyrogram and Py-Tgcalls. This is Also The Source Code of The UserBot Which is Playing Music in @S1-BOTS Support Group ❤️
Stars: ✭ 218 (+83.19%)
Mutual labels:  playlist, musicplayer
Streamly
Portable, independent, web-based, simple streaming YouTube video queues and playlists for music videos, audiobooks, etc.
Stars: ✭ 60 (-49.58%)
Mutual labels:  playlist, youtube-player
splitcloud-app
This is the repo for the legacy SplitCloud for iOS app built with ReactNative and a fork of StreamingKit project.
Stars: ✭ 59 (-50.42%)
Mutual labels:  playlist, song
pushtape-player.js
Customizable JS audio page player with global playback controls and autoscan (mutationobserver), built on Soundmanager2.
Stars: ✭ 27 (-77.31%)
Mutual labels:  playlist
Telegram Vc Bot
A bot that can play music on telegram group's voice chat.
Stars: ✭ 94 (-21.01%)
Mutual labels:  song
SpotifyWebApi
A .net core wrapper for the Spotify Web API
Stars: ✭ 19 (-84.03%)
Mutual labels:  playlist
mpv-iptv
iptv script for mpv
Stars: ✭ 64 (-46.22%)
Mutual labels:  playlist
MusicFolderPlayer
An elegant HTML5 web folder player for parties and/or private music collections, with playlist management that's just better.
Stars: ✭ 89 (-25.21%)
Mutual labels:  playlist
ember-youtube
An Ember.js component to load, play and control YouTube videos using the iframe API
Stars: ✭ 57 (-52.1%)
Mutual labels:  youtube-player
mpdq
Automatic MPD "smart playlist" creator with minimal but hackable setup.
Stars: ✭ 18 (-84.87%)
Mutual labels:  playlist
peerstohttp
Simple torrent proxy to http stream controlled over REST-like api
Stars: ✭ 30 (-74.79%)
Mutual labels:  playlist
sync-dl
Flexible tool for saving and syncing playlists from YouTube without loosing removed songs
Stars: ✭ 13 (-89.08%)
Mutual labels:  playlist
AppleScriptive
Functional AppleScripts operating out of Keyboard Maestro, Alfred and Automator to optimise productivity.
Stars: ✭ 44 (-63.03%)
Mutual labels:  automator
search-youtube
An Android App used for searching and playing videos from YouTube. Used: Youtube Data API v3, YouTube Player API
Stars: ✭ 24 (-79.83%)
Mutual labels:  youtube-player
playlist-randomizer
A small React app that makes use of Redux, React Router and Material UI
Stars: ✭ 32 (-73.11%)
Mutual labels:  playlist
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 (-76.47%)
Mutual labels:  playlist
spotify-vibe-check
Spotify Vibe Checker Web App to vibe check your Spotify Playlists! (currently broken due to CORS)
Stars: ✭ 24 (-79.83%)
Mutual labels:  playlist

muCLIar hydrogen animated logo

Development Stage License Issues Stars

Imp: Multiple new features were added. Do consider uninstalling once and installing the fresh version.

Coffee, Music and Code! What else could we developers ask for?

But then, long gone are days of slow internet and locally stored songs. muCLIar is a command line utility that lets you play the song you wish to listen to, directly through your command line. muCLIar lets you log in to Youtube and hence plays your "similar song" playlist as well, so you can search a song and then enjoy the mood for a long while.


Note

  1. muCLIar is in active development. If you land into unprecedented errors, please feel free to open an issue. We would work on it as soon as possible.
  2. We are still working on finding a workaround to let you login to your YouTube account so that your "favourite songs playlist" starts playing after the current song finishes. We did have the login functionality before, but turns out, Google is now rejecting automated login.

Features

  1. Enjoy your music, advertisement and hassle free, right from your terminal in a single lined command.
  2. Play/Pause/Switch between the songs using simple keypresses.
  3. Play the YouTube mix relevant to your song.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Supported Distributions:

  1. Ubuntu
  2. Arch Linux

Prerequisites

  1. Conda
  2. Google Chrome

Installing

The repository has the installer script. This is what you need to do to get muCLIar running on your system:

  1. Clone the repository:
git clone https://github.com/aayush1205/muCLIar.git
  1. Get into the muCLIar directory:
cd muCLIar or cd /path/to/muCLIar
  1. Run the installer:

a. For Ubuntu:

./env.sh

b. For Arch Linux(might work in arch-based distros too: Manjaro, Velt etc.):

./arch_install.sh

4. You might encounter a XVFB display error. Just to ensure it doesn't happen, do the following:

UPD: Player uses PyVirtualDisplay now.

Uninstalling

Use the uninstaller script. It will handle all the deletions and script removal.

./uninstall.sh

Using muCLIar

  1. Once you are done installing muCLIar, now its time to enjoy this utility. All you have to do is run:
mu -s "name of the song"

UPD : The player shows the controller on the terminal.

Built With


Contributing

How to Contribute?

  • Make sure that your changes do not conflict with the core files (changing file directories will require a change in all called paths)
  • Follow the original code structure
  • Refactoring contributions are welcome, explicitly mention "[Refactor]" in your pull request
  • Give a few days to review PRs, code reviews are welcome

Steps to sync fork with master (Open Source Contributors):

If you fork is behind from the master project you can do these to get the latest version in the master branch of your fork. First go to your(cloned) project folders. Open the terminal in this directory then enter the following commands in the terminal:

  • Configuring a remote for fork

    $ git remote -v 
    //Lists the current configured remote repository for your fork//
    $ git remote add upstream https://github.com/aayush1205/muCLIar.git
    //Specifies a new remote upstream repository that will be synced with the fork//
    $ git remote -v
    //Should show the newly made remote *upstream* along with your previous remote//
    
  • Syncing the fork

    $ git fetch upstream
    //Fetch the branches and their respective commits from the upstream repository//
    $ git checkout master
    //Switches to local master branch//
    $ git merge upstream/master
    //Merges the upstearm remote (Main repo) into your local fork//
    

Python Code Style

PEP8


Contributors


License

This project is licensed under the Apache License - see the LICENSE.md file for details


Acknowledgments

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].