All of lore.kernel.org
 help / color / mirror / Atom feed
* gstreamer not playing nice with gconf?
@ 2011-05-03 23:18 Gary Thomas
  2011-05-04 14:14 ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2011-05-03 23:18 UTC (permalink / raw)
  To: Poky Project

I'm having troubles with GConf and gstreamer on my Poky/Yocto system.

On my desktop, gstreamer has installed some proper defaults:
   % gconftool-2 -R /system//gstreamer
   /system/gstreamer/0.10:
     /system/gstreamer/0.10/audio:
       /system/gstreamer/0.10/audio/profiles:
         /system/gstreamer/0.10/audio/profiles/aac:
           extension = m4a
           name = CD Quality, AAC
           active = true
           ...
     /system/gstreamer/0.10/default:
       musicaudiosink_description = Default
       videosink = autovideosink
       visualization = autoaudiosink
       audiosink = autoaudiosink
       musicaudiosink = autoaudiosink
       chataudiosink_description = Default
       audiosrc_description = Default
       audiosink_description = Default
       chataudiosink = autoaudiosink
       audiosrc = alsasrc
       videosrc = v4l2src

However, on my Poky/Yocto system, I don't get any of this:
   # gconftool-2 -R /system//gstreamer
   #
(in other words, it's not there)

I can see that /etc/gconf/schemas/gstreamer-0.10.schemas was installed,
but it doesn't seem to be processed.  Other schemas in that directory
are processed when the gconfd starts up.

Am I missing something in how this works?  I'm trying to run a GNome
application (cheese) which needs to get at the gstreamer videosink
default, but it's not available which causes it to fail.

Ideas?

Thanks

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer not playing nice with gconf?
  2011-05-03 23:18 gstreamer not playing nice with gconf? Gary Thomas
@ 2011-05-04 14:14 ` Richard Purdie
  2011-05-04 14:27   ` Koen Kooi
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2011-05-04 14:14 UTC (permalink / raw)
  To: Gary Thomas; +Cc: Poky Project

On Tue, 2011-05-03 at 17:18 -0600, Gary Thomas wrote:
> I'm having troubles with GConf and gstreamer on my Poky/Yocto system.
> 
> On my desktop, gstreamer has installed some proper defaults:
>    % gconftool-2 -R /system//gstreamer
>    /system/gstreamer/0.10:
>      /system/gstreamer/0.10/audio:
>        /system/gstreamer/0.10/audio/profiles:
>          /system/gstreamer/0.10/audio/profiles/aac:
>            extension = m4a
>            name = CD Quality, AAC
>            active = true
>            ...
>      /system/gstreamer/0.10/default:
>        musicaudiosink_description = Default
>        videosink = autovideosink
>        visualization = autoaudiosink
>        audiosink = autoaudiosink
>        musicaudiosink = autoaudiosink
>        chataudiosink_description = Default
>        audiosrc_description = Default
>        audiosink_description = Default
>        chataudiosink = autoaudiosink
>        audiosrc = alsasrc
>        videosrc = v4l2src
> 
> However, on my Poky/Yocto system, I don't get any of this:
>    # gconftool-2 -R /system//gstreamer
>    #
> (in other words, it's not there)
> 
> I can see that /etc/gconf/schemas/gstreamer-0.10.schemas was installed,
> but it doesn't seem to be processed.  Other schemas in that directory
> are processed when the gconfd starts up.
> 
> Am I missing something in how this works?  I'm trying to run a GNome
> application (cheese) which needs to get at the gstreamer videosink
> default, but it's not available which causes it to fail.
> 
> Ideas?

Missing gconf postinstall for gstreamer? I'm just guessing though...

Cheers,

Richard



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer not playing nice with gconf?
  2011-05-04 14:14 ` Richard Purdie
@ 2011-05-04 14:27   ` Koen Kooi
  2011-05-04 14:33     ` Gary Thomas
  0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2011-05-04 14:27 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Poky Project


Op 4 mei 2011, om 16:14 heeft Richard Purdie het volgende geschreven:

> On Tue, 2011-05-03 at 17:18 -0600, Gary Thomas wrote:
>> I'm having troubles with GConf and gstreamer on my Poky/Yocto system.
>> 
>> On my desktop, gstreamer has installed some proper defaults:
>>   % gconftool-2 -R /system//gstreamer
>>   /system/gstreamer/0.10:
>>     /system/gstreamer/0.10/audio:
>>       /system/gstreamer/0.10/audio/profiles:
>>         /system/gstreamer/0.10/audio/profiles/aac:
>>           extension = m4a
>>           name = CD Quality, AAC
>>           active = true
>>           ...
>>     /system/gstreamer/0.10/default:
>>       musicaudiosink_description = Default
>>       videosink = autovideosink
>>       visualization = autoaudiosink
>>       audiosink = autoaudiosink
>>       musicaudiosink = autoaudiosink
>>       chataudiosink_description = Default
>>       audiosrc_description = Default
>>       audiosink_description = Default
>>       chataudiosink = autoaudiosink
>>       audiosrc = alsasrc
>>       videosrc = v4l2src
>> 
>> However, on my Poky/Yocto system, I don't get any of this:
>>   # gconftool-2 -R /system//gstreamer
>>   #
>> (in other words, it's not there)
>> 
>> I can see that /etc/gconf/schemas/gstreamer-0.10.schemas was installed,
>> but it doesn't seem to be processed.  Other schemas in that directory
>> are processed when the gconfd starts up.
>> 
>> Am I missing something in how this works?  I'm trying to run a GNome
>> application (cheese) which needs to get at the gstreamer videosink
>> default, but it's not available which causes it to fail.
>> 
>> Ideas?
> 
> Missing gconf postinstall for gstreamer? I'm just guessing though...

Is gst-plugin-gconfelements installed?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: gstreamer not playing nice with gconf?
  2011-05-04 14:27   ` Koen Kooi
@ 2011-05-04 14:33     ` Gary Thomas
  0 siblings, 0 replies; 4+ messages in thread
From: Gary Thomas @ 2011-05-04 14:33 UTC (permalink / raw)
  To: Koen Kooi; +Cc: Poky Project

On 05/04/2011 08:27 AM, Koen Kooi wrote:
>
> Op 4 mei 2011, om 16:14 heeft Richard Purdie het volgende geschreven:
>
>> On Tue, 2011-05-03 at 17:18 -0600, Gary Thomas wrote:
>>> I'm having troubles with GConf and gstreamer on my Poky/Yocto system.
>>>
>>> On my desktop, gstreamer has installed some proper defaults:
>>>    % gconftool-2 -R /system//gstreamer
>>>    /system/gstreamer/0.10:
>>>      /system/gstreamer/0.10/audio:
>>>        /system/gstreamer/0.10/audio/profiles:
>>>          /system/gstreamer/0.10/audio/profiles/aac:
>>>            extension = m4a
>>>            name = CD Quality, AAC
>>>            active = true
>>>            ...
>>>      /system/gstreamer/0.10/default:
>>>        musicaudiosink_description = Default
>>>        videosink = autovideosink
>>>        visualization = autoaudiosink
>>>        audiosink = autoaudiosink
>>>        musicaudiosink = autoaudiosink
>>>        chataudiosink_description = Default
>>>        audiosrc_description = Default
>>>        audiosink_description = Default
>>>        chataudiosink = autoaudiosink
>>>        audiosrc = alsasrc
>>>        videosrc = v4l2src
>>>
>>> However, on my Poky/Yocto system, I don't get any of this:
>>>    # gconftool-2 -R /system//gstreamer
>>>    #
>>> (in other words, it's not there)
>>>
>>> I can see that /etc/gconf/schemas/gstreamer-0.10.schemas was installed,
>>> but it doesn't seem to be processed.  Other schemas in that directory
>>> are processed when the gconfd starts up.
>>>
>>> Am I missing something in how this works?  I'm trying to run a GNome
>>> application (cheese) which needs to get at the gstreamer videosink
>>> default, but it's not available which causes it to fail.
>>>
>>> Ideas?
>>
>> Missing gconf postinstall for gstreamer? I'm just guessing though...
>
> Is gst-plugin-gconfelements installed?

Yes.

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-04 14:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-03 23:18 gstreamer not playing nice with gconf? Gary Thomas
2011-05-04 14:14 ` Richard Purdie
2011-05-04 14:27   ` Koen Kooi
2011-05-04 14:33     ` Gary Thomas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.