downloads | cli downloads

CLI Download Tools

downloading all images or pfds from a website:

wget -r -l1 -nd --no-parent --no-check-certificate -e robots=off --random-wait -A.jpg,JPG,jpeg,JPEG,png,PNG,gif,GIF http://website

wget -r -l1 -nd --no-parent --no-check-certificate -e robots=off --random-wait -A.pdf,PDF http://website

aria2c parallel download (default = 5):

aria2c -j http://host/image.iso

aria2c -j3 http://host/image.iso

resume download with aria2c:

aria2c -c http://some.server.com/file

wget speed limit:

wget --limit-rate=20k http://some.server.com/file

resume download with wget:

wget -c http://some.server.com/file

Download all files in an rss feed:

curl http://www.badvoltage.org/feed/ogg/ | grep -o '<enclosure url="[^"]*' | grep -o '[^"]*$' | xargs wget -c

curl speed limit

--limit-rate 200K

start transmission remotely:

ssh user@192.168.1.55 "DISPLAY=:0 nohup transmission-gtk"

stream download:

mplayer mms://link/in.xyz -dumpstream -dumpfile dosya.xyz

wav conversion

mplayer in.rm -ao pcm:file=out.wav

download and convert to wav in one step:

mplayer rtsp://link/in.rm -ao pcm:file=out.wav