youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2574721a81cd52fa4fda65fb0a494064c09308c3
parent dbcc4a6b32acdb13a872fcead50e6a254960a55e
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Mon, 21 Nov 2016 12:50:13 +0800

Clean and ignore more file types

ape is another audio codec seen in kuwo. See
https://en.wikipedia.org/wiki/Monkey's_Audio

Diffstat:
M.gitignore | 2++
MMakefile | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -31,6 +31,8 @@ updates_key.pem *.mp3 *.3gp *.wav +*.ape +*.mkv *.part *.swp test/testdata diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ all: youtube-dl README.md CONTRIBUTING.md README.txt youtube-dl.1 youtube-dl.bash-completion youtube-dl.zsh youtube-dl.fish supportedsites clean: - rm -rf youtube-dl.1.temp.md youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dl.tar.gz youtube-dl.zsh youtube-dl.fish youtube_dl/extractor/lazy_extractors.py *.dump *.part* *.info.json *.mp4 *.m4a *.flv *.mp3 *.avi *.mkv *.webm *.3gp *.wav *.jpg *.png CONTRIBUTING.md.tmp ISSUE_TEMPLATE.md.tmp youtube-dl youtube-dl.exe + rm -rf youtube-dl.1.temp.md youtube-dl.1 youtube-dl.bash-completion README.txt MANIFEST build/ dist/ .coverage cover/ youtube-dl.tar.gz youtube-dl.zsh youtube-dl.fish youtube_dl/extractor/lazy_extractors.py *.dump *.part* *.info.json *.mp4 *.m4a *.flv *.mp3 *.avi *.mkv *.webm *.3gp *.wav *.ape *.jpg *.png CONTRIBUTING.md.tmp ISSUE_TEMPLATE.md.tmp youtube-dl youtube-dl.exe find . -name "*.pyc" -delete find . -name "*.class" -delete