Displaying 20 results from an estimated 90 matches similar to: "python bindings and ao lockup"
2003 Jan 28
2
broken ogg file
Hi, I have a broken ogg file. ogginfo reports the playback length as
1:14
Both xmms and ogg123 report the length correctly at 5:19.
So I re ripped the wav and re-encoded the file, same thing.
I am uploading the ogg at the moment (it might take an hour) if anyone
wants to have a look.
http://www.zoism.org/ogg/broke.ogg
I dont know if it will help, but I really cant upload wav, a my modem
2010 Jun 24
2
Why not pulseaudio?
Pulseaudio works great in wine using the modified wine from the Neill Aldur ppa. Tried everything else (padsp, pasuspender, blah) and nothing would work reliably. Some crashes when another application outputs sound, sometimes the sound does not work at all, sometimes it is awfully slow or with latency varying while recording, leading to unpredictable offsets in recorded files.
Using pulseaudio
2002 Sep 25
0
vorbisfile bug?
Good day.
It seems vorbisfile has a bug.
There is a such string in ov_time_seek:
ogg_int64_t target=pcm_total+(seconds-time_total)*vf->vi[link].rate;
It is not accounted type convertion between double and ogg_int64_t.
E.g. if I convert 440267'th sample (44100Hz source) to time:
double dSec = 440267 / (double) 44100;
and then try to seek dSec:
ov_time_seek(pOVFile, dSec);
the resulting
2008 Feb 14
1
Pulse AO plugin priority
Just a quick note that the priority in the Pulse AO
plugin (ao/src/plugins/pulse/ao_pulse.c) should be
changed from 41 to 50 (in the ao_pulse_info struct).
Since the plugin now ships as part of libao, its
priority should be a factor of 5, as that's how I
designed the plugin priority system. Plugins that
ship with libao should be a factor of 5, so that 3rd
party plugins can fit in between
2001 Mar 06
1
ao patch (fwd)
Can someone apply this patch? It corrects a silly typo on my part.
---
Stan Seibert
---------- Forwarded message ----------
Date: Wed, 07 Mar 2001 01:20:48 +0100
From: Markus Keller <markus@mercury.net.dhis.org>
To: indigo@aztec.asu.edu
Subject: ao patch
Hi,
I just noticed a small typo in ao_esd.c. Here is a patch for it:
--- ao_esd.c~ Sun Feb 25 03:06:05 2001
+++ ao_esd.c Wed
2000 Dec 30
1
selecting driver for ao
I added a couple of functions to my copy of ao.
int ao_get_driver_count(void);
const char * ao_get_driver_name(int index);
With these, I can get a list of drivers and give the user a choice
by using radio buttons, e.g.
[ ] alsa
[*] oss
[ ] esd
[ ] null
[ ] wav
This is a lot nicer than just asking them to enter the name of
the driver.
Here's the code I added to audio_out.c:
const char *
2012 Mar 09
0
New winetricks 20120308: support wine-1.4, new verbs ao, cmd, mspatcha, msvcirt, sdl
Another major release of wine, another winetricks release :-)
Download url:
http://winetricks.org/winetricks
http://winetricks.org/download/releases/winetricks-20120308.tgz
For bug tracker, mailing lists, and wiki, see
http://winetricks.org
To become a Winetricks contributor, see
http://code.google.com/p/winetricks/wiki/AddingNewVerbs
Changes since 20111115:
Ahmed Waheed:
ao: new verb
Austin
2000 Sep 29
1
ao/
I dived into automake, autoconf, etc. waters a little while ago, and somehow
got libao to actually compile (!!!) (sort of...). Still not right, though.
The commit looks sorta like this:
* make configure.in in coordination with autoheader and automake properly
create config.h. I put it in ao/include/config.h so that the build won't
need an extra include directory, but if anybody thinks
2001 Mar 17
2
ao: Sun audio plug-in
Here's the promised Sun audio system plug-in.
I have tested this on OpenBSD. It should work without changes on
NetBSD, too. Jeremy, could you please verify this?
After a few minor tweaks it now also compiles on Solaris 2.7.
Alas, I can't verify whether it actually plays anything there.
I guess this could also with little effort be made to work on
SunOS4.
Attached:
- Diff to
2001 Sep 02
1
ao-python 0.0.2 not building under latest libs
I decided to take a break from trying to get the encoding working in order to
update my libraries to the latest versions I tried to build ao-python from
both SRPM and tarball, and here's what I got:
---
+ python setup.py install --root=/var/tmp/pyao-buildroot
--record=INSTALLED_FILES
running install
running build
running build_ext
building 'aomodule' extension
creating build
creating
2003 Mar 22
0
VIAGEM DANÇANTE AO RIO DE JANEIRO
TURISMO & EVENTOS
Luiz Guilherme 3031-7374 e Marcio Sorriso 9887-9141 S?o Paulo -SP
Em abril, M?rcio Sorriso e Luiz Guilherme promover?o uma inesquec?vel
viagem ? cidade maravilhosa. Ser? mais uma oportunidade para voc?
divertir-se conhecer ou rever lugares maravilhosos, fazer novos amigos e ?
claro, dan?ar e dan?ar... Muito! Voc? n?o pode deixar de participar. Leia
a
2012 Aug 08
1
Permisson Denied ao accces home dir
Hello,
I make a samba server + ldap.
I create some users and get login in mydomain with success.
After login I can't write in paste user.But is denied.
#some users created
brasil:x:1012:513:Brasil Telhados:/dev/null:/bin/false
atleticomg:x:1013:513:Clube Atletico MG:/home/atleticomg:/bin/bash
#groups crated
informatica:*:1001:atleticomg,natalia,faria
2006 Nov 27
2
Problema ao Logar no Dominio
Boa Tarde,
Estou com problemas para autentica??o de meus computadores no dominio samba.
Quando tento pelo pr?prio windows ou na m?o pelo console adicionar uma
m?quina ao dominio, ela ? cadastrada com sucesso, ela fica em
ou=Computers,dc=xxx,dc=xxx por?m o smbd a procura em people o que resulta
que meus usu?rios n?o conseguem logar...
assim ... ao inves de o sambra procurar em ou=Computers ele
2000 Nov 18
4
ao hard codes -ldl in configure tests
Rather than using libtool to build its sets, the ao.m4 in beta3 is hard coding '-ldl':
AO_LIBS="$AO_LIBS -lao -ldl"
Not all systems have a dl library. For now, I can obviously just remove it and keep working on stuff, but what would be a suitable patch that would get accepted to be committed? Should I just check the current build target and set AO_LIBS differently on my
2009 Oct 06
0
[ao] Two patches for libao2
Hi Heikki,
So libao is currently not maintained upstream. In the appropriate IRC
channels I'm lead to believe that there are better libraries out there
that should be used instead.
If so many debian packages didn't link against it I would seriously
consider dropping it all together.
It doesn't sound like it's worth anyone's time maintaining libao
properly upstream. I do have
2001 Aug 21
2
ao changes
Why has ao been changed so that there are now two open() functions ?
IMHO the original ao_open() was fine - if you wanted to set the
filename for output, you could add an option via ao_append_option
and if you wanted to avoid overwriting an existing file, you could
stat() it yourself.
Having ao_open_live() and ao_open_file() just makes more work for
the user of the library for no gain, AFAICT.
2001 Aug 21
2
ao changes
Why has ao been changed so that there are now two open() functions ?
IMHO the original ao_open() was fine - if you wanted to set the
filename for output, you could add an option via ao_append_option
and if you wanted to avoid overwriting an existing file, you could
stat() it yourself.
Having ao_open_live() and ao_open_file() just makes more work for
the user of the library for no gain, AFAICT.
2009 Jan 31
7
Darwine stopped working
I downloaded and installed Darwin 1.1.5 to run Sturmovik IL2 1946. It worked fine yesterday but today, it will not load the application. Everything seems to start normally, but I get the following message in the Wine Log:
err:module:attach_process_dlls "gdi32.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for
2010 Mar 26
0
[PATCH] del xend entry when destroy pv usb host controller of a guest os with no pv-frontend driver
delete xend entry when destroying pv usb host controller of a guest os which
has no pv-frontend driver loaded.
-James (Song Wei)
Signed-off-by: James (Song Wei) <jsong@novell.com>
diff -r f42ff98a2cdc tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py Thu Mar 25 09:32:21 2010
+0000
+++ b/tools/python/xen/xend/XendDomainInfo.py Fri Mar 26 13:27:25
2011 Jun 24
0
Wine release 1.3.23
The Wine development release 1.3.23 is now available.
What's new in this release (see below for details):
- Support for stubless COM proxies on x86-64.
- Builtin dxdiag now outputs real information.
- Monochrome bitmap format in the DIB engine.
- Beginnings of a true shell Explorer builtin.
- A number of new D3DX9 functions.
- More support for Indic text shaping.
- Various bug