I am using latest qt version 4.7,where i developed an application on Audio Recording. I need to set the path to memory card(ie,mass memory),I have seen links based on carbide link->How to run C++ applications in symbian But could not find any solution for this latest version.

Can anyone help me out in finding this!!

This is what i tried. I used two methods but i am clueless…. But the audio file gets stored in simulator ,,but not in desired memory card location!!!

  AudioBuffer::AudioBuffer()
 {
 audioSource = new QAudioCaptureSource();
 capture = new QMediaRecorder(audioSource);

 QAudioEncoderSettings audioSettings;
 audioSettings.setCodec("audio/vorbis");
 audioSettings.setQuality(QtMultimediaKit::HighQuality);
 capture->setEncodingSettings(audioSettings);
 capture->setOutputLocation(QUrl::fromLocalFile("test.wav"));

 FileName path = PathInfo::MemoryCardRootPath();
 path.Append( PathInfo::SoundsPath() );

// QFile file;
// QDir::setCurrent("/tmp");
// file.setFileName("test.wav");
  // QDir::setCurrent("/home");
  // file.open(QIODevice::ReadOnly);
   }     

I am using Symbian platform(Qt-Quick)

Regards, Harish.

link|improve this question

0% accept rate
feedback

2 Answers

I don't develop applications for symbian platforms but IMHO you have to convert TDesC path to a QString (see Converting a Descriptor to a QString for details).

link|improve this answer
Thank you for your reply i will try it – mkhpad Feb 21 at 4:59
feedback

Internal memory is hardcoded to "E:/" and SD card is hardcoded to "F:/" on symbian.

Do a :

QDir d;
d.setPath("f:/");
if (d.exists()) {
    [...]
}

to check the availability of the external storage

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.