belikor

Results 23 comments of belikor

Federation of comments is planned for the future but this isn't coming very soon, some work needs to be done first to support this. https://github.com/lbryio/lbry-sdk/pull/3414#issuecomment-956284276

There was an attempt to add this functionality but I didn't pursue it further to focus on other things. * https://github.com/lbryio/lbry-sdk/pull/3415 However, you can use my library that adds some...

>``` > { > "code": -32500, > "data": { >``` The cause of this error could have been a faulty spv server. A few days ago, around the time this...

Check this https://github.com/lbryio/lbry-sdk/issues/3607#issuecomment-1130080489 Maybe it was the spv17 server not working.

> would it be feasible for Odysee to publish its own transcoded versions of videos on lbry:// automatically? If there is 1 million videos, and then you publish 5 transcoded...

This error seems to be documented in the [aiohttp](https://github.com/aio-libs/aiohttp/) project. See https://github.com/aio-libs/aiohttp/issues/5818, https://github.com/aio-libs/aiohttp/issues/4724, https://github.com/aio-libs/aiohttp/issues/3507. In those cases they use Python 3.6 and 3.7, while the error in LBRY is only...

This issue should be solved with #3362. The solution is just using a newer `aiohttp`. I tried `aiohttp==3.6.2` because that is the version in the repositories in Ubuntu 20.04. To...

You are right, the current code essentially guesses the file type when the claim is created. https://github.com/lbryio/lbry-sdk/blob/d19e07d66101c4e3ac9c0cb9030a6eb098cd51a1/lbry/schema/claim.py#L236-L241 The media types are defined here: https://github.com/lbryio/lbry-sdk/blob/master/lbry/schema/mime_types.py

> Q: I would like to know what is the general approach in lbry regarding external dependencies (expecially native bindings vs pure-python implementations in this case). I think if you...

I hate `black`. I don't like it because it tends to produce code with parentheses in different lines, like in a C style, which tends to look bad in Python....