Skip to content

Common data container for singing synthesis softwares.

License

Notifications You must be signed in to change notification settings

cocotone/utaformatix-data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

UtaFormatix Data (.ufdata)

Common data container for singing synthesis softwares used by UtaFormatix.

Language-specific interfaces

Value conventions

The .ufdata format doesn't prescribe detailed specifications for the values it contains, but there are common conventions for some types based on the support of most formats by UtaFormatix:

  1. Tick: Each tick represents 1/480 of a beat, aligning with a typical MIDI resolution of 480 ticks per beat. This resolution facilitates precise timing details in musical data. If working with other formats (e.g., Standard MIDI) that use different resolutions, it is crucial to convert tick resolutions accordingly.

  2. Key: The key values correspond to MIDI key numbers, with C4 = 60. This standard provides a reference point for middle C, facilitating an understanding of note pitches in relation to standard musical notation.

  3. Lyric and Phoneme: There are no fixed standards for lyrics and phonemes; their representations can vary across different formats.

Data structure

The data is stored as JSON with file extension .ufdata.

Sample

{
  "formatVersion": 1,
  "project": {
    "name": "project name",
    "tracks": [
      {
        "name": "track 1",
        "notes": [
          {
            "key": 60,
            "tickOn": 1920,
            "tickOff": 2400,
            "lyric": "",
            "phoneme": "a"
          },
          {
            "key": 61,
            "tickOn": 2400,
            "tickOff": 2880,
            "lyric": "",
            "phoneme": null
          }
        ],
        "pitch": {
          "ticks": [
            1920,
            1925,
            1930
          ],
          "values": [
            62.8,
            null,
            62.90257538448604
          ],
          "isAbsolute": true
        }
      },
      {
        "name": "track 2",
        "notes": [
          {
            "key": 60,
            "tickOn": 1920,
            "tickOff": 2400,
            "lyric": "",
            "phoneme": "a"
          }
        ]
      }
    ],
    "timeSignatures": [
      {
        "measurePosition": 0,
        "numerator": 4,
        "denominator": 4
      }
    ],
    "tempos": [
      {
        "tickPosition": 0,
        "bpm": 118
      }
    ],
    "measurePrefix": 0
  }
}

Root (Document) object

Variable name Description Type
formatVersion The version code of the ufdata structure int32
project The project content. See Project object for details object

Project object

Variable name Description Type
name Project name string
tracks Track list. See Track object for details array<object>
timeSignatures Time signatures. See Time signature object for details array<object>
tempos Tempo changes. See Tempo object for details array<object>
measurePrefix Count of measure prefixes (measures that cannot contain notes, restricted by some editors) int32

Track object

Variable name Description Type
name Track name string
notes Note list. See Note object for details array<object>
pitch Pitch data. See Pitch object for details nullable object

Note object

Variable name Description Type
key Semitone value of the note's key (Center C = 60) int32
tickOn Tick position of the note's start int64
tickOff Tick position of the note's end int64
lyric Lyric string
phoneme Phoneme (if available) string

Pitch object

Only points with changed values are included.

e.g. [(1, 1.0), (4, 3.0)] implies ticks between (in this case, 2 and 3) have the same value of 1.0.

Variable name Description Type
ticks Tick positions of the data points array<int64>
values Semitone values of the data points. When isAbsolute is true, null can be included to represent default values. array<double?>
isAbsolute Whether the pitch values are absolute or relative to the note's key bool

Time signature object

Variable name Description Type
measurePosition Measure (bar) position of the time signature int32
numerator Beats per measure int32
denominator Note value per beat int32

Tempo object

Variable name Description Type
tickPosition Tick position of the tempo change int64
bpm Tempo in beats-per-minute int32

About

Common data container for singing synthesis softwares.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 39.8%
  • C# 33.9%
  • Kotlin 13.4%
  • TypeScript 12.9%