I have read through the manual and I cannot find the answer. Given a magnet link I would like to generate a torrent file so that it can be loaded on the next startup to avoid redownloading the metadata. I have tried the fast resume feature, but I still have to fetch meta data when I do it and that can take quite a bit of time. Examples that I have seen are for creating torrent files for a new torrent, where as I would like to create one matching a magnet uri.
|
|
Solution found here: http://code.google.com/p/libtorrent/issues/detail?id=165#c5 See creating torrent: http://www.rasterbar.com/products/libtorrent/make_torrent.html Modify first lines:
To this:
"handle" is from here:
Also before creating torrent you have to make sure that metadata has been downloaded, do this by calling UPDATE Seems like libtorrent python api is missing some of important c++ api that is required to create torrent from magnets, the example above won't work in python cause So I tried it another way, but also encountered a brick wall that makes it impossible, here is the code:
There is an error thrown on this line:
It expects hash to be When I find some time I will report this missing api bug to libtorrent developers, as currently it is impossible to create a .torrent file from a magnet uri when using python bindings.
UPDATE 2 I've created an issue on this, see it here: http://code.google.com/p/libtorrent/issues/detail?id=294 Star it so they fix it fast. UPDATE 3 It is fixed now, there is a 0.16.0 release. Binaries for windows are also available. |
||||
|
|
|
If saving the resume data didn't work for you, you are able to generate a new torrent file using the information from the existing connection.
I doubt that it'll make the resume faster than the function built specifically for this purpose. |
|||
|
|
|
Try to see this code http://code.google.com/p/libtorrent/issues/attachmentText?id=165&aid=-5595452662388837431&name=java_client.cpp&token=km_XkD5NBdXitTaBwtCir8bN-1U%3A1327784186190 it uses add_magnet_uri which I think is what you need |
|||
|
|