- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让 PCM 在 Python 中听起来有点像,但我尝试过的所有包都太多了,或者没有记录或死了,所以我决定用 libao 做一个简单的包。
我用作起点 this source code xiph.org 播放 440Hz 1 秒,我用 gcc -o ao_example ao_example.c -lao -ldl -lm
编译它,我成功运行这段代码,立即听到 440Hz 正弦 1在两个 channel 中均排名第二。
到目前为止,还不错。
所以我 $ cp ao_exemple.c mySoundAo.c
并编辑了 mySoundAo.c
以编译为 Python 模块。完整代码如下:
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <ao/ao.h>
#include <Python.h>
#define BUF_SIZE 4096
static PyObject* py_soundAo(PyObject* self, PyObject* args)
{
ao_device *device;
ao_sample_format format;
int default_driver;
char *buffer;
int buf_size;
int sample;
float freq = 440.0;
int i;
/* -- Initialize -- */
fprintf(stderr, "libao example program\n");
ao_initialize();
/* -- Setup for default driver -- */
default_driver = ao_default_driver_id();
memset(&format, 0, sizeof(format));
format.bits = 16;
format.channels = 2;
format.rate = 44100;
format.byte_format = AO_FMT_LITTLE;
/* -- Open driver -- */
device = ao_open_live(default_driver, &format, NULL /* no options */);
if (device == NULL) {
fprintf(stderr, "Error opening device.\n");
return Py_BuildValue("", 0);
}
/* -- Play some stuff -- */
buf_size = format.bits/8 * format.channels * format.rate;
buffer = calloc(buf_size,
sizeof(char));
for (i = 0; i < format.rate; i++) {
sample = (int)(0.75 * 32768.0 * sin(2 * M_PI * freq * ((float) i/format.rate)));
/* Put the same stuff in left and right channel */
buffer[4*i] = buffer[4*i+2] = sample & 0xff;
buffer[4*i+1] = buffer[4*i+3] = (sample >> 8) & 0xff;
}
ao_play(device, buffer, buf_size);
/* -- Close and shutdown -- */
ao_close(device);
ao_shutdown();
return Py_BuildValue("", 0);
}
static PyMethodDef mySoundAo_methods[] = {
{"soundAo", py_soundAo, METH_VARARGS},
{NULL, NULL}
};
void initmySoundAo()
{
(void) Py_InitModule("mySoundAo", mySoundAo_methods);
}
所以我编译为 gcc -shared -I/usr/include/python2.7/-o mySoundAo.so mySoundAo.c -lpython2.7 -lm -lsndfile -lao -ldl
我有这个警告:
In file included from /usr/include/python2.7/Python.h:8:0,
from mySoundAo.c:5:
/usr/include/python2.7/pyconfig.h:1158:0: warning: "_POSIX_C_SOURCE" redefined [enabled by default]
/usr/include/features.h:214:0: note: this is the location of the previous definition
听起来不太危险,所以我继续前进。
在 python 中,我做了以下操作:
$ python
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mySoundAo
>>> mySoundAo.soundAo()
libao example program
Error opening device.
>>>
没有声音。稍微检查一下代码,我发现函数 ao_initialize();
挂起大约 4 秒,下面的行 default_driver = ao_default_driver_id();
将这个变量设置为 -1 (错误)。
这种行为很奇怪,因为它几乎是相同的代码。
那么,有什么想法可以让这项工作成功吗?
谢谢!
最佳答案
你得到的警告是无害的,只需移动#include <Python.h>
到顶部应该让标准库正确识别已经定义的宏。
问题可能是编译错误导致的 /usr/lib/ao/plugins-4/libalsa.so
(如果您在 debug
中设置了 ~/.libao.conf
,则会提到此文件)。由于 ao 的 alsa 插件加载失败,ao 尝试了所有其他选项,并耗尽了 4 秒的 nas 超时(这是延迟的原因)。
检查是否编译错误(或链接错误)libalsa.so
是问题,运行
$ ldd -r /usr/lib/ao/plugins-4/libalsa.so > /dev/null
undefined symbol: ao_is_big_endian (/usr/lib/ao/plugins-4/libalsa.so)
输出中的错误应该指向符号的问题。您可以自己下载 libao,然后修补 libao-*/src/plugins/alsa/ao_alsa.c
中的行,或从 ao_is_big_endian
复制定义,或修复链接。
关于python - libao 示例在编译为 python 模块时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8963915/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!