Chi potrebbe semplificare questo script meglio di quello che è?


1
#!/bin/sh -e
#
# Usage:
#   ytpl song title
#   ytpl < titles
#

go() {
    echo "Playing $1"

    # Force TTY input for controls even if titles are read from input
    echo https://youtu.be/ > tmp1.txt
    youtube-dl --get-id "ytsearch:$1" > tmp2.txt
    youtube-dl --get-title "ytsearch:$1" > tmp4.txt
    paste -d" " tmp1.txt tmp2.txt > tmp3.txt
    paste -d" " tmp3.txt tmp4.txt > tmp5.txt
    sed 's/ //' tmp5.txt > tmp6.txt
    cat tmp6.txt
    mpv --vid=no "$(youtube-dl -g "ytsearch:$1" | tail -1)" < /dev/tty
    rm tmp*.txt
}

# All arguments as a single space separated string
if [ -n "$*" ]; then
    go "$*"
    exit
fi

# Read one title per line
while read title; do
    go "$title"
done

Dovresti accettare la risposta (facendo clic sul simbolo a forma di V accanto al testo della risposta) se ha risolto il tuo problema.
MariusMatutiae,

Oops, non ho visto questo messaggio ieri scusa :(
user3287029

Risposte:


1
echo https://youtu.be/ > tmp1.txt
youtube-dl --get-id "ytsearch:$1" >> tmp1.txt
youtube-dl --get-title "ytsearch:$1" >> tmp1.txt
cat tmp1.txt |tr '\n' ' '|sed 's/ //' > tmp2.txt
cat tmp2.txt
mpv --vid=no "$(youtube-dl -g "ytsearch:$1" | tail -1)" < /dev/tty
rm tmp*.txt

Esempio di codice 2 Seguire queste numerose istruzioni: http://www.unixmen.com/access-twitter-via-command-line-terminal/

a=$(youtube-dl --get-id "ytsearch:$1")
b=$(youtube-dl --get-title "ytsearch:$1")
c="https://youtu.be/$a $b"
echo $c
t update "$c"
mpv --vid=no "$(youtube-dl -g "ytsearch:$1" | tail -1)" < /dev/tty

Ho bisogno di quelle 3 linee direttamente in 1, quindi potrei usarle per incollarle in un elenco e / o condividerle su Facebook e Twitter, aprendo il browser dal terminale stesso :) THX
user3287029,

@ user3287029 Ci sono 3 righe in 1
cybernard il

Quello! Signore ... l'ho fatto :) THX
user3287029,

@utente3287029 FYI: --get-id e --get-title possono essere combinati in 1 riga, ma saranno nell'ordine inverso. youtube-dl --get-id --get-title "ytsearch: $ 1" .
cybernard,

So che è per questo che ho dovuto separarli, scusate un'altra richiesta, il primo spazio vuoto deve essere eliminato e unire "youtu.be/" con il risultato --get-id. :(
user3287029,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.