2
我想調試一個使用gstreamer庫0.10的linux應用程序,但是我無法讓gstreamer日誌正常工作。這是我試過到目前爲止:Gstreamer調試不起作用
export GST_DEBUG="*:6"
GST_DEBUG=*:6 ./app
我也試圖把標誌選項,在管道創建:
gst_parse_launch("appsrc name=myappsrc ! alsasink --gst-debug=*:6", NULL);
gst-launch
無法正常工作或我想:
GST_DEBUG=6 gst-launch-0.10 filesrc location=out.opus ! oggdemux ! opusdec ! audioconvert ! alsasink
或
gst-launch-0.10 filesrc location=out.opus ! oggdemux ! opusdec ! audioconvert ! alsasink --gst-debug-level=6
我浪費了很多時間在這個,一些幫助將非常感激。