search for: regained

Displaying 20 results from an estimated 226 matches for "regained".

Did you mean: gained
2012 Feb 11
3
Regain play analysis patches
Earl Chew wrote: > That being said, I think my patch leaves us better off than before ! I agree. We will add it as it is and then tweak futher as needed. Earl, would you be able to update your patch so that it applies against the current git master? Cheers, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2017 Dec 21
0
Gluster replicate 3 arbiter 1 in split brain. gluster cli seems unaware
...me virt_images. Stopping local bricks. Dec 20 17:22:06 virt2 systemd[1]: Started GlusterFS, a clustered file-system server. Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.387238] C [MSGID: 106003] [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] 0-management: Server quorum regained for volume filserver. Starting local bricks. Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.390417] C [MSGID: 106003] [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] 0-management: Server quorum regained for volume virt_images. Starting local bricks. -- Reboot -- Dec 20 18...
2012 Feb 10
2
Regain play analysis patches
Hi all, In the last couple of months, there have been two proposed patches for the regain play analysis code. The first by Nathan Rennie-Waldock: http://lists.xiph.org/pipermail/flac-dev/2011-December/003070.html simply adds some more higher sample rates. The second by Earl Chew: http://lists.xiph.org/pipermail/flac-dev/2012-January/003067.html is more comprehensive. Neither of the
2012 Feb 10
2
Regain play analysis patches
Hello Earl, I used your patches while they cleanly applied to the Git tree. There is one question though, what do you think of?. http://www.hydrogenaudio.org/forums/index.php?showtopic=84086&st=0&p=782407&#entry782407 which apparently states (if I understand correctly) that your approach is not completely correct. Kind regards, Michael -------------- next part -------------- An
2012 Feb 11
0
Regain play analysis patches
Mike, I'm not an expert at DSP work, and I'd gladly defer to any one with any reasonable amount of DSP experience. I followed the link, but I'm not sure how to interpret the graph exactly. I believe it's showing filter behaviour. The two curves look similar, but are clearly not the same. At the 1kHz mark, the blue shows -23, and the green shows perhaps 17.? Are they supposed to
2012 Feb 14
0
Regain play analysis patches
Erik, Ok. I've updated the patches, and made some additions to the test harness. For the test harness, I used sox to generate 1kHz wav files over a range of sampling rates. The test harness runs the replaygain analysis, and compares the resulting metadata. Are you ok with this approach ?? It means that the wav files need to be checked into the repository. (There are already some small image
2012 Feb 14
0
Regain play analysis patches
Erik, One per filter table entry. That's 12 files right now. The files could be generated on the fly, but that would either require another program or script (eg Perl), or a dependence on an external toolkit such as sox. The tests increase the runtime of test_metaflac.sh from 11s to 15s on my machine. What are your thoughts ? Earl ----- Original Message ----- From: Erik de Castro Lopo
2012 Feb 17
0
Regain play analysis patches
I'm a little reluctant to introduce another compiled program when there are so many other options that will work well enough out of the box. Here are two ideas: 1. Use bc(1) to compute the raw samples 2. Use perl(1) to compute the raw samples To generate raw unsigned samples using bc(1) for example: samplerate = 1000; duration = 2; bitspersample = 24; samplerange = 2 ^ (bitspersample-1) -
2012 Feb 20
0
Regain play analysis patches
Erik, It turns out bc(1) is too accurate, and a little slow, for this purpose. I've switched to using awk(1) which uses floating point. Do you feel I need to test for the presence of awk(1) ? It is specified as one of the standard commands in the LSB : http://refspecs.linuxfoundation.org/LSB_1.0.0/gLSB/command.html Earl ??? awk -- ' ??? BEGIN { ??????????? samplerate = 8000;
2017 Dec 22
2
Gluster replicate 3 arbiter 1 in split brain. gluster cli seems unaware
...bricks. > Dec 20 17:22:06 virt2 systemd[1]: Started GlusterFS, a clustered > file-system server. > Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.387238] C > [MSGID: 106003] > [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] > 0-management: Server quorum regained for volume filserver. Starting > local bricks. > Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.390417] C > [MSGID: 106003] > [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] > 0-management: Server quorum regained for volume virt_images. Starting > local...
2012 Feb 14
2
Regain play analysis patches
Earl Chew wrote: > Erik, > > Ok. I've updated the patches, and made some additions to the test harness. > > For the test harness, I used sox to generate 1kHz wav files over a range of > sampling rates. The test harness runs the replaygain analysis, and compares > the resulting metadata. > > Are you ok with this approach ?? It means that the wav files need to be
2012 Feb 14
3
Regain play analysis patches
Earl Chew wrote: > One per filter table entry. That's 12 files right now. Thats probably a bit much. > The files could be generated on the fly, but that would either require > another program or script (eg Perl), Anything but Perl. I can write Perl but I can't read it :-). > or a dependence on an external toolkit such as sox. I'd be ok with requiring sox to run the
2012 Feb 15
4
Regain play analysis patches
Brian Willoughby wrote: > What about using the C library sin() and cos() functions to generate > the test audio instead of sox? I did not see a description of how > the test files are generated, so maybe this is easy or maybe it is > hard. The benefit of shipping the test audio generation source code > around with the FLAC sources is that the tests won't break when
2017 Dec 21
2
Gluster replicate 3 arbiter 1 in split brain. gluster cli seems unaware
Hey, Can you give us the volume info output for this volume? Why are you not able to get the xattrs from arbiter brick? It is the same way as you do it on data bricks. The changelog xattrs are named trusted.afr.virt_images-client-{1,2,3} in the getxattr outputs you have provided. Did you do a remove-brick and add-brick any time? Otherwise it will be trusted.afr.virt_images-client-{0,1,2} usually.
2012 Feb 17
3
Regain play analysis patches
Earl Chew wrote: > I'm a little reluctant to introduce another compiled program when there are > so many other options that will work well enough out of the box. > > Here are two ideas: > > 1. Use bc(1) to compute the raw samples > 2. Use perl(1) to compute the raw samples > > To generate raw unsigned samples using bc(1) for example: > > samplerate = 1000;
2012 Feb 15
0
Regain play analysis patches
What about using the C library sin() and cos() functions to generate the test audio instead of sox? I did not see a description of how the test files are generated, so maybe this is easy or maybe it is hard. The benefit of shipping the test audio generation source code around with the FLAC sources is that the tests won't break when sox is modified. Brian Willoughby Sound
2009 Apr 13
2
Win Program loses focus and cannot regain it back.
Application is working on Windows but when I run on RedHat10 under Wine 1.1.15. It looses focus and underlying Linux applications to get the keystrokes from the keyboard. Clicking on the application we're trying to run or switching with ALT+TAB doesn't not give it the focus back. The parameters we're running Wine are: Allow the window manager to decorate the windows : OFF Allow the
2017 Dec 22
0
Gluster replicate 3 arbiter 1 in split brain. gluster cli seems unaware
...17:22:06 virt2 systemd[1]: Started GlusterFS, a clustered >> file-system server. >> Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.387238] C >> [MSGID: 106003] >> [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] >> 0-management: Server quorum regained for volume filserver. Starting >> local bricks. >> Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.390417] C >> [MSGID: 106003] >> [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] >> 0-management: Server quorum regained for volume virt_images....
2017 Dec 22
0
Gluster replicate 3 arbiter 1 in split brain. gluster cli seems unaware
...]: Started GlusterFS, a clustered > >> file-system server. > >> Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.387238] C > >> [MSGID: 106003] > >> [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] > >> 0-management: Server quorum regained for volume filserver. Starting > >> local bricks. > >> Dec 20 17:22:11 virt2 glusterd[739]: [2017-12-20 16:22:11.390417] C > >> [MSGID: 106003] > >> [glusterd-server-quorum.c:349:glusterd_do_volume_quorum_action] > >> 0-management: Server quorum regained...
2011 Feb 02
6
Lost root access
So on a virtual server the root password was no longer working (as in I couldn't ssh in anymore). Only I and one other know it and neither of us have changed it. No other account had the correct privileges to correct this so I'm wondering, if I had mounted that vdi as a secondary device on another VM, browsed the file system and delete /etc/shadow would this have wiped all users passwords