Artyom Sovetnikov
Artyom Sovetnikov
Find a way to resolve actual codec spec used by ffmpeg for each run. Currently we're sharing a value manually evaluated by following the guide: https://jakearchibald.com/2022/html-codecs-parameter-for-av1 It's valid at the...
Instead of resolving content MIME type via file extension, consider using `file --mime-type` utility available by default on Linux and Mac. On Windows similar is available via file utility available...
Consider when following is resolved: - [ ] https://github.com/oven-sh/bun/issues/7100 - [ ] https://github.com/oven-sh/bun/issues/7662 - [x] https://github.com/oven-sh/bun/issues/4015
- https://devblogs.microsoft.com/dotnet/extending-web-assembly-to-the-cloud/ - https://github.com/dotnet/runtimelab/blob/feature/NativeAOT-LLVM/docs/using-nativeaot/prerequisites.md - https://github.com/dotnet/wasi-sdk
1. Consider marshaling only types with value semantics (structs, records and strings) and read-only collection interfaces (`IReadOnlyCollection`, `IReadOnlyList`). Other types (both concrete classes and interfaces) would be subject to instance...
Currently, all the bindings and associated types from the C# solution are dumped to a single file (`index.mjs` and `bindings.g.d.ts`) and are grouped via TypeScript namespaces. This is sub-optimal for...