Replies: 1 comment
-
We don't support multiple formats for source qualities at the moment. It's showing up because we support multiple bitrates. In general, this isn't really the right way to approach multiple resolutions. Strongly recommend looking into adaptive streaming via HLS as mentioned in our docs. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello guys,
I have a question about the qualities. Like the following sources, I have the same size but different type, it will show two
1920
and576
as a result. The types are because I want to support all the browsers. Any idea for this?[ { src: 'https://flphmoegb.filerobot.com/LaSalle-Vancouver/Programs_Learning-Experiences/Fashion/Fashion-Design/LaSalle_04_Fashion_v2_5_FINAL.mp4?vh=f5ab53&format=webm&width=1920&height=1920', type: 'video/webm', width: 1920, height: 1920, }, { src: 'https://flphmoegb.filerobot.com/LaSalle-Vancouver/Programs_Learning-Experiences/Fashion/Fashion-Design/LaSalle_04_Fashion_v2_5_FINAL.mp4?vh=f5ab53&format=mp4&width=1920', type: 'video/mp4', width: 1920, height: 1920, }, { src: 'https://flphmoegb.filerobot.com/LaSalle-Vancouver/Programs_Learning-Experiences/Fashion/Fashion-Design/LaSalle_04_Fashion_v2_5_FINAL.mp4?vh=f5ab53&format=webm&width=576&height=576', type: 'video/webm', width: 576, height: 576, }, { src: 'https://flphmoegb.filerobot.com/LaSalle-Vancouver/Programs_Learning-Experiences/Fashion/Fashion-Design/LaSalle_04_Fashion_v2_5_FINAL.mp4?vh=f5ab53&format=mp4&width=576', type: 'video/mp4', width: 576, height: 576, }, ]
Beta Was this translation helpful? Give feedback.
All reactions