diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-08-20 21:02:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-08-20 21:02:00 -0300 |
commit | 0220c9924c6fb633e7cd55be548a1604fdf4f63c (patch) | |
tree | 08d2f1e4b5c5b1c3556fc81893619e73b0835285 /youtube-player | |
parent | e851401694daacaf1aba2c87ed557e5dbf00af02 (diff) | |
download | scripts-0220c9924c6fb633e7cd55be548a1604fdf4f63c.tar.gz scripts-0220c9924c6fb633e7cd55be548a1604fdf4f63c.tar.bz2 |
Move scripts to other repositories (2)
Diffstat (limited to 'youtube-player')
-rwxr-xr-x | youtube-player | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/youtube-player b/youtube-player deleted file mode 100755 index 46b8dd5..0000000 --- a/youtube-player +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -# -# Youtube player from the command line -# https://unix.stackexchange.com/questions/160212/watch-youtube-videos-in-terminal -# - -# Parameters -BASENAME="`basename $0`" -URL="$1" - -# Check -if [ -z "$1" ]; then - echo "usage: $BASENAME <url>" - exit 1 -fi - -# Run -youtube-dl $URL -o - | mplayer -vo aa -monitorpixelaspect 0.5 - |