- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在对 QIODevice
类进行子类化,以通过 QAudioInput
和 QAudioOutput
实例编写和读取语音。但是当我用耳机读它时,声音几乎每隔几毫秒就会中断一次。它发出的声音非常糟糕,如果我一直打开麦克风,当我关闭它时,声音会持续很长时间。
换句话说:
我已经尝试使用其他QIODevice
实现,例如QFile
,效果很好,声音也不错。这意味着问题不在我的 QAudioInput
和 QAudioOutput
实例中。
当我想听到自己的声音时,我唯一做的就是:
void startrecording()
{
_audioInput->start(_audioBuffer);
_audioOutput->start(_audioBuffer);
// Start the output after didn't really change the sound
// QTimer::singleShot(500, [this] { _audioOutput->start(_audioBuffer); });
}
现在这是我的 AudioBuffer
类
// .h
class AudioBuffer : public QIODevice
{
Q_OBJECT
public:
AudioBuffer();
protected:
qint64 writeData(const char* data, qint64 len) override;
qint64 readData(char* data, qint64 maxlen) override;
private:
static const int MAXSIZE = 1024 * 1024;
std::array<char, MAXSIZE> _buffer;
qint64 _writePosition;
qint64 _readPosition;
qint64 _currentBufferLength;
};
// .cpp
AudioBuffer::AudioBuffer()
{
_writePosition = 0;
_readPosition = 0;
_currentBufferLength = 0;
}
qint64 AudioBuffer::writeData(const char* data, qint64 len)
{
qDebug() << "--- writing ---" << data;
std::string content = data;
if ((_writePosition + content.size()) > MAXSIZE)
{
qint64 firstData = MAXSIZE - _writePosition;
memcpy(&_buffer[_writePosition], content.data(), firstData);
memcpy(&_buffer[0], content.data() + firstData, content.size() - firstData);
}
else
{
memcpy(&_buffer[_writePosition], content.data(), content.size());
}
_writePosition = (_writePosition + content.size()) % MAXSIZE;
_currentBufferLength += content.size();
return len;
}
qint64 AudioBuffer::readData(char* data, qint64 maxlen)
{
if (_currentBufferLength <= 0) return 0;
qint64 writeLen = std::min(maxlen, _currentBufferLength);
if ((writeLen + _readPosition) > MAXSIZE)
{
qint64 firstData = MAXSIZE - _readPosition;
memcpy(data, &_buffer[_readPosition], firstData);
memcpy(data + firstData, &_buffer[0], writeLen - firstData);
}
else
{
memcpy(data, &_buffer[_readPosition], writeLen);
}
qDebug() << "--- reading ---" << data;
_readPosition = (_readPosition + writeLen) % MAXSIZE;
_currentBufferLength -= writeLen;
return writeLen;
}
qDebug
数据返回相同的输出,只是 readData
调用次数少于 writeData
但缓冲区被正确读取。
输出(不含数据)如下(持续 5 秒)。我不知道这是否意味着什么,但更多的时间过去了,与 readData
writeData
被调用
--- writing --- x1
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x2
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x3
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x6
--- reading --- x1
--- writing --- x9
--- reading --- x1
--- writing --- x13
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x20
--- reading --- x1
--- writing --- x1
--- reading --- x1
--- writing --- x26
--- reading --- x1
--- writing --- x26
--- reading --- x1
--- writing --- x4
input stop
--- reading --- x2
最佳答案
所以经过一些尝试,在这种情况下,似乎使用QBuffer
可以代替我的AudioBuffer
。
然后,要小心,如果在同一个线程中同时读写,会造成一些卡顿。
但在我的例子中,我需要将数据发送到服务器,然后服务器将音频发送到每个能够听到它的客户端。所以 QBuffer
是不够的。
这是我的新实现
// Moving in different thread
_audioInput->moveToThread(&_inputThread);
_audioOutput->moveToThread(&_outputThread);
_audioInput->start(_audioBuffer);
_audioOutput->start(_audioBuffer);
// .cpp
class AudioBuffer : public QBuffer
{
Q_OBJECT
public:
AudioBuffer(/* Whatever you need for your server connection */);
protected:
/// Override the QBuffer method
qint64 writeData(const char* data, qint64 len) override;
/// Connect this method with the signal emit when your server send new audio
/// This is a string but it can be whatever you want according to your server
void getServerAudio(const std::string& audio);
};
// .h
AudioBuffer::AudioBuffer(/* Whatever you need for your server connection */)
{
// Connect your server with AudioBuffer::getServerAudio
}
qint64 AudioBuffer::writeData(const char* data, qint64 len)
{
// Send that the client send a new audio to the server
std::string audio = data;
// This is an example
sendAudioToServer(audio);
return len;
}
void AudioBuffer::getServerAudio(const std::string& audio)
{
// When you get a new audio from the server, you can hear it (so you write data into the buffer)
QBuffer::writeData(audio.c_str(), audio.size());
}
关于c++ - Qt - 重新实现 QIODevice 以实时听到我自己的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57593939/
我正在使用 Qt 语言学家翻译一个 ui 文件。我使用 lupdate 获取了它的 ts 文件,并翻译了这些单词和短语。现在我想将它添加到我的代码中,但我从它的教程中发现我似乎必须将 tr() 添加到
我想在 Qt Creator 中创建下面的简单控制台应用程序: #include int main(int argc, char* argv[]) { std::cout #include
我想将 libQtGui.so.4 libQtNetwork.so.4 和 libQtCore.so.4 包含在与我的应用程序所在的目录相同的目录中。我如何让 Qt 理解这一点? y 目的是拥有一个使
我有一个充满 QPushButtons 和 QLabels 以及各种其他有趣的 QWidget 的窗口,所有这些都使用各种 QLayout 对象动态布局...而我想做的是偶尔制作一些这些小部件变得不可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
我想知道 Qt 是否将下面代码的“版本 1”之类的东西放在堆上?在版本 1 中,Qt 会将 dirStuff 放在堆栈上还是堆上?我问是因为我有一种感觉,Java 将所有数据结构放在堆上......不
这个问题是关于 Qt Installer Framework 2.0 版的。 在这一点上,使用 Qt 安装程序框架的人都知道,如果不进行自定义,您根本无法通过安装程序覆盖现有安装。这样做显然是为了解决
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因为我在我的计算机上安装了 Qt 4.8.4 和 Qt 5.1,所以我遇到了问题。 当只有 Qt 4.8.4 存在时,一切都很好。 当我添加 Qt 5.1 时,这个工作正常,但 Qt 4.8.4 给了
我无法在我的 Ubuntu 12 中安装更多软件包。我尝试了 apt-get install -f ,以及许多其他类似的技巧,但在找到解决方案方面没有进展。 这是属于 Qt 的损坏包: 以下包具有未满
我正在尝试使用 Virtual Box 中的 Ubuntu 机器复制我们目前在物理 Ubuntu 服务器上运行的应用程序。它是一个 QT 应用程序,但在服务器上我们使用 NPM 的 pm2 运行它。安
问题: Qt Creator 是用 Qt Creator 构建的吗? 同样,Qt Designer 是用 Qt Designer 构建的吗? 顺便说一句,为什么有两个 Qt IDE?他们是竞争对手吗?
当我使用 QWidget设计用户界面时,我总是对它的大小属性有点困惑。有size policy , geometry和 hintSize . 我只知道size policy之间的关系和 hintSiz
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道是否有一种很好的方法可以让用户像 LabView 一样创建节点图(有限制)。 像这样的东西: 我见过http://www.pyqtgraph.org/ ,这似乎有类似的东西,我确实打算使用 P
在 Qt 中是否有一种跨平台的方式来获得用户喜欢的固定宽度和比例字体? 例如,在 cocoa 中,有 NSFont *proportional = [NSFont userFontOfSize:12.
我想使用 Qt 和 C++ 制作这样的交互式图表:http://jsxgraph.uni-bayreuth.de/wiki/index.php/Cubic_spline_interpolation 关
我正在编写一个嵌入式设备屏幕的模拟(其中包含主 QWidget 顶部的自定义小部件),虽然屏幕的原始尺寸是 800x600,但我希望能够按比例放大和缩小它拖动窗口的角。如果不使用网格布局和担架(不会向
在下面的示例中,我是否必须从堆中删除对象?如果是的话,怎么办? #include #include #include #include #include int main(int argc,
来自 Web 开发背景,我现在进入 QT 应用程序开发。 使用 QFonts 我已经看到我显然只有两个选择,在 QT 中定义字体大小;按像素大小或点大小。 在制作网页布局时,我习惯于以相对方式定义所有
我是一名优秀的程序员,十分优秀!