Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好吧,我正在开发一个bittorent客户端,我正在尝试通过下载特定片段并从中提取图像来生成视频文件的缩略图,但我还没有找到这样做的方法。谢谢
我认为您的意思是下载洪流的特定部分。
首先,您可能希望将文件的开头映射到一系列片段。您可以使用torrent_info::map_file().
torrent_info::map_file()
然后您可以选择要下载的部分torrent_handle::prioritize_pieces()。将一个片段的优先级设置为0,意味着不下载它。
torrent_handle::prioritize_pieces()
请参阅libtorrent 文档