Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/b40f52c48712cf7acf1edf07e7d7e3a81936891a?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
2 deletions
src/podcast/quicktime/UBQuickTimeFile.mm
@ -210,7 +210,6 @@ bool UBQuickTimeFile::beginSession()
setLastErrorMessage(mWaveRecorder->lastErrorMessage());
setLastErrorMessage(mWaveRecorder->lastErrorMessage());
mWaveRecorder->deleteLater();
mWaveRecorder->deleteLater();
mRecordAudio = false;
mRecordAudio = false;
break;
}
}
// Audio is mono, and compressed to AAC at 128kbps
// Audio is mono, and compressed to AAC at 128kbps
@ -379,7 +378,7 @@ void UBQuickTimeFile::appendAudioBuffer(void* pBuffer,
// Add the audio sample to the asset writer input
// Add the audio sample to the asset writer input
if ([mAudioWriterInput isReadyForMoreMediaData])
if ([mAudioWriterInput isReadyForMoreMediaData])
if(![mAudioWriterInput appendSampleBuffer:sampleBuffer])
if(![mAudioWriterInput appendSampleBuffer:sampleBuffer])
setLastErrorMessage(QString("Failed to append sample buffer to audio input: %1 ").arg(err ));
setLastErrorMessage(QString("Failed to append sample buffer to audio input"));
else
else
setLastErrorMessage(QString("Audio Writer not ready; sample dropped"));
setLastErrorMessage(QString("Audio Writer not ready; sample dropped"));