1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
# -*- coding: utf-8 -*-
#
# mimms - mms stream downloader
# Copyright © 2008 Wesley J. Landaker <wjl@icecavern.net>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
This module contains the core implementation of mimms. This exists
primarily to make it easier to use mimms from other python programs.
"""
import os
import sys
from optparse import OptionParser
from time import time
from urlparse import urlparse
from . import libmms
VERSION="3.2.1"
class Timeout(Exception):
"Raised when a user-defined timeout has occurred."
pass
class NotResumeableError(Exception):
"Raised when a resume is attempted on a non-resumeable stream."
pass
class Timer:
"A simple elapsed time timer."
def __init__(self):
"Create and start a timer."
self.start = time()
def restart(self):
"Restart the timer, returning the elapsed time since the last start."
elapsed = self.elapsed()
self.start = time()
return elapsed
def elapsed(self):
"Return the elapsed time since the last start."
return time() - self.start
def bytes_to_string(bytes):
"Given a number of bytes, return a string representation."
if bytes < 0: return "∞ B"
if bytes < 1e3: return "%.2f B" % (bytes)
elif bytes < 1e6: return "%.2f kB" % (bytes/1e3)
elif bytes < 1e9: return "%.2f MB" % (bytes/1e6)
else: return "%.2f GB" % (bytes/1e9)
def seconds_to_string(seconds):
"Given a number of seconds, return a string representation."
if seconds < 0: return "∞ s"
h = seconds // 60**2
m = (seconds % 60**2) // 60
s = seconds % 60
return "%02d:%02d:%02d" % (h, m ,s)
def get_filename(options):
"Based on program options, choose an appropriate filename."
# if we are given a filename, use it; otherwise, synthesize from url
if options.filename: filename = options.filename
else:
filename = os.path.basename(urlparse(options.url).path)
# assume .wmv if there is no extention
if filename.find(".") == -1: filename += ".wmv"
# if we are clobbering or resuming a file, use the filename directly
if options.clobber or options.resume: return filename
# otherwise, we need to pick a new filename that isn't used
new_filename = filename
i = 1
while os.path.exists(new_filename):
new_filename = "%s.%d" % (filename, i)
i += 1
return new_filename
def download(options):
"Using the given options, download the stream to a file."
status = "Connecting ..."
if not options.quiet: print status,
sys.stdout.flush()
stream = libmms.Stream(options.url, options.bandwidth)
if options.resume:
if not stream.seekable():
raise NotResumeableError
filename = get_filename(options)
if options.resume:
f = open(filename, "a")
stream.seek(f.tell())
else:
f = open(filename, "w")
clear = " " * len(status)
status = "%s => %s" % (options.url, filename)
if not options.quiet: print "\r", clear, "\r", status
sys.stdout.flush()
timeout_timer = Timer()
duration_timer = Timer()
bytes_in_duration = 0
bytes_per_second = 0
for data in stream:
f.write(data)
# keep track of the number of bytes handled in the current duration
bytes_in_duration += len(data)
# every duration, update progress bar
if duration_timer.elapsed() >= 1:
# calculate a weighted average over 10 durations
bytes_per_second *= 9;
bytes_per_second += bytes_in_duration / duration_timer.restart()
bytes_per_second /= 10.0
# reset the byte counter to prepare for the next duration
bytes_in_duration = 0
# estimate the number of seconds remaining
bytes_remaining = stream.length() - stream.position()
seconds_remaining = bytes_remaining / bytes_per_second
# if the stream has no duration, then we can't tell the stream length
# or estimate the download time remaining
# TODO: is this always true? is duration 0 iff length is undefined?
if stream.duration():
length = stream.length()
remaining = seconds_remaining
else:
length = -1
remaining = -1
# if we are running with a user-defined timeout, we always have an
# upper bound on how much time is remaining
if options.time:
if remaining < 0 or options.time < remaining:
remaining = options.time*60 - timeout_timer.elapsed()
clear = " " * len(status)
status = "%s / %s (%s/s, %s remaining)" % (
bytes_to_string(stream.position()),
bytes_to_string(length),
bytes_to_string(bytes_per_second),
seconds_to_string(remaining)
)
if not options.quiet: print "\r", clear, "\r", status,
sys.stdout.flush()
if options.time and timeout_timer.elapsed() > (options.time*60):
raise Timeout
f.close()
stream.close()
def run(argv):
"Run the main mimms program with the given command-line arguments."
usage = "usage: %prog [options] <url> [filename]"
parser = OptionParser(
usage=usage,
version=("%%prog %s" % VERSION),
description="mimms is an mms (e.g. mms://) stream downloader")
parser.add_option(
"-c", "--clobber",
action="store_true", dest="clobber",
help="automatically overwrite an existing file")
parser.add_option(
"-r", "--resume",
action="store_true", dest="resume",
help="attempt to resume a partially downloaded stream")
parser.add_option(
"-b", "--bandwidth",
type="float", dest="bandwidth",
help="the desired bandwidth for stream selection in BANDWIDTH bytes/s")
parser.add_option(
"-t", "--time",
type="int", dest="time",
help="stop downloading after TIME minutes")
parser.add_option(
"-v", "--verbose",
action="store_true", dest="verbose",
help="print verbose debug messages to stderr")
parser.add_option(
"-q", "--quiet",
action="store_true", dest="quiet",
help="don't print progress messages to stdout")
parser.set_defaults(time=0, bandwidth=1e6)
(options, args) = parser.parse_args(argv)
if len(args) < 1:
parser.error("url must be specified")
elif not args[0].startswith("mms"):
# TODO: handle http:// urls to .asx files that contain mms urls
parser.error("only mms urls (i.e. mms://, mmst://, mmsh://) are supported")
elif len(args) > 2:
parser.error("unknown extra arguments: %s" % ' '.join(args[2:]))
options.url = args[0]
if len(args) > 1: options.filename = args[1]
else: options.filename = None
try:
download(options)
except Timeout:
if not options.quiet:
print
print "Download stopped after user-specified timeout."
except NotResumeableError:
if not options.quiet:
print
print >> sys.stderr, "Non-seekable streams cannot be resumed."
except KeyboardInterrupt:
if not options.quiet:
print
print >> sys.stderr, "Download aborted by user."
except libmms.Error, e:
print >> sys.stderr, "libmms error:", e.message
else:
if not options.quiet:
print
print "Download complete!"
|