- Moved DMX reading and file selection from Pure Data to the GUI.

- Added udserver external. All the communication between pure data
process and GUI now is done through Unix Domain Sockets.
- Only video files are working at the moment.
- Creating thumbnails now is done in the start routine.
- CITP/MSEx and DMX reading is started automatically in the start
routine.
- The dmx settings are reading from an xml file. Support for edit
through the GUI and save and open files in next commits. Also it should
integrates the window configuration.
- Audio has been cutted. It will be supported in a separate application.
This commit is contained in:
Santi Noreña 2013-07-02 18:36:25 +02:00
parent 333c40f188
commit bbe8a169f2
840 changed files with 1743 additions and 415349 deletions

View file

@ -1,9 +0,0 @@
xrandr -q
xrandr --output LVDS --pos 1024x0
xrandr --output VGA-0 --mode 1024x768
xrandr --output HDMI1 --mode 720x576
xrandr --output VGA-0 --right-of LVDS
768x576 píxeles
1280x720
1920x1080

View file

@ -1,21 +0,0 @@
#!/bin/bash
# make_thumbs v0.0.2
# Script que genera thumbnails de todas las películas en el directorio Media
# Copyright Santi Noreña 2012-2013
# GPL License
cd $1 ||{
echo "Can not change to directory." $1
exit $E_XCD;
}
cd video
for folder in $(find -maxdepth 1 -type d); do
rm $folder/thumbs/*
mkdir $folder/thumbs
done
for file in $(find . -maxdepth 2 -mindepth 2 -type f ); do
avconv -i $file -f image2 -frames:v 1 -s 64x46 -vcodec mjpeg $file.jpg
done
for folder in $(find -maxdepth 1 -type d); do
mv $folder/*.jpg $folder/thumbs
done
exit 0

View file

@ -1,2 +0,0 @@
xrandr --output VGA-0 --off