projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
use youtube-dl's own switches for y function
[~bandali/configs]
/
zsh
/
.zshrc.local
diff --git
a/zsh/.zshrc.local
b/zsh/.zshrc.local
index
496f94b
..
be7ad02
100644
(file)
--- a/
zsh/.zshrc.local
+++ b/
zsh/.zshrc.local
@@
-14,6
+14,5
@@
function take() {
function y() {
cd ~/music
- youtube-dl -f bestaudio $1
- for f in *.m4a; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; rm "$f"; done
+ youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 $1
}