der richter
der richter
btw for me it uses the spanish audio by default. i would say it's up to youtube-dl what is selected and they apparently added a filter for the audio language...
i am not recommending anything. even said it's a dirty way. i didn't look into building/linking properly yet.
a little update. i finished unifying the two backends to get rid of a majority of all the code duplications. the cocoa-cb generalisation is completely done and properly cleaned up,...
some findings: - with interpolation i can reliable reproduce rendering freezes, this can be mitigated by `--vulkan-disable-events` - initialisation takes quite a lot of time, sometimes more than a second,...
some more findings: - VK_PRESENT_MODE_IMMEDIATE_KHR sets [displaysyncenabled](https://developer.apple.com/documentation/quartzcore/cametallayer/2887087-displaysyncenabled) which significantly degrades performance. seems like it can't properly sync the the display and drops frames because of that - using VK_PRESENT_MODE_FIFO_KHR instead...
includes for the molten stuff needs to be manually installed? ``` ln -s /Users/Akemi/Repositories/vulkansdk-macos-1.2.141.2/MoltenVK/include/MoltenVK /usr/local/include/MoltenVK ln -s /Users/Akemi/Repositories/vulkansdk-macos-1.2.141.2/MoltenVK/include/vulkan-portability /usr/local/include/vulkan-portability ``` https://github.com/haasn/libplacebo/blob/5e517936c15583e3148f46d76135d63537617f9f/src/vulkan/swapchain.c#L164-L172 check why it picks an 8bit format even so...
some more info: - VK_PRESENT_MODE_IMMEDIATE_KHR causes major tearing and can't be used, VK_PRESENT_MODE_FIFO_KHR needs to be used but this causes bad vsync some more info from recent testing with moltenvk...
did some performance tests today. i couldn't find any sample or settings that would indicate any kind of performance difference, neither better nor worse, that weren't bottlenecked by decoding speed....
i still get some bad vsyncs and need to investigate the source of it. otherwise it's pretty stable and i used it regularly. `--vo=gpu --gpu-api=vulkan --gpu-context=macosvk --vulkan-disable-events` i use this...
there is an undocumented option for it `--vulkan-device`. with `--vulkan-device=help` you can get a list of all devices. ``` mpv --vulkan-device=help Available vulkan devices: 'AMD Radeon RX Vega 56' (GPU...