Nick Porcino

Results 510 comments of Nick Porcino

Josh, in addition to the command line arguments, it could make sense to also accept a response file as input. The thought would be have arguments decomposed one per line,...

@ssteinbach we could really use a front door that looks like OCIO's. https://opencolorio.org that would be a great place to provide pointers to bundled tools. but also listing them in...

Could I ask, in addition to the python test, could you throw this into `tests/test_opentime.cpp` so we get C++ coverage as well by running `make test` ```cpp tests.add_test("test to_string", []...

A thing I did for the older PR was to be robust against a varying number of colons. ie. being able to parse 1:23 to mean one second and 23...

Ah, good reference, the ffprobe time string is h:m:seconds with no frames.

@jminor Do you still think this is an issue? I think we might be used to the current state of things by now :)

I think we should probably follow something like this: https://restfuljson.org In a nutshell, string encoding and escaping per: https://tools.ietf.org/html/rfc7159 URL encoding per: https://tools.ietf.org/html/rfc3986 Additional meta-data associated with the media referred...

Thanks for the report! Note to the implementor of a fix: OpenTime itself doesn't throw exceptions from the foundational types of TimeRange and RationalTime. The expected implementation would be implemented...

The `[[nodiscard]]` tag is worth looking at for an overall API scrub, now that you mention it. The reason I was thinking of the checked_optional pattern is that throughout the...

There is quite a body of work around schema migration for XML (c.f. https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.174.6520&rep=rep1&type=pdf) Taking inspiration from what the XML gang has historically done ~~~ with xslt (for xml) one...