Casey Rodarmor

Results 1064 comments of Casey Rodarmor

If you figure out another way to do provenance, e.g. a master inscription with the txids, or nostr, etc, then you can publish that on the project page such that...

@dannydeezy Yup, that links to this issue.

> Mempools do not accept a chain of more than ~30 unconfirmed transactions, so that means only 30 items can be minted per block. This hinders the ultimate degen experience...

blaeeeeeeeeeghtghghghg: ```rust parent: inscription.parent.and_then(|parent| if inscriptions.contains(parent.txid) { Some(parent) } else { None }), ```

This would be awesome. Will probably require an additional field in the database.

@cryptoquick I want to do a check that the client only allows H.264 in MP4 when it uploads. If you want to look into doing that feel free, I think...

Yup, `video/mp4` is an unsupported content type (not present in table in `media.rs`), so the server uses `PreviewUnknownHtml` when serving /preview, which is just an empty page. We could add...

See the route in server.rs for `/preview`. (I think it's just `fn preview`.)

> Also, just so I don't assume, why the h264 requirement? Compatibility? Yah, that's correct. Cross-browser compatibility of containers and codecs is really bad. The reasonable choices for good compatibility...

@cryptoquick Nice, thanks for the ping! I tweaked a little, just the tests. I moved the example files into `examples/` with descriptive filenames, and split up the tests into two...