Bliss 2 sampler

VST, AU, AAX, CLAP, etc. Plugin Virtual Instruments Discussion
Locked New Topic
RELATED
PRODUCTS
Bliss$99.00Buy

Post

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.

Post

Very good news. Thanks for the quick follow up. :)

Post

Bliss 1.1 Release Candidate is now available for registered customers to test until final 1.1 at our Members Area.

Image

Image

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.

Post

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.
DarkStar, ... Interesting, if true
Inspired by ...

Post

Yes, Mac installer got bigger due to the new standalone app. Separate downloads will be available very soon.

Post

:tu:
DarkStar, ... Interesting, if true
Inspired by ...

Post

Release Candidate 2 out a minute ago includes separate downloads as well as theme focus fixes. Go download :)

Post

Great list of updates! And thanks for splitting the downloads.
Slow cheap internet helps buy great new software.
Cheers

Post

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.

Post

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.
Thanks for the report. Will try to fix for 1.1 final.

Post

Works in RC2 now, thanks. Got another problem. I cannot zoom with the mouse in the sample editor. What is the modifier key for zooming? I tried all combinations.

Post

[DELETED]

Post

Theo, hardware sampling is set to arrive with Bliss 2.0.

Post

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?
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.

This dialog problem is now fixed with version 1.1 :tu:

Code: Select all

/bin/sh /usr/local/bin/zenity --file-selection --title=discoDSP Bliss - Load Plugin --filename=Bliss 2>/dev/null
I created a workaround that uses kdialog for Bliss dialogs to solve my problem (using hard coded vst plugins and bank paths).

karl@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.

Post

Thanks, will add to the bugfix list.

Locked

Return to “Instruments”