ChinaUnix.net
相关文章推荐:

gstreamer gst 摄像头

http://blog.csdn.net/wzwxiaozheng/archive/2010/12/26/6099397.aspx

gstreamer资料整理(包括摄像头采集,视频保存,远程监控,流媒体RTP传输)

by yuweixian4230 - 移动操作系统 - 2011-12-21 08:41:26 阅读(1258) 回复(0)

相关讨论

安装gstreamer后,用gst-inspect filesrc提示No such element or plugin 'filesrc',请问各位大侠这是怎么回事,

by dlw2005 - Linux新手园地 - 2011-09-27 14:58:38 阅读(4169) 回复(4)

[color="#cc0033"]EXPAT是一个XML解析器,可用于PHP,Perl,Python等 #编译这个包的时候,要修改里面的configure文件,把cross_compiling=no 改为 cross_compiling=yes build imextra libtasn1 build imextra opencdk #gnutls - 添加net-libs/gnutls支持(GnuTLS是一款提供可靠传输层加密的库) build imextra gnutls #GNU Libidn 是IETF 国际域名(IDN) 工作组定义的Stringprep, Punycode 和IDNA 规范的一个实现 ...

by gpephone - Linux文档专区 - 2008-05-08 10:38:24 阅读(879) 回复(0)

http://wiki.laptop.org/go/gstreamer#Examples http://article.gmane.org/gmane.comp.video.gstreamer.devel/20240 附加: gst-launch v4l2src ! videorate ! video/x-raw-yuv,width=1280,height=1024 ! videoscale ! video/x-raw-yuv,width=640,height=480 ! ffmpegcolorspace ! xvimagesink 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/66419/showart_2059373.html

by xw_max - Linux文档专区 - 2009-09-24 17:52:05 阅读(792) 回复(0)

从提供的demo的脚步入手研究: decode_avi.sh . ./target_gst.sh . ../shared/decode_avi.sh target_gst.sh #------------------------------------------------------------------# Set gstreamer attributes for this platform #------------------------------------------------------------------ PLATFORM=dm355 . ../shared/target_env.sh # Audio / Video Decode defaults audio_plugin="mad" audiocodecName="" video...

by zhengwenwei_123 - Linux文档专区 - 2009-05-10 22:00:33 阅读(795) 回复(0)

Introducing gstreamer From CInLUG Ir para: navegação , pesquisa Conteúdo [ esconder ] 1 Introduction 2 In The Land of Monolithic Media Players 3 gstreamer 4 In The User Land: "I Don't Care, Just Open My Files!" 5 Elementar Fundamentals of gstreamer 5.1 Elements 5.2 Filters 5.3 Pads 5.4 Bin 5.5 Bus 5.6 Buffers and Events 6 Plugins ...

by gpephone - Linux文档专区 - 2008-05-19 21:51:45 阅读(1536) 回复(0)

犯了一个错误,没有意识到: 任何configure为了开启一个要编译的选项,都是--enable-***(或者--disable-***)。 要开启mad,只要--enable-mad。 但是不行,因为有依赖关系,必须有id3tag库,而且在开启mad的时候,会自动开启id3tag。 查看这一点,就是查看目录下的config.log文件。可以看到configure的信息。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/93494/showart_1920518.html

by zhengwenwei_123 - Linux文档专区 - 2009-05-06 22:20:06 阅读(688) 回复(0)

大家好,我安装的版本是gstreamer-0.10.29,执行configure之后没有出现makefile文件,导致无法继续安装了,请问大家那我该怎么装呀。谢谢。

by mousexqshe - Linux环境编程 - 2011-08-09 14:06:08 阅读(2896) 回复(1)

出处: http://phinecos.cnblogs.com/ 本文介绍如何使用gstreamer 编写一个简单的MP3播放器。 1,需要使用mad解码插件,因此需要先安装gstreamer0.10-plugins-ugly 2,编写mp3播放器 下面来看看如何利用gstreamer框架提供的组件,来实现一个简单的MP3播放器。数据源元件负责从磁盘上读取数据,过滤器元件负责对数据进行解码,而接受器元件则负责将解码后的数据写入声卡。 如果想要在程序中应用gstreamer提供的各种功能,首先必须在主...

by dqwjack - Linux文档专区 - 2010-01-14 15:38:59 阅读(1235) 回复(0)

大家好,不知道gstreamer相关的在哪讨论,就发到这了 我自己写的插件用gst-launch-0.10运行是可以的,但是用playbin自动寻找就出错,信息显示playbin加载了demuxer和decoder,然后就停止了,我将playbin的“videosink”设置成我自己的了,不知道为什么到videosink这步就失败了。 前面的muxer和decoder插件不是我写的,是本来就有的。 我想请教下哪里出了问题。。谢谢!

by ChinaNeilyo - C/C++ - 2010-08-04 18:02:31 阅读(3229) 回复(1)

In this part we will cover the more advanced features of gstreamer.With the basics you learned in the previous part you should be able to create a simple application. However, gstreamer provides much more candy than just the basics of playing back audio files. In this chapter, you will learn more of the low-level features and internals of gstreamer. Some parts of this part will serve mostly as an ...

by zhengwenwei_123 - Linux文档专区 - 2009-05-09 19:50:46 阅读(1042) 回复(0)