Bliss 2 sampler
-
- KVRist
- 122 posts since 11 Mar, 2015
Hey George,
Thanks for getting back to me, I've worked it out by setting my clock back and installing previous versions. The track was older than I thought and was made with an early beta that didn't recall/save Macros correctly, once I reconfigured them the track played back OK. Once I've got this track sorted I'll try and investigate the 1.0.4 CPU issue further, it doesn't seem to be happening with versions prior to that.
Thanks for getting back to me, I've worked it out by setting my clock back and installing previous versions. The track was older than I thought and was made with an early beta that didn't recall/save Macros correctly, once I reconfigured them the track played back OK. Once I've got this track sorted I'll try and investigate the 1.0.4 CPU issue further, it doesn't seem to be happening with versions prior to that.
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Very good news. Thanks for the quick follow up. 
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Bliss 1.1 Release Candidate is now available for registered customers to test until final 1.1 at our Members Area.


Changelog


Changelog
- Mac standalone app.
- Multi-out support selectable per zone (1 Master with effects and 4 individual outs).
- Disk browser for searching and loading preset files on disk with pre hear and sample preview with metadata.
- Full keyboard driven controls navigation and editing (move between controls with TAB / Shift+TAB, set knobs and sliders with arrows, enter value in text with ENTER).
- Better focus indication on controls.
- Added resample zone in sample editor.
- Batch rename selected zones in sample editor.
- Prettified balloon parameter display.
- Improved look and feel of wave drawing and GUI controls.
- Fixed crashes loading program from Bliss Online Library with Cubase 8.
- Fixed problems with muting output when switching presets in Cubase 8.
- Fixed EXS24 import with notes stuck using MIDI keyboard.
- Fixed sampling from Arturia SEM V or Spire.
- Fixed sampling from Sonatina Symphonic Orchestra.
- Fixed exporting instruments to sfz as .wav.wav instead of .wav.
- Fixed there is no association between the audio files and the .sfz.
- Fixed replace program dialog appears when drag & drop .zbp file into empty location.
- Fixed sample window gets transparent when no samples are loaded.
- Fixed sample window does not clear itself when no samples are selected.
- Fixed sample window does not fit to performance window when it's set to be opened in the same area.
- Fixed a problem with glide mode button not displaying when enabled.
-
- KVRAF
- 10366 posts since 2 Sep, 2003 from Surrey, UK
Woo hoo!
But 47MB ! Of which I immediately discarded 30 MB. Yes, the download includes Windows, Mac and Linux installers in a single download, but please consider separating them.
But 47MB ! Of which I immediately discarded 30 MB. Yes, the download includes Windows, Mac and Linux installers in a single download, but please consider separating them.
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Yes, Mac installer got bigger due to the new standalone app. Separate downloads will be available very soon.
-
- KVRAF
- 10366 posts since 2 Sep, 2003 from Surrey, UK
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Release Candidate 2 out a minute ago includes separate downloads as well as theme focus fixes. Go download 
-
- KVRAF
- 9521 posts since 6 Oct, 2004
Great list of updates! And thanks for splitting the downloads.
Slow cheap internet helps buy great new software.
Cheers
Slow cheap internet helps buy great new software.
Cheers
-
- KVRist
- 372 posts since 28 Oct, 2005 from Earth
Thanks! Pre-hearing samples on Linux is just great. I have noticed that double clicking on folders in the browser to open them does not work, the Return key does.
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Thanks for the report. Will try to fix for 1.1 final.swindus wrote:Thanks! Pre-hearing samples on Linux is just great. I have noticed that double clicking on folders in the browser to open them does not work, the Return key does.
-
- Banned
- 22457 posts since 5 Sep, 2001
[DELETED]
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Theo, hardware sampling is set to arrive with Bliss 2.0.
-
- KVRer
- 5 posts since 26 Dec, 2010
Hello George, I'm using Windows to sample my VST instruments and then I copy my sampled banks to Linux. I found another problem when trying to load the banks in Bliss (64) 1.04 on Ubuntu 16.04 (using LXDE / Unity / Cinnamon). None of the open/save dialogs are displayed. When running the command sent by Bliss in a terminal the dialog is displayed.George wrote:Send us the crash log + any extra into to bliss@discodsp.com
Can't you try sampling using Windows instead as a temporary workaround?
This dialog problem is now fixed with version 1.1
Code: Select all
/bin/sh /usr/local/bin/zenity --file-selection --title=discoDSP Bliss - Load Plugin --filename=Bliss 2>/dev/nullkarl@karl-Yoga-2-Pro:/usr/local/bin$ cat zenity
Code: Select all
#! /bin/sh
BLISS_DIALOG="N"
VST_PLUGINS_PATH="/usr/local/lib/vst/"
BLISS_BANK_PATH="/home/karl/Documents/discoDSP/Bliss/Library/"
DIALOG_TITLE="discoDSP Bliss -"
DIALOG_MODE="--getopenfilename"
FILE_DIR="."
FILE_FILTER=""
if [ -n "$2" ]; then
if [ "$1" = "--file-selection" ]; then
case "$@" in
*"discoDSP Bliss"*)
BLISS_DIALOG="Y"
;;
esac
fi
fi
if [ "Y" = "${BLISS_DIALOG}" ]; then
case "$@" in
*"Import Bank"*)
DIALOG_TITLE="${DIALOG_TITLE} Import Bank"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbb|Bliss Bank"
;;
*"Save Bank"*)
DIALOG_TITLE="${DIALOG_TITLE} Save Bank"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbb|Bliss Bank"
;;
*"Save Encrypted Bank"*)
DIALOG_TITLE="${DIALOG_TITLE} Save Encrypted Bank"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbb|Encrypted Bliss Bank"
;;
*"Import Program"*)
DIALOG_TITLE="${DIALOG_TITLE} Import Program"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbp|Bliss Program"
;;
*"Save Program"*)
DIALOG_TITLE="${DIALOG_TITLE} Save Program"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbp|Bliss Program"
;;
*"Save Encrypted Program"*)
DIALOG_TITLE="${DIALOG_TITLE} Save Encypted Program"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.zbp|Encrypted Bliss Program"
;;
*"Export Sfz Program"*)
DIALOG_TITLE="${DIALOG_TITLE} Export Sfz Program"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.sfz|SFZ Audio File"
;;
*"Import Sample"*)
DIALOG_TITLE="${DIALOG_TITLE} Import Sample/RAW"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.wav *.bwf *.aiff *.aif *.flac *.ogg *.mp3 *.raw|Audio File"
;;
*"Browse Sample"*)
DIALOG_TITLE="${DIALOG_TITLE} Browse Sample/RAW"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.wav *.bwf *.aiff *.aif *.flac *.ogg *.mp3 *.raw|Audio File"
;;
*"Load Plugin"*)
DIALOG_TITLE="${DIALOG_TITLE} Load Plugin"
FILE_DIR="${VST_PLUGINS_PATH}"
FILE_FILTER="*.so *.dll|VST Plugin Files"
;;
*"Export Sample"*)
DIALOG_TITLE="${DIALOG_TITLE} Export Samples"
DIALOG_MODE="--getsavefilename"
FILE_DIR="${BLISS_BANK_PATH}"
FILE_FILTER="*.wav|WAV Audio File"
;;
*)
DIALOG_TITLE="${DIALOG_TITLE} Import File"
FILE_DIR="Bliss"
FILE_FILTER="*.*"
;;
esac
kdialog --title "${DIALOG_TITLE}" ${DIALOG_MODE} "${FILE_DIR}" "${FILE_FILTER}" 2>/dev/null
else
/usr/bin/zenity $@
fi
Last edited by MrLove on Wed Jul 27, 2016 5:27 am, edited 1 time in total.
-
- KVRAF
- Topic Starter
- 5632 posts since 18 Jul, 2002
Thanks, will add to the bugfix list.
