VitalDB to EDF converter

vital2edf converts a file in VitalDB format to EDF (European Data Format).

VitalDB files are compressed using GZIP and they need to be decompressed first
before using this converter. For example, the command:

gunzip -k -S .vital 0053.vital

will create a new file 0053 which is the uncompressed VitalDB file.
Now run:

vital2edf 0053

which will create the file 0053.edf.
After that, the decompressed file 0053 is no longer needed and can be deleted if you wish.


Download

Compiling and installing on Debian Linux and derivatives (Ubuntu, Mint, Raspberry Pi OS, etc.)

Simply execute the following commands in a terminal:


  sudo apt update
  sudo apt install gcc make git
  git clone https://gitlab.com/Teuniz/vital2edf.git
  cd vital2edf
  make -j8


Compiling and installing on Fedora

Simply execute the following commands in a terminal:


  sudo dnf update
  sudo dnf install gcc make git
  git clone https://gitlab.com/Teuniz/vital2edf.git
  cd vital2edf
  make -j8


Compiling and installing on openSUSE

Simply execute the following commands in a terminal:


  sudo zypper refresh
  sudo zypper install -t pattern devel_basis devel_C_C++
  git clone https://gitlab.com/Teuniz/vital2edf.git
  cd vital2edf
  make -j8


Usage


  gunzip -k -S .vital 0053.vital

  vital2edf 0053


More info