You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "c:\users\user\appdata\local\programs\python\python37-32\lib\runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Users\user\AppData\Local\Programs\Python\Python37-32\Scripts\yt_ddl.exe__main.py", line 7, in <module>
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\click\core.py", line 829, in call__
return self.main(args, **kwargs)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\click\core.py", line 782, in main
rv = self.invoke(ctx)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\click\core.py", line 1066, in invoke
return ctx.invoke(self.callback, ctx.params)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\click\core.py", line 610, in invoke
return callback(args, **kwargs)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\yt_ddl\yt_ddl.py", line 305, in main
v_data = download(v[kwargs["vf"]], range(start_segment, end_segment), download_threads)
File "c:\users\user\appdata\local\programs\python\python37-32\lib\site-packages\yt_ddl\yt_ddl.py", line 117, in download
combined_file.write(res)
MemoryError
Upon further investigation found this issue redis/redis-py#205 which talks about BytesIO/StringIO objects not handling a lot of data at once... a fix one of the comments proposed is chunking the data manually before writing to the IO object...
There was also a temporary/permanent possible fix of just installing 64-bit python...
This issue is not a priority as we can safely assume most users use a 64-bit system.
The text was updated successfully, but these errors were encountered:
Messaged by a discord user about MemoryError...
Upon further investigation found this issue redis/redis-py#205 which talks about BytesIO/StringIO objects not handling a lot of data at once... a fix one of the comments proposed is chunking the data manually before writing to the IO object...
There was also a temporary/permanent possible fix of just installing 64-bit python...
This issue is not a priority as we can safely assume most users use a 64-bit system.
The text was updated successfully, but these errors were encountered: