pan y pitchs faders horizontales, funciona varias instancias con

multidispositivo y patcheable en jack.
This commit is contained in:
snt 2024-05-10 20:03:14 +02:00
parent 7631e54d51
commit 103a33820e
12 changed files with 188 additions and 105 deletions

View file

@ -13,8 +13,8 @@ v 0.2.0 Antígona (26/05/2024)
+ Pan.
+ Show faders values. New SliderGroup class.
+ Entry Point 16 bits.
+ Refactor AudioMasterWidget to AudioDMXReceptionWidget.
+ Read mp3, flac, wav (mp3 has given some errors seeking cursor...).
+ Refactor AudioMasterWidget to dmxWidget.
+ Read mp3, flac, wav (mp3 has given some errors seeking cursors...). Audio Engine is working at 48Khz and 32 bits pcm float, if media files are encoding at same configuration, it saves a resampling operation later live.
+ Removed settings dialog, only read xml conf file at startup.
+ Real dynamic variable number of layers based on conf file setting.
+ OlaThread send double channels (volume, entry point, load media) only once for each dmx frame buffer.
@ -23,8 +23,12 @@ v 0.2.0 Antígona (26/05/2024)
+ New Status "Iddle" in playbacks if is not loaded.
+ New DMX personality version, better sort for audio needs (first load media, set vol, pan, etc, last playback order);
+ Refresh layer values when it loads a new sound file.
+ No QtSignals for sending data, better performance about 20% in my machine. Now, libremediaserver only updates values in AudioWidget, ui refresh is doing with a timer in audiowidget, so there is not problems between graphical and ola thread (the callback).
+ No QtSignals for sending data, better performance about 20% in my machine. Now, libremediaserver only updates values in AudioWidget, ui refresh is doing with a timer in audiowidget, so there is not problems between graphical and ola thread (the callback). Signals are used only from Ui to libreMediaServer to notify user interactions and Qtimers.
+ Load media files from ui clicking in the media labels.
+ New Play Modes:
- Play all medias found in one folder.
- Play all medias in one folder consecutevily.
- Play all medias in one folder randomly.
v 0.1.3 Leúcade (19/04/2024)