lbry-seedit icon indicating copy to clipboard operation
lbry-seedit copied to clipboard

Allow non Video files

Open tuxfoo opened this issue 4 years ago • 1 comments

At the moment seedit only works for video files

Add a feature to optionally allow other file types too.

tuxfoo avatar Nov 04 '20 16:11 tuxfoo

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.

belikor avatar May 18 '21 16:05 belikor