lbry-seedit
lbry-seedit copied to clipboard
Allow non Video files
At the moment seedit only works for video files
Add a feature to optionally allow other file types too.
In your code you use this line
command = [
"lbrynet",
"claim",
"search",
f"--channel={channel}",
"--stream_type=video",
f"--page_size={page_size}",
"--order_by=release_time",
]
It restricts the download to only videos. Just by removing the stream_type
you would be able to download any claim.
I'm not sure it's necessary to restrict the type so I'd just remove that line.