rcombs
rcombs
This would allow for a number of additional use-cases. Basically: - If neither `subUrl` nor `subContent` is set, create an empty track using `ass_new_track` - Expose an API to pass...
This seems to be a bit inconsistent, but I've seen it happen in cases where links' URI/percent-encoded forms (whether or not they're actually expressed that way) contain the sequences "%A",...
See: https://github.com/shama/gaze/blob/master/lib/gaze.js#L388 `existsSync` makes a `stat` syscall, and then `lstatSync` makes an `lstat` syscall. This is redundant and a waste of time. Just call `fs.lstatSync` and handle the exception if...
It's pretty well-established that Matroska's poor timebase support is one of the format's worst properties. While it support very precise timestamps (down to the nanosecond), it's very inefficient to do...
The other compression schemes supported in Matroska suffer from having to be applied on a per-packet level, with no global state. This means that they can't exploit any of the...
Useful for cases where the appropriate tracks are otherwise ambiguous; see added notes.md section for a few examples. Also clarified that `TrackOverlay` refers to tracks by their UIDs rather than...
25bde3f955259bcfd9f282abd402734c31dd5305 added `src/mfx_driver_store_loader.cpp` but didn't list it in the CMake project.
This implements the change I suggested at https://github.com/robinuniverse/TwitFix/issues/44#issuecomment-1065567675 Additionally cleans up the matching a bit, tweaks the readme, fixes a missing entry in requirements.txt, and simplifies local testing a little....
Partly derived from #150; fixes #142. Seems to work in my experimenting, but I don't have a broad test suite for this; in particular, this likely breaks some of the...
Addresses #8863 - (Some platform-specific infrastructural tweaks to provide needed routines) - Support for matching 2-character language tags against 3-character ones, and vice versa - Minimal IETF language tag matching...