Easy to use youtube music streamer command line tool written in python3
Project description
Currently out of date, run pYTerm --help
for latest args
pYTerm 0.5
pYTerm is a simple command line youtube music player using python 3. This is still currently under heavy development and features are subject to being changed and things being added. Bugs will happen.
Requirements
- VLC media player installed
- All libraries from
requirements.txt
if using the source code instead of the pip package. - Patience
Playback controls
Controls: [v]olume,[s]kip,[prev]ious,[p]ause,[m]ove,[t]imestamp,[g]oto,[e]xit
When in the player is active you can control it via typing in the command letters above to do the function shown with them. A few examples are below.
In this example the volume is changed by entering v <volume percent wanted>
Controls: [v]olume,[s]kip,[prev]ious,[p]ause,[m]ove,[t]imestamp,[g]oto,[e]xit
playing [1/1] "STAR SHOPPING (Instrumental)" by Theolonius Kelly - Topic [02:11]
v 75
In this example the player head is moved by entering m <± seconds to move>
Controls: [v]olume,[s]kip,[prev]ious,[p]ause,[m]ove,[t]imestamp,[g]oto,[e]xit
playing [1/1] "STAR SHOPPING (Instrumental)" by Theolonius Kelly - Topic [02:11]
m -10
pYTerm command line
For all the info in this section you can use pYTerm -h to view it offline.
usage: pYTerm.py [-h] [--version] [-v VOLUME] [-l] [-s] [-a] [-p PLAYLIST] [-rp RICHPRESENCE] [-ni] [-as] [--verbose] [-vl] [--fr] ...
Play youtube audio from the commandline / écouter l'audio des vidéos youtube sur la ligne de commande
positional arguments:
songs name of the song you want to play / nom de la chanson à jouer tu veux jouer
optional arguments:
-h, --help show this help message and exit
--version prints version / version imprimé
-v VOLUME, --volume VOLUME
starts with <value> volume / le programme démarrer avec un niveau de volume <value>
-l, --loop enable playlist looping
-s, --shuffle enable playlist shuffling
-a, --autoplay enable automatically playing recommended songs based on the playlist
-p PLAYLIST, --playlist PLAYLIST
use playlist file / utiliser une playlist à partir d'un fichier
-rp RICHPRESENCE, --richpresence RICHPRESENCE
either False to disable RP, True or a rich presence ID string to enable
-ni, --noinput disables player controls / désactiver les contrôles
-as, --audiostream forces the use of audio streams, reduces bandwith and might increase quality at the cost of stability
--verbose enable verbose logging
-vl, --vlclogs enable vlc logging
--fr enable french output / activer mode français
Using pYTerm as a library
ALL LIBRARY FUNCTIONS AND CLASSES ARE STILL UNDER DEVELOPMENT AND MAY NOT WORK OR BEHAVIORS MAY CHANGE.
pYTerm is able to be imported as a library how you would with any other python library:
#!/usr/bin/python3
import pYTerm
The next thing to do is to make a player object, and you are ready to use the methods when they are working.
from pYTerm import pYTerm
# Initializes a player object from the player class.
player = pYTerm.player(richPresenceID=True, # -rp argument (can be a boolean or RPC ID
quiet=False, # Whether the player will output to the console (also disables user input)
debug=False, # Whether pYTerm logs will be printed
vlclogs=False, # Whether VLC logs will be printed
forceaudiostream=True,
# Forces the use of audio streams, reduces bandwidth and might increase quality at the cost of stability
wait=True,
# If true it will halt the program if go() gets run if false it will run in a thread and continue the program
allowInput=True, # Whether or not user input will be accepted
songs=None, #
playlistFile=None,
shuffle=False,
loop=False,
volume=100,
fr=False,
autoplay=False,
keepAlive=False)
player.playSong("Benz Truck lil peep") # Not functional at the moment.
# This should play a song using pYTerm the only arg needed is the search query
# for the song or the link to the song.
player.pause() # Should work
player.unpause() # Should work
player.togglepause() # Should work
# These three methods should pause, unpause, or toggle pause for the player.
player.go() # Unknown status
# go runs the main playlist and must be called if you want playlist functionality;
# like keeping track of the songs, being able to use next() and previous(), using the loop option in the class init, and stuff like autoplay.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file p_yt_erm-0.5.post1-py3-none-any.whl
.
File metadata
- Download URL: p_yt_erm-0.5.post1-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfbb7dc8035aa45b2e697b240eb335f9612f5df271ce01d4a89f262c12b41148 |
|
MD5 | b876d4b84b8312936bbb34a5294d3a26 |
|
BLAKE2b-256 | 395340d71e6a811a8184c601440fcefbfc9e726c16348390b2ec3d2ce6c00064 |