Go to documentation repository
Page History
If a device is added automatically (see 장치가 자동으로 추가되는 경우 (IP 장치 추가 및 제거), separate objects are created for video and audio streams.If you need to create a single object, add the device manually using the following address format: 참고) 비디오 및 오디오 스트림에 대해 별도의 개체가 생성됩니다.
단일 개체를 생성해야 하는 경우 다음 주소 형식을 사용하여 수동으로 장치를 추가합니다.
No Format |
---|
dshow(<index>)://(<video_device_name>)(:<audio_device_name>) |
If no index is specified in the address, the value is 0. Use a non-zero index if you use multiple devices with the same name.
주소에 인덱스가 지정되지 않은 경우 값은 0 입니다. 동일한 이름을 가진 여러 장치를 사용하는 경우 0 이 아닌 인덱스를 사용하십시오.
예를 들어For example:
No Format |
---|
dshow://USB 2.0 HD Camera dshow1://USB 2.0 HD Camera |
Info | ||
---|---|---|
| ||
If a video or audio device is not present, it may be not specified in the address. |
After you added the device, you have to set up its streams. For archive recording and transferring videos over the network, MJPEG codec is recommended; for detection purposes, use YUV422.
If required, you can set a parameter string for FFmpeg app in the Additional Options field.
비디오 또는 오디오 장치가 없는 경우 주소에 지정되지 않을 수 있습니다. |
장치를 추가한 후에는 스트림을 설정해야 합니다. 아카이브 녹화 및 네트워크를 통한 비디오 전송의 경우 MJPEG 코덱을 권장합니다. 감지 목적으로 YUV422를 사용하십시오.
필요한 경우 추가 옵션 필드에서 FFmpeg 앱에 대한 매개변수 문자열을 설정할 수 있습니다.
예: USB 카메라에서 YUV420P 형식, 1280x960 해상도로 비디오를 수신합니다For example: receive video from a USB camera in YUV420P format, 1280x960 resolution.
No Format |
---|
-pixel_format yuv420p -video_size 1280x960 |
Parameters and their values differ by format and particular device. To list possible parameter values, run the following command from the Windows command line:매개변수와 해당 값은 형식 및 특정 장치에 따라 다릅니다. 가능한 매개변수 값을 나열하려면 Windows 명령줄에서 다음 명령을 실행합니다.
No Format |
---|
ffmpeg -list_options true -f dshow -i video="<device name>" |
...