Changed version to 0.1.2
Chaged some doc
This commit is contained in:
parent
bdd72825db
commit
415db66a87
7 changed files with 24 additions and 21 deletions
|
@ -23,6 +23,14 @@ Lbre Media Server ChangeLog
|
||||||
|
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
|
||||||
|
v 0.1.2
|
||||||
|
|
||||||
|
+ Bugfixes: Reconnecting to ola when the server closes the connection
|
||||||
|
|
||||||
|
v 0.1.1
|
||||||
|
|
||||||
|
+ Bugfixes
|
||||||
|
|
||||||
v 0.1.0
|
v 0.1.0
|
||||||
|
|
||||||
+ First Version: 4 layers playing .ogg
|
+ First Version: 4 layers playing .ogg
|
||||||
|
|
|
@ -38,9 +38,9 @@ If you have troubles, or you are in another distro, you can try compiling from t
|
||||||
or
|
or
|
||||||
|
|
||||||
$ cd src
|
$ cd src
|
||||||
$ qmake-qt4 libremediaserver-audio.pro -r -spec linux-g++
|
$ qmake-qt5 libremediaserver-audio.pro -r -spec linux-g++
|
||||||
$ make -w
|
$ make -w
|
||||||
|
|
||||||
2. Copy lms-audio.xml to the working directory or set the project working directoroy to the folder containing this file
|
2. Copy lms-audio.xml to the working directory or set the project working directory to the folder containing this file
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -35,13 +35,13 @@ Instalamos los paquetes necesarios: $ apt-get install ola
|
||||||
|
|
||||||
Este proceso sólo es necesario la primera vez que se ejecuta LMS Audio.
|
Este proceso sólo es necesario la primera vez que se ejecuta LMS Audio.
|
||||||
|
|
||||||
a. Inicia LMS Audio ejecutando el archivo "libremediaserver-audio"
|
a. Inicia LMS Audio ejecutando el script runlms.sh
|
||||||
|
|
||||||
b. Pincha en la opción "OLA setup" en el menu File.
|
b. Pincha en la opción "OLA setup" en el menu File.
|
||||||
|
|
||||||
c. Pincha en el botón "add universe"
|
c. Se abrirá la ventana de confiiguración de OLA. Pincha en el botón "add universe"
|
||||||
|
|
||||||
d. Marca en la casilla del protocolo de red o dispositivo por el que quieras introducir datos. Asegúrate de que en "Direction" sea "input".
|
d. Marca en la casilla del protocolo de red o dispositivo por el que quieras introducir datos. Asegúrate de que el campo "Direction" sea "input".
|
||||||
|
|
||||||
Si el protocolo elegido es ArtNet en "Universe Id" introduce el número del universo ArtNet por el que quieres recibir. La Net y la Subnet de Artnet se pueden cambiar en el archivo ~/.ola/ola-artnet.conf, por defecto es la Net 0 y la SubNet 0.
|
Si el protocolo elegido es ArtNet en "Universe Id" introduce el número del universo ArtNet por el que quieres recibir. La Net y la Subnet de Artnet se pueden cambiar en el archivo ~/.ola/ola-artnet.conf, por defecto es la Net 0 y la SubNet 0.
|
||||||
|
|
||||||
|
@ -49,8 +49,6 @@ Puedes confirmar que está llegando información pinchando en el universo en el
|
||||||
|
|
||||||
Si quieres usar el mismo ordenador como mesa y media server edit el archivo ~/.ola/ola-artnet.conf y define la opción use_loopback a true.
|
Si quieres usar el mismo ordenador como mesa y media server edit el archivo ~/.ola/ola-artnet.conf y define la opción use_loopback a true.
|
||||||
|
|
||||||
e. Pincha en el menu File -> Change Media Path y elige el directorio donde estén tus medias.
|
e. La configuración de los universos de ola a los que LMS Audio escucha, el directorio donde se encuentran los archivos a reproducir, y las direcciones DMX de las capas se configuran en el fichero lms-audio.xlm. En el campo Universe tienes que poner el universo de ola que has definido anteriormente. Edita este fichero con un editor de texto plano y reinicia el programa. De momento no se puede configurar mediante GUI.
|
||||||
|
|
||||||
f. La configuración de los universos de ola a los que LMS Audio escucha y las direcciones DMX de las capas se configuran en el fichero lms-audio.xlm. En el campo Universe tienes que poner el universo de ola que has definido anteriormente. Edita este fichero con un editor de texto plano y reinicia el programa. De momento no se puede configurar mediante GUI.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef DEFINES_H
|
#ifndef DEFINES_H
|
||||||
#define DEFINES_H
|
#define DEFINES_H
|
||||||
|
|
||||||
#define VERSION "LibreMediaServer-Audio 0.1.1"
|
#define VERSION "LibreMediaServer-Audio 0.1.2"
|
||||||
#define COPYRIGHT "(C) 2014 Santi Norena libremediaserver@gmail.com"
|
#define COPYRIGHT "(C) 2014 Santi Norena libremediaserver@gmail.com"
|
||||||
#define LICENSE "GPL 3 License. See LICENSE.txt and credits.txt for details"
|
#define LICENSE "GPL 3 License. See LICENSE.txt and credits.txt for details"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
Pure Media Server - A Media Server Sotfware for stage and performing
|
Libre Media Server - A Media Server Sotfware for stage and performing
|
||||||
|
|
||||||
Copyright (C) 2012-2013 Santi Noreña libremediaserver@gmail.com
|
Copyright (C) 2012-2014 Santi Noreña libremediaserver@gmail.com
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -16,14 +16,11 @@
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libremediaserver-audio.h"
|
#include "libremediaserver-audio.h"
|
||||||
|
|
||||||
// QTextEdit * libreMediaServerAudio::textEdit = 0;
|
// QTextEdit * libreMediaServerAudio::textEdit = 0;
|
||||||
|
|
||||||
/**
|
|
||||||
/ Constructor
|
|
||||||
*/
|
|
||||||
|
|
||||||
libreMediaServerAudio::libreMediaServerAudio(QStringList args, QWidget *parent)
|
libreMediaServerAudio::libreMediaServerAudio(QStringList args, QWidget *parent)
|
||||||
: QMainWindow(parent)
|
: QMainWindow(parent)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Libre Media Server - A Media Server Sotfware for stage and performing
|
Libre Media Server - A Media Server Sotfware for stage and performing
|
||||||
Copyright (C) 2012-2013 Santiago Noreña libremediaserver@gmail.com
|
Copyright (C) 2012-2014 Santiago Noreña libremediaserver@gmail.com
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QWebView>
|
#include <QWebView>
|
||||||
//#include <QUrl>
|
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
#include <QTextEdit>
|
#include <QTextEdit>
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ private:
|
||||||
|
|
||||||
// void MessageHandler(QtMsgType type, const QMessageLogContext &logcontext, const QString &msg);
|
// void MessageHandler(QtMsgType type, const QMessageLogContext &logcontext, const QString &msg);
|
||||||
AudioMasterWidget *amw;
|
AudioMasterWidget *amw;
|
||||||
// AudioWidget *aw;
|
|
||||||
olaThread *ola;
|
olaThread *ola;
|
||||||
|
|
||||||
void open_start();
|
void open_start();
|
||||||
|
@ -73,7 +73,7 @@ public slots:
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
// void loadbang();
|
|
||||||
void olasetup();
|
void olasetup();
|
||||||
void dmxInput(int layer, int channel, int value);
|
void dmxInput(int layer, int channel, int value);
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@ TARGET = libremediaserver-audio
|
||||||
|
|
||||||
QT += webkitwidgets widgets
|
QT += webkitwidgets widgets
|
||||||
|
|
||||||
#CONFIG += release
|
CONFIG += release
|
||||||
DESTDIR = ./debug
|
DESTDIR = ./release
|
||||||
|
|
||||||
HEADERS += libremediaserver-audio.h \
|
HEADERS += libremediaserver-audio.h \
|
||||||
medialibrary.h \
|
medialibrary.h \
|
||||||
|
|
Loading…
Add table
Reference in a new issue