- Release v0.02-1

This commit is contained in:
Santi Noreña 2013-02-13 18:12:49 +01:00
parent 90306504c0
commit aaa405673b
9 changed files with 42 additions and 4312 deletions

View file

@ -188,7 +188,8 @@ libreMediaServer::~libreMediaServer()
if (m_pd_write_audio != NULL)
{
m_pd_read_audio->close();
}
delete m_pd_read_audio;
}
return;
}
@ -840,7 +841,7 @@ void libreMediaServer::pdstart()
Q_CHECK_PTR(m_pd_write_video);
connect(m_pd_write_video, SIGNAL(connected()),this, SLOT(newconexion()));
// Arrancamos el proceso Pure Data
m_pd_video->start("./pd -lib Gem -d 0 -stderr -nostdpath lms-video.pd");
m_pd_video->start("./pd -lib Gem -d 0 -stderr -nogui -nostdpath lms-video.pd");
if (m_pd_video->waitForStarted(3000)){
ui.textEdit->appendPlainText("Video Engine started.");
}
@ -1433,7 +1434,7 @@ void libreMediaServer::pdstart_audio()
qDebug()<<"error listening tcpServer";
}
// Arrancamos el proceso Pure Data
m_pd_audio->start("./pd -alsa -channels 2 -audiodev 1 -stderr -nostdpath -nogui lms-audio.pd");
m_pd_audio->start("./pd -channels 2 -audiodev 1 -stderr -nostdpath -nogui lms-audio.pd");
if (m_pd_audio->waitForStarted(3000)){
ui.textEdit->appendPlainText("PD Audio started.");
}