qt-mobility

Qt audio editing

隐身守侯 提交于 2020-01-02 17:55:10
问题 I want to create a qt application similar to Audacity that can run on mobile. Al that I want at the moment is the ability to change volume levels, pitch and tempo. I also want the ability to select, copy and paste parts of the audio file. Do any of you know a API, SDK or something for Qt that would allow this? All built in stuff I could find in Qt is QtMultimedia which allows me to import a audio file and then play it but it doesn't seem to have editing(except for bitrate, channel, etc.) or

How do I get phone info in QT? (carrier, device model, device manufacturer)

送分小仙女□ 提交于 2019-12-25 01:52:41
问题 I've found something like below on the net //Get S60 version and display it on label switch (QSysInfo::s60Version ()) { case QSysInfo::SV_S60_3_1: return "S60 version: S60 3.1"; case QSysInfo::SV_S60_3_2: return "S60 version: S60 3.2"; case QSysInfo::SV_S60_5_0: return "S60 version: S60 5.0"; case QSysInfo::SV_S60_Unknown: return "S60 version: S60 Unknown"; default: break; } //Get OS version and display it on label switch (QSysInfo::symbianVersion ()) { case QSysInfo::QSysInfo::SV_9_2: return

Qt audio editing

风格不统一 提交于 2019-12-06 08:56:38
I want to create a qt application similar to Audacity that can run on mobile. Al that I want at the moment is the ability to change volume levels, pitch and tempo. I also want the ability to select, copy and paste parts of the audio file. Do any of you know a API, SDK or something for Qt that would allow this? All built in stuff I could find in Qt is QtMultimedia which allows me to import a audio file and then play it but it doesn't seem to have editing(except for bitrate, channel, etc.) or manipulation. This is for Symbian, and can be built on windows or kubuntu. Paul Sweatte Use one of the

Terrible performance with QMediaPlayer and QVideoWidget

别来无恙 提交于 2019-12-05 13:51:39
问题 I see a terrible performance while trying to play videos with QtMobility 1.2.0 and Qt 4.7.4 on Ubuntu 10.10 (Pentium 4 2.80GHz). What's funny is that totem (which also use gstreamer as backend) and vlc are able to play these videos without a problem on this machine, even with higher resolutions (fullscreen, etc). According to top , my application consumes 100% of CPU while totem and vlc consumes only ~ 40% . That's... weird! So I'm sharing the source code of the application below. It uses

Failed to start program. Path or permissions wrong? in Qt

陌路散爱 提交于 2019-12-01 03:20:23
I have downloaded Qt Mobility Open source project. I had a set of demo apps. And when built it and started the App, I got this error: Failed to start program. Path or permissions wrong? Can someone tell me what this problem could be? UPDATE: The complete error is: Starting /Users/xxxxx/Qt/qt-mobility-opensource-src-1.0.2/config.app/Contents/MacOS/config... Failed to start program. Path or permissions wrong? I have include the ".pro" file contents: TEMPLATE = app TARGET = writemessage QT += gui include(../examples.pri) CONFIG += mobility MOBILITY = messaging INCLUDEPATH += ../../src/messaging