当前位置:   article > 正文

unity获取obs虚拟摄像头_error - could not find specified video device

error - could not find specified video device

1、obs安装虚拟摄像头

https://obsproject.com/forum/resources/obs-virtualcam.539/

2、查看电脑有几种摄像头

下面代码打印出摄像头名称

            WebCamDevice[] devices = WebCamTexture.devices;
          
            for (var i = 0; i < devices.Length; i++) {
                 Debug.Log(devices[i].name);
            }
  • 1
  • 2
  • 3
  • 4
  • 5

在这里插入图片描述
可以看出是devices[1]的摄像头是obs的虚拟摄像头。总代码如下。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SheXiang : MonoBehaviour
{
    void Start()
    {
        WebCamDevice[] devices = WebCamTexture.devices;

        for (int i = 0; i < devices.Length; i++)
        {
            print(devices[i].name);
        }

        Renderer rend = this.GetComponentInChildren<Renderer>();

        WebCamTexture Texture = new WebCamTexture(devices[1].name);
        rend.material.mainTexture = Texture;
        Texture.Play();
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

3、错误解决: Could not find specified video device UnityEngine.WebCamTexture:Play()

上面过程大概率会出错,原因是Windows 注册表中需要注册一个“虚拟”相机。如何注册。连接如下
https://github.com/CatxFish/obs-virtual-cam/releases/tag/1.2.1
在这里插入图片描述
下载reg_path.reg文件,直接运行文件即可。再次测试,unity便可以获取到obs的虚拟摄像头。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/771995
推荐阅读
相关标签
  

闽ICP备14008679号