What steps will reproduce the problem?
Using a file-like object the content is full loaded in memory. This is really
slow for big video files.
What is the expected output? What do you see instead?
More responsiveness and less memory usage
What version of the product are you using?
gdata 2.0.11
Please provide any additional information below.
Changing line 635 of gdata/youtube/service.py from:
file_handle = StringIO.StringIO(filename_or_handle.read())
to:
file_handle = filename_or_handle
fixes the problem.
Original issue reported on code.google.com by daniele....@gmail.com on 13 Aug 2010 at 12:07
Original issue reported on code.google.com by
daniele....@gmail.com
on 13 Aug 2010 at 12:07