forked from midou/invidious
Handle equirectangular projections for VR (#2379)
This commit is contained in:
@ -151,7 +151,12 @@ player.on('error', function (event) {
|
||||
// Enable VR video support
|
||||
if (video_data.vr && video_data.params.vr_mode) {
|
||||
player.crossOrigin("anonymous")
|
||||
player.vr({projection: "EAC"});
|
||||
switch (video_data.projection_type) {
|
||||
case "EQUIRECTANGULAR":
|
||||
player.vr({projection: "equirectangular"});
|
||||
default: // Should only be "MESH" but we'll use this as a fallback.
|
||||
player.vr({projection: "EAC"});
|
||||
}
|
||||
}
|
||||
|
||||
// Add markers
|
||||
|
Reference in New Issue
Block a user