I've written the following short python script to download flv videos using cclive on a Fedora 17 system.
urls = [line.strip() for line in open("urls.txt")]
for url in urlstoget:
os.system('cclive %s' % url)
It works fine but the videos are limited to about 80kbps. I have a 39 to download and would like to download 2-4 simultaneously.
How can I run the os.system() command multiple times simultaneously?