C# 是否可以播放YUY2格式的视频?

spring_2011 2011-07-06 05:54:04
C# 是否可以播放YUY2格式的视频?
...全文
240 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
spring_2011 2011-07-06
  • 打赏
  • 举报
回复
在线等......
spring_2011 2011-07-06
  • 打赏
  • 举报
回复
接收C++编写的DLL,通过代理传回的视频后,使用DrawDibDraw进行播放。

需要安装驱动的,播放没有问题
但是免驱动的,播放就不断地闪烁。。。

查询了下相关资料,安装驱动的默认采集格式是 RGB24,
免驱动的默认格式是YUY2,不知道是不是这个原因。。。
spring_2011 2011-07-06
  • 打赏
  • 举报
回复
使用下面的代码可以直接采集和播放USB摄相头的视频;

但是我调用C++编写的DLL,代理函数中接收返回的视频流;
然后用DrawDibDraw播放的时候有问题,
带驱动的可以直接播放,免驱动的播放的时候一直闪烁。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
//using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

const short WM_CAP = 1024;
const int WM_CAP_DRIVER_CONNECT = WM_CAP + 10;
const int WM_CAP_DRIVER_DISCONNECT = WM_CAP + 11;
const int WM_CAP_EDIT_COPY = WM_CAP + 30;
const int WM_CAP_SET_PREVIEW = WM_CAP + 50;
const int WM_CAP_SET_PREVIEWRATE = WM_CAP + 52;
const int WM_CAP_SET_SCALE = WM_CAP + 53;
const int WS_CHILD = 1073741824;
const int WS_VISIBLE = 268435456;
const short SWP_NOMOVE = 2;
const short SWP_NOSIZE = 1;
const short SWP_NOZORDER = 4;
const short HWND_BOTTOM = 1;
int iDevice = 0;
int hHwnd;

[System.Runtime.InteropServices.DllImport("user32", EntryPoint = "SendMessageA")]
static extern int SendMessage(int hwnd, int wMsg, int wParam, [MarshalAs(UnmanagedType.AsAny)]
object lParam);
[System.Runtime.InteropServices.DllImport("user32", EntryPoint = "SetWindowPos")]
static extern int SetWindowPos(int hwnd, int hWndInsertAfter, int x, int y, int cx, int cy, int wFlags);
[System.Runtime.InteropServices.DllImport("user32")]
static extern bool DestroyWindow(int hndw);
[System.Runtime.InteropServices.DllImport("avicap32.dll")]
static extern int capCreateCaptureWindowA(string lpszWindowName, int dwStyle, int x, int y, int nWidth, short nHeight, int hWndParent, int nID);
[System.Runtime.InteropServices.DllImport("avicap32.dll")]
static extern bool capGetDriverDescriptionA(short wDriver, string lpszName, int cbName, string lpszVer, int cbVer);

private void OpenPreviewWindow()
{
int iHeight = 320;
int iWidth = 200;

hHwnd = capCreateCaptureWindowA(iDevice.ToString(), (WS_VISIBLE | WS_CHILD), 0, 0, 640, 480, picCapture.Handle.ToInt32(), 0);

if (SendMessage(hHwnd, WM_CAP_DRIVER_CONNECT, iDevice, 0) == 1)
{
SendMessage(hHwnd, WM_CAP_SET_SCALE, 1, 0);
SendMessage(hHwnd, WM_CAP_SET_PREVIEWRATE, 66, 0);
SendMessage(hHwnd, WM_CAP_SET_PREVIEW, 1, 0);
SetWindowPos(hHwnd, HWND_BOTTOM, 0, 0, iWidth, iHeight, (SWP_NOMOVE | SWP_NOZORDER));
}
else
{
DestroyWindow(hHwnd);
}
}

private void ClosePreviewWindow()
{
SendMessage(hHwnd, WM_CAP_DRIVER_DISCONNECT, iDevice, 0);
DestroyWindow(hHwnd);
}

//picCapture为一个PictureBox
//device_number_textBox.Text=0为一个TextBox,值为0
private void button1_Click(object sender, EventArgs e)
{
iDevice = int.Parse(device_number_textBox.Text);
OpenPreviewWindow();
}
}
}
暖枫无敌 2011-07-06
  • 打赏
  • 举报
回复
这个好像是不行的,需要先对这种格式进行转换,然后才可以的。
ruanwei1987 2011-07-06
  • 打赏
  • 举报
回复
此乃 神人也
spring_2011 2011-07-06
  • 打赏
  • 举报
回复
播放的视频数据,是C++程序,通过DLL传给C#,
然后让C#来播放.

C#中通过代理函数来接收视频数据,接收到之后进行播放.

好象现在有驱动的USB摄相头采集的原始视频是RGB格式,
免驱动的摄相头采集的原始视频是YUY格式...
spring_2011 2011-07-06
  • 打赏
  • 举报
回复
我是用 DrawDib来播放,
RGB格式可以直接播放,但是直接播放YUY2格式,有问题.

我采集和播放的是USB摄相头的视频.
garfieldzf 2011-07-06
  • 打赏
  • 举报
回复
用Windows Media Player试试就知道了、

110,499

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧