GStreamer
jackyy313
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
GStreamer Tools
<br />gst-launch: a tool that builds and runs basic GStreamer pipelines.<br />gst-xmllaunch: a tool that is used to build and run a basic原创 2011-03-24 22:54:00 · 809 阅读 · 0 评论 -
GStreamer显示图片
<br />曾使用gst-launch-0.10和playbin2显示常见格式的图片,命令如下:<br /> <br />gst-launch-0.10 playbin2 uri=file:///home/user/Pictures/filename.jpg<br />gst-l原创 2011-03-21 23:58:00 · 4087 阅读 · 2 评论 -
GStreamer Debugging
Just collect some useful hints for debugging GStreamer. 1. GStreamer Debugging: https://www.ridgerun.com/developer/wiki/index.php/GStreamer_Debugging2. Debugging from GStreamer Application Devel原创 2011-11-07 23:55:09 · 689 阅读 · 0 评论 -
Shell判断进程并kill
找到两种方法判断进程并kill,以gst-lauch-0.10为例: ps -ef | grep gst-launch | awk '{print $2}' | xargs kill -9此方法会有错误信息出现“kill 5018: No such process”。原因是grep进程会在kill之前消失,可用下面方法来解决。 if [ "$(ps -ef | grep gst原创 2011-11-08 23:10:30 · 2325 阅读 · 0 评论
分享