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.
19 lines
370 B
19 lines
370 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
#Создан: Пт 26 фев 2016 21:04:00
|
||
8 years ago
|
#Изменён: Чт 05 окт 2017 13:15:44
|
||
9 years ago
|
|
||
|
#- vlc-ncurses с увеличенной скоростью воспроизведения
|
||
|
|
||
|
speed=${1%%[^+0-9]*}
|
||
|
|
||
|
if [ ! -z "$speed" ]; then
|
||
|
shift
|
||
|
rate=$(echo "1.0 + 0.${speed//+}" | bc -l)
|
||
|
else
|
||
|
rate="1.0"
|
||
|
fi
|
||
|
|
||
8 years ago
|
vlc --rate $rate -I ncurses --no-color ${@:-*.mp3}
|
||
9 years ago
|
|