diff -r b1d0964060b3 -r 7f290a3a34b1 gmyth-stream/server/0.3/lib/request_handler.py --- a/gmyth-stream/server/0.3/lib/request_handler.py Wed Aug 15 13:33:12 2007 +0100 +++ b/gmyth-stream/server/0.3/lib/request_handler.py Tue Aug 21 16:04:44 2007 +0100 @@ -145,7 +145,7 @@ if body: file_list = [] - files.list_media_files(".transcoded", file_list) + files.list_media_files(utils.config.get_transcoded_location(), file_list) output = files.FileList(map(lambda x, y: x+y, file_list, ["
"]*len(file_list))) self.wfile.write(output) @@ -362,7 +362,7 @@ return #Only stream files on .transcode dir - filename = ".transcoded/" + os.path.basename(filename) + filename = os.path.join (utils.config.get_transcoded_location(), os.path.basename(filename)) self.log.error("Stream file: %s" % filename) if not os.path.exists (filename): self.send_error(404, "File not found")