There are some old v4l applications that do not work in Fedora 12.
I found so far fmtools and gnomeradio.
Gnomeradio accepts v4l2, but one has to use a gconf editor
to change the driver (there is no option in the application interface).
I tried to patch gnomerario, but I do not know how to force
updating gconf database. I think that a new account should
have the new defaults, but how do I force a change in a previously created account?
Thanks.
--
Paulo Roma Cavalcanti
LCG - UFRJ
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-05-2009, 07:45 PM
"Dominik 'Rathann' Mierzejewski"
v4l applications
On Saturday, 05 December 2009 at 15:48, Paulo Cavalcanti wrote:
> There are some old v4l applications that do not work in Fedora 12.
>
> I found so far fmtools and gnomeradio.
>
> Gnomeradio accepts v4l2, but one has to use a gconf editor
> to change the driver (there is no option in the application interface).
>
> I tried to patch gnomerario, but I do not know how to force
> updating gconf database. I think that a new account should
> have the new defaults, but how do I force a change in a previously created
> account?
I'm the maintainer of gnomeradio, but I haven't used it for a while because
I'm away from my desktop PC, which has an analog tv/radio tuner card.
Would you be interested in co-maintaining gnomeradio?
Regards,
R.
--
Fedora http://fedoraproject.org/wiki/User:Rathann
RPMFusion http://rpmfusion.org | MPlayer http://mplayerhq.hu
"Faith manages."
-- Delenn to Lennier in Babylon 5:"Confessions and Lamentations"
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-06-2009, 08:36 AM
Paulo Cavalcanti
v4l applications
On Sat, Dec 5, 2009 at 6:45 PM, Dominik 'Rathann' Mierzejewski <dominik@greysector.net> wrote:
On Saturday, 05 December 2009 at 15:48, Paulo Cavalcanti wrote:
> There are some old v4l applications that do not work in Fedora 12.
>
> I found so far fmtools and gnomeradio.
>
> Gnomeradio accepts v4l2, but one has to use a gconf editor
> to change the driver (there is no option in the application interface).
>
> I tried to patch gnomerario, but I do not know how to force
> updating gconf database. I think that a new account should
> have the new defaults, but how do I force a change in a previously created
> account?
I'm the maintainer of gnomeradio, but I haven't used it for a while because
I'm away from my desktop PC, which has an analog tv/radio tuner card.
Would you be interested in co-maintaining gnomeradio?
Sure. There are very few radio applications around, and they are kind of unmaintained upstream. I made a review request yesterday with a patched gqradio for working with v4l2.
gnomeradio just needs best defaults for v4l2 and a script for having sound
using sox, because it never recognized the mixer channels of my card:
kradio4 works fine with v4l2 and fmtools is bkoken.
Thanks.
--
Paulo Roma Cavalcanti
LCG - UFRJ
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-06-2009, 10:46 AM
"Dominik 'Rathann' Mierzejewski"
v4l applications
On Sunday, 06 December 2009 at 10:36, Paulo Cavalcanti wrote:
> On Sat, Dec 5, 2009 at 6:45 PM, Dominik 'Rathann' Mierzejewski <
> dominik@greysector.net> wrote:
>
> > On Saturday, 05 December 2009 at 15:48, Paulo Cavalcanti wrote:
> > > There are some old v4l applications that do not work in Fedora 12.
> > >
> > > I found so far fmtools and gnomeradio.
> > >
> > > Gnomeradio accepts v4l2, but one has to use a gconf editor
> > > to change the driver (there is no option in the application interface).
> > >
> > > I tried to patch gnomerario, but I do not know how to force
> > > updating gconf database. I think that a new account should
> > > have the new defaults, but how do I force a change in a previously
> > created
> > > account?
> >
> > I'm the maintainer of gnomeradio, but I haven't used it for a while because
> > I'm away from my desktop PC, which has an analog tv/radio tuner card.
> > Would you be interested in co-maintaining gnomeradio?
> >
> >
> Sure. There are very few radio applications around, and they are kind of
> unmaintained upstream. I made a review request yesterday with a patched
> gqradio for working with v4l2.
>
> gnomeradio just needs best defaults for v4l2 and a script for having sound
> using sox, because it never recognized the mixer channels of my card:
>
> http://orion.lcg.ufrj.br/RPMS/src/gnomeradio-1.8-4.fc12.src.rpm
>
> kradio4 works fine with v4l2 and fmtools is bkoken.
It would've been easier for me if you had just posted a patch for the specfile
along with the patch you wanted to apply to the source.
Anyway, I had a look at it and I don't like it. You're hardcoding the driver
to v4l2. I think it'd be better to simply make the autodetection try v4l2
first. Also, is it necessary to change "/dev/radio" to "/dev/radio0"?
Please try the attached patch and see if it works for you.
switch (driver) {
+ case DRIVER_ANY:
case DRIVER_V4L2:
goto try_v4l2;
- case DRIVER_ANY:
case DRIVER_V4L1:
default:
goto try_v4l1;
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-06-2009, 11:40 AM
Paulo Cavalcanti
v4l applications
On Sun, Dec 6, 2009 at 9:46 AM, Dominik 'Rathann' Mierzejewski <dominik@greysector.net> wrote:
On Sunday, 06 December 2009 at 10:36, Paulo Cavalcanti wrote:
> On Sat, Dec 5, 2009 at 6:45 PM, Dominik 'Rathann' Mierzejewski <
> dominik@greysector.net> wrote:
>
> > On Saturday, 05 December 2009 at 15:48, Paulo Cavalcanti wrote:
> > > There are some old v4l applications that do not work in Fedora 12.
> > >
> > > I found so far fmtools and gnomeradio.
> > >
> > > Gnomeradio accepts v4l2, but one has to use a gconf editor
> > > to change the driver (there is no option in the application interface).
> > >
> > > I tried to patch gnomerario, but I do not know how to force
> > > updating gconf database. I think that a new account should
> > > have the new defaults, but how do I force a change in a previously
> > created
> > > account?
> >
> > I'm the maintainer of gnomeradio, but I haven't used it for a while because
> > I'm away from my desktop PC, which has an analog tv/radio tuner card.
> > Would you be interested in co-maintaining gnomeradio?
> >
> >
> Sure. There are very few radio applications around, and they are kind of
> unmaintained upstream. I made a review request yesterday with a patched
> gqradio for working with v4l2.
>
> gnomeradio just needs best defaults for v4l2 and a script for having sound
> using sox, because it never recognized the mixer channels of my card:
> kradio4 works fine with v4l2 and fmtools is bkoken.
It would've been easier for me if you had just posted a patch for the specfile
along with the patch you wanted to apply to the source.
Anyway, I had a look at it and I don't like it. You're hardcoding the driver
to v4l2. I think it'd be better to simply make the autodetection try v4l2
first. Also, is it necessary to change "/dev/radio" to "/dev/radio0"?
There is no /dev/radio in Fedora 12 any more. Only /dev/radio0.
But this is up to you, because it can be set using the interface.
*
Please try the attached patch and see if it works for you.
It worked just fine, and it is much better indeed. This way, the default
can be "any", and it will work with v4l2.
It is also working in Fedora 10 for me.
Thanks.
--
Paulo Roma Cavalcanti
LCG - UFRJ
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-06-2009, 12:51 PM
"Dominik 'Rathann' Mierzejewski"
v4l applications
On Sunday, 06 December 2009 at 13:40, Paulo Cavalcanti wrote:
> On Sun, Dec 6, 2009 at 9:46 AM, Dominik 'Rathann' Mierzejewski <
> dominik@greysector.net> wrote:
>
> > On Sunday, 06 December 2009 at 10:36, Paulo Cavalcanti wrote:
> > > On Sat, Dec 5, 2009 at 6:45 PM, Dominik 'Rathann' Mierzejewski <
> > > dominik@greysector.net> wrote:
> > >
> > > > On Saturday, 05 December 2009 at 15:48, Paulo Cavalcanti wrote:
> > > > > There are some old v4l applications that do not work in Fedora 12.
> > > > >
> > > > > I found so far fmtools and gnomeradio.
> > > > >
> > > > > Gnomeradio accepts v4l2, but one has to use a gconf editor
> > > > > to change the driver (there is no option in the application
> > interface).
> > > > >
> > > > > I tried to patch gnomerario, but I do not know how to force
> > > > > updating gconf database. I think that a new account should
> > > > > have the new defaults, but how do I force a change in a previously
> > > > created
> > > > > account?
> > > >
> > > > I'm the maintainer of gnomeradio, but I haven't used it for a while
> > because
> > > > I'm away from my desktop PC, which has an analog tv/radio tuner card.
> > > > Would you be interested in co-maintaining gnomeradio?
> > > >
> > > >
> > > Sure. There are very few radio applications around, and they are kind of
> > > unmaintained upstream. I made a review request yesterday with a patched
> > > gqradio for working with v4l2.
> > >
> > > gnomeradio just needs best defaults for v4l2 and a script for having
> > sound
> > > using sox, because it never recognized the mixer channels of my card:
> > >
> > > http://orion.lcg.ufrj.br/RPMS/src/gnomeradio-1.8-4.fc12.src.rpm
> > >
> > > kradio4 works fine with v4l2 and fmtools is bkoken.
> >
> > It would've been easier for me if you had just posted a patch for the
> > specfile
> > along with the patch you wanted to apply to the source.
> >
> > Anyway, I had a look at it and I don't like it. You're hardcoding the
> > driver
> > to v4l2. I think it'd be better to simply make the autodetection try v4l2
> > first. Also, is it necessary to change "/dev/radio" to "/dev/radio0"?
> >
> >
> There is no /dev/radio in Fedora 12 any more. Only /dev/radio0.
> But this is up to you, because it can be set using the interface.
OK. I think your change can stay, then.
> > Please try the attached patch and see if it works for you.
> >
> >
> It worked just fine, and it is much better indeed. This way, the default
> can be "any", and it will work with v4l2.
>
> It is also working in Fedora 10 for me.
Great! Thanks for testing. I've applied the patch to rawhide. Feel free
to request ACLs and port the changes to F-12/11 yourself. I might be too
busy to do it anytime soon. Could you forward the patch upstream, too?
One more thing: I added your script to the package, but as %doc. I don't
think we should be installing it in %{_bindir} by default.
Regards,
R.
--
Fedora http://fedoraproject.org/wiki/User:Rathann
RPMFusion http://rpmfusion.org | MPlayer http://mplayerhq.hu
"Faith manages."
-- Delenn to Lennier in Babylon 5:"Confessions and Lamentations"
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-06-2009, 02:53 PM
Nicolas Chauvet
v4l applications
2009/12/5 Paulo Cavalcanti <promac@gmail.com>:
> There are some old v4l applications that do not work in Fedora 12.
>
> I found so far fmtools and gnomeradio.
I will have a look on fmtools in ew days, but until then, patches welcomed.
Nicolas (kwizart)
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-11-2009, 06:35 PM
Paulo Cavalcanti
v4l applications
On Sun, Dec 6, 2009 at 1:53 PM, Nicolas Chauvet <kwizart@gmail.com> wrote:
2009/12/5 Paulo Cavalcanti <promac@gmail.com>:
> There are some old v4l applications that do not work in Fedora 12.
>
> I found so far fmtools and gnomeradio.
I will have a look on fmtools in ew days, but until then, patches welcomed.
The current fmtools developer, Ben Pfaff, told me he would send me a patch
soon. I will test it and then forward it to you.
Thanks.
--
Paulo Roma Cavalcanti
LCG - UFRJ
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-20-2009, 11:56 AM
Paulo Cavalcanti
v4l applications
On Fri, Dec 11, 2009 at 5:35 PM, Paulo Cavalcanti <promac@gmail.com> wrote:
On Sun, Dec 6, 2009 at 1:53 PM, Nicolas Chauvet <kwizart@gmail.com> wrote:
2009/12/5 Paulo Cavalcanti <promac@gmail.com>:
> There are some old v4l applications that do not work in Fedora 12.
>
> I found so far fmtools and gnomeradio.
I will have a look on fmtools in ew days, but until then, patches welcomed.
The current fmtools developer, Ben Pfaff, told me he would send me a patch
soon. I will test it and then forward it to you.
Well, Ben Pfaff sent me a new version, and I have a src.rpm here:
I also rewrote the spec file for including tkradio, a tcl/tk wrapper for fmtools.
In my case, I need to call
*/usr/bin/v4lctl -c /dev/radio0 volume mute off
to unmute my radio (v4ctl is from xawtv).
I reported this issue to Ben Pfaff, but at least fmtools is up again.
If someone with a different capture card could test this new version,
it would be great.
Thanks.
--
Paulo Roma Cavalcanti
LCG - UFRJ
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list
12-20-2009, 02:36 PM
Nicolas Chauvet
v4l applications
2009/12/20 Paulo Cavalcanti <promac@gmail.com>:
>
>
> On Fri, Dec 11, 2009 at 5:35 PM, Paulo Cavalcanti <promac@gmail.com> wrote:
>>
>>
>> On Sun, Dec 6, 2009 at 1:53 PM, Nicolas Chauvet <kwizart@gmail.com> wrote:
>>>
>>> 2009/12/5 Paulo Cavalcanti <promac@gmail.com>:
>>> > There are some old v4l applications that do not work in Fedora 12.
>>> >
>>> > I found so far fmtools and gnomeradio.
>>> I will have a look on fmtools in ew days, but until then, patches
>>> welcomed.
>>>
>>
>> The current fmtools developer, Ben Pfaff, told me he would send me a patch
>> soon. I will test it and then forward it to you.
>>
>
>
> Well, Ben Pfaff sent me a new version, and I have a src.rpm here:
>
> http://orion.lcg.ufrj.br/RPMS/src/fmtools-2.0-2.fc12.src.rpm
>
> http://orion.lcg.ufrj.br/RPMS/SPECS/fmtools.spec
>
> I also rewrote the spec file for including tkradio, a tcl/tk wrapper for
> fmtools.
>
> In my case, I need to call
>
> */usr/bin/v4lctl -c /dev/radio0 volume mute off
>
> to unmute my radio (v4ctl is from xawtv).
>
> I reported this issue to Ben Pfaff, but at least fmtools is up again.
>
> If someone with a different capture card could test this new version,
> it would be great.
>
> Thanks.
Hi Paula, and thx for your work,
Have you made a cvs request, so you can commit the spec directly?
Once that said there are few things I dislike in your src.rpm:
- The original source code of fmtools-2.0 doesn't seems present.
(same problem as fmcontrol), but I expect it to be present when the
release will be made official.
- You don't install with -p
- the desktop file could be bundled within the original source code and :
X-Desktop-File-Install-Version=0.15 should only be added by
desktop-file-install on %install
- Requires: tk seems a big dependency for a simple cmd line tool as
fmtools, Can you sub-package tkradio ? (or submit another package for
it ?)
- You haven't keept the changelog from the fedora package, Can you
rebase on it ?
Thx
--
fedora-devel-list mailing list
fedora-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-devel-list