You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
370 B
18 lines
370 B
#!/bin/bash |
|
|
|
#Создан: Пт 26 фев 2016 21:04:00 |
|
#Изменён: Чт 05 окт 2017 13:15:44 |
|
|
|
#- vlc-ncurses с увеличенной скоростью воспроизведения |
|
|
|
speed=${1%%[^+0-9]*} |
|
|
|
if [ ! -z "$speed" ]; then |
|
shift |
|
rate=$(echo "1.0 + 0.${speed//+}" | bc -l) |
|
else |
|
rate="1.0" |
|
fi |
|
|
|
vlc --rate $rate -I ncurses --no-color ${@:-*.mp3} |
|
|
|
|