You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I keep having transcoding delays when I tried to seek through my videos on my Pixel 7 Pro using Chrome. I seemed to have figured out that the issue stems from the default video codecs, currently H264 & H265. However, my videos are being transcoded and set to Hevc and the container is MKV. I assume H265 and Hevc should be interchangeable and in this case just a naming issue. However, the logic to determine if something is streamable looks for exactly x255 and Hevc separately. Additionally, stash checks if the video codec and container are compatible, which is fair, but one of those checks to see if MKV is a supported video codec (currently set to H264 & H265 ). This causes some unexpected behavior since MKV is not a codec but it is checked as it would be cause it the always failure and not check if Hevc and MKV are valid together.
I am not the most familiar with assisting with Git Repos so I didn't submit a PR. I also know that changing this could have a much broader impact due to the sheer different types of players that it could impact which may not support Hevc and MKV. However, due to H265 already being set as a default video codec I assume Hevc should be as well.
For the mean time, I think I should be able to build my own docker image with some of the changes I want and get by for now.
Finally, this hasn't been updated since the browser.go file was created back in April 2022. I’m not sure what other changes could be made but I believe Hevc should be made a default video codec at this point in time.
Enhancement Requests:
Include Hevc as default Video Codec
Fix Check if MKV is valid Video Codec
The text was updated successfully, but these errors were encountered:
I ran into the issue after moving from Vivaldi and it's infuriating. They seemed to be confused as to what people want. Instead of just allowing already working codec playback when used inside MKV container they argue against supporting new codec combinations that MKV can use...
Hello,
I keep having transcoding delays when I tried to seek through my videos on my Pixel 7 Pro using Chrome. I seemed to have figured out that the issue stems from the default video codecs, currently H264 & H265. However, my videos are being transcoded and set to Hevc and the container is MKV. I assume H265 and Hevc should be interchangeable and in this case just a naming issue. However, the logic to determine if something is streamable looks for exactly x255 and Hevc separately. Additionally, stash checks if the video codec and container are compatible, which is fair, but one of those checks to see if MKV is a supported video codec (currently set to H264 & H265 ). This causes some unexpected behavior since MKV is not a codec but it is checked as it would be cause it the always failure and not check if Hevc and MKV are valid together.
I am not the most familiar with assisting with Git Repos so I didn't submit a PR. I also know that changing this could have a much broader impact due to the sheer different types of players that it could impact which may not support Hevc and MKV. However, due to H265 already being set as a default video codec I assume Hevc should be as well.
For the mean time, I think I should be able to build my own docker image with some of the changes I want and get by for now.
Finally, this hasn't been updated since the browser.go file was created back in April 2022. I’m not sure what other changes could be made but I believe Hevc should be made a default video codec at this point in time.
Enhancement Requests:
The text was updated successfully, but these errors were encountered: