Skip to content
Snippets Groups Projects
Select Git revision
  • 9f79d5de6adaa729962f7be37e198cd2b7ea048b
  • main default protected
  • V1
3 results

get_spectrogram.py

Blame
  • readMCD.py 197 B
    def readMCD(mcd) :
      col2index = {}
      index2col = {}
    
      curId = 0
    
      for col in mcd.split(' ') :
        col2index[col] = curId
        index2col[curId] = col
        curId += 1
    
      return col2index, index2col