Kristóf Poduszló
Kristóf Poduszló
Thank you, it works great! 😊 Unfortunately, I couldn’t get it to work with Vapoursynth and ffms2 on Windows. However, those work just fine on a mac. I would appreciate...
I’ve installed that with system-wide access and it didn’t work for some reason.
@master-of-zen The result also plays fine with other media players like IINA, that’s why I’m surprised by the decoding issue within Safari. @Felixkruemel Thank you for the tip! Honestly, I’m...
@BlueSwordM As I’ve mentioned, the source video stream is a lossless h264 file encoded in yuv444p. Not sure if that gets processed as it’s intended to be. What’s more interesting...
Specifying `--mkvmerge` as an option solves the problem. Now sure why FFmpeg-based concatenation causes problems, but the issue possibly lies inside [concat.py](https://github.com/master-of-zen/Av1an/blob/master/av1an/concat.py)’s `concatenate_ffmpeg` method, then.
@tmcw Thank you for the quick tip! Unfortunately, it still fails...
Actually, `yarn documentation build src/*.ts --format md --parse-extension=ts` seems to be working, although it's a bit hacky. The issue seems to be something with `--document-exported`.
@tmcw I already tried that, doesn't seem to work either.
Issue #113 could provide a partial solution: ```js function useDebouncedWindowScrollCoords() { const coords = useWindowScrollCoords(); const [debouncedCoords, setDebouncedCoords] = useState(coords); const isChanging = useChanging(coords, 150); useEffect(() => { if (!isChanging)...
The code above could be made generic: ```ts function useDebounce(value: T, groupingIntervalMs?: number) { const [debouncedValue, setDebouncedValue] = useState(value); const isChanging = useChanging(value, groupingIntervalMs); useEffect(() => { if (!isChanging) setDebouncedValue(value);...