Niklas Korz
Niklas Korz
Looks like dash.js behaves exactly the same as hls.js for this scenario on Firefox on both Windows and macOS. Only shaka-player somehow manages to avoid this problem...
shaka-player is indeed performing a seek to work around this, you were right @robwalch! :) It's peformed [here](https://github.com/shaka-project/shaka-player/blob/8deab717f358502b9c79a0fbd504531cc3173ddd/lib/media/media_source_engine.js#L1280) and appears to be a workaround for Chromecast that just happens to...
For reference if anyone else runs into this issue, here is the full workaround I am applying now: ```ts import Hls, { Events, BufferFlushingData, BufferFlushedData } from 'hls.js'; class HlsPlayer...
Running into the same issue, this makes the layers feature a bit pointless I'm afraid.
> @niklaskorz if my above comment doesn't help you, do not hesitate to share your issue/usecase. I'll try to come up with a "smallest breaking example" case and report back...
I suppose I could work on #5271 and this in a combined PR @avelad, as the "new" AirPlay approach is explicitly mentioned in the context of Managed MSE. Interestingly the...
> Do you plan to add support for the C++ part? > > BTW, I ended up using this trivial `shell.nix` because I haven't learnt how to use flakes yet,...
@Dietr1ch I have added `shell.nix` and `default.nix` for backwards-compatibility with non-flake-nix, as well as the direnv config and a development shell.
> > NixOS expert here: I have tested this locally and it works perfectly. > > I don't see flake-compat being used anywhere, why is it imported? flake-compat has to...
> Is it possible to move these files in a subfolder? I want root to be clean as possible I don't think that is possible, Nix expects `flake.nix` and `flake.lock`...