- Move pure data files to pd folder
- delete spam files
This commit is contained in:
parent
01e5bf35e7
commit
f0b9f0126b
68 changed files with 48 additions and 15890 deletions
|
|
@ -427,22 +427,18 @@ void libreMediaServer::on_updateButton_clicked()
|
|||
ui.textEdit->appendPlainText("Can not explore the media in the path given");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// Creamos el objeto CITP y el peer information socket
|
||||
|
||||
quint32 ipadd = 0x00000000;
|
||||
quint32 i;
|
||||
i = ui.ipAddress1->value();
|
||||
ipadd = ipadd + (i * 0x1000000);
|
||||
i =ui.ipAddress2->value();
|
||||
ipadd = ipadd + (i * 0x10000);
|
||||
i = ui.ipAddress3->value();
|
||||
ipadd = ipadd + (i * 0x100);
|
||||
i = ui.ipAddress4->value();
|
||||
ipadd = ipadd + i;
|
||||
quint32 ipadd = 0x00000000;
|
||||
quint32 i;
|
||||
i = ui.ipAddress1->value();
|
||||
ipadd = ipadd + (i * 0x1000000);
|
||||
i =ui.ipAddress2->value();
|
||||
ipadd = ipadd + (i * 0x10000);
|
||||
i = ui.ipAddress3->value();
|
||||
ipadd = ipadd + (i * 0x100);
|
||||
i = ui.ipAddress4->value();
|
||||
ipadd = ipadd + i;
|
||||
m_msex->startCitp(ipadd);
|
||||
|
||||
}
|
||||
|
||||
// Window Configuration
|
||||
|
|
@ -805,7 +801,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 1 -nogui pms-video.pd");
|
||||
m_pd_video->start("pd -lib Gem -d 0 -stderr -nostdpath -path ./pd pms-video.pd");
|
||||
if (m_pd_video->waitForStarted(3000)){
|
||||
ui.textEdit->appendPlainText("Video Engine started.");
|
||||
}
|
||||
|
|
@ -1398,7 +1394,7 @@ void libreMediaServer::pdstart_audio()
|
|||
qDebug()<<"error listening tcpServer";
|
||||
}
|
||||
// Arrancamos el proceso Pure Data
|
||||
m_pd_audio->start("pd -nogui -alsa -channels 2 -audiodev 1 pms-audio.pd");
|
||||
m_pd_audio->start("pd -nogui -alsa -channels 2 -audiodev 1 -stderr -nostdpath -path ./pd pms-video.pd");
|
||||
if (m_pd_audio->waitForStarted(3000)){
|
||||
ui.textEdit->appendPlainText("PD Audio started.");
|
||||
}
|
||||
|
|
@ -1595,7 +1591,7 @@ void libreMediaServer::sendFrame()
|
|||
qDebug()<<"sendFrame: Can not convert screen capture to image";
|
||||
return;
|
||||
}
|
||||
image = image.scaledToWidth(88);
|
||||
image = image.scaledToWidth(88);http://palmadores.net/index.php
|
||||
image = image.convertToFormat(QImage::Format_RGB888);
|
||||
int bufferLen = image.byteCount();
|
||||
int bufferLenTot = sizeof(struct CITP_MSEX_10_StFr ) + bufferLen;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue