这个工具有下边功能,1,罗列所有可用element类型。2,查找指定plugin的element。3,查看指定element的所有信息。
This tool has three modes of operation:
Without arguments, it lists all available elements types, this is, the types you can use to instantiate new elements.
With a file name as an argume
...继续阅读
(55)
http://processors.wiki.ti.com/index.php/Example_GStreamer_Pipelines#H.264_RTP_Streaming
http://processors.wiki.ti.com/index.php/GStreamer
Your first application
https://github.com/GStreamer/gst-examples
https://github.com/GStreamer/gst-rtsp-server/tree
...继续阅读
(51)
1.问题描述:现在.NET版本一般是4.0,本人在编译低版本的.NET程序在4.0上运行时出现了“Mixed mode assembly is built against version 'v1.1.4322' of the runtime and......”错误——具体是这样的,运行程序没有任何反应,Debug的时候报这个错误。 2.解决方案:对于这个问题,Microsoft的说法是:http://blogs.msdn.com/b/jomo_fisher/archive/2009/11/17/f-scripting-net-4-0-and-mixed-mode-assemblies.aspx,文中已经提到了解决方案: 在App.config文件中添加如下内容:[html] view plain copy3.解决方案续:什么?!App.config文件在哪?这里说了:C#配置App.config 简言之如下: 右击项目名称,选择“添加”→“添加新建项”,在出现的“添加新项”对话框中,选择“添加应用程序配置文件”;如果项目以前没有配置文件,则默认的文件名称为“app.config”,单击“确定”。出现在设计器视图中的app.config文件为:[html] view plain copyxml version='1.0' encoding='
...继续阅读
(53)
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 Microsoft.DirectX;
using Microsoft.DirectX.DirectPlay;
using Microsoft.DirectX.DirectDraw;
using Microsoft.DirectX.AudioVideoPlayback;
using Microsoft.DirectX.Direct3D;
namespace test_demo
{
public partial class Form1 : Form
{
public Video MyVideo;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender,
...继续阅读
(48)