Ejemplo n.º 1
0
        private static musicInfo getChromeMusicInfo()
        {
            musicInfo currInfo = new musicInfo {
                Title = "Test ChromeMusicInfo Song", Artist = "Test ChromeMusicInfo Artist"
            };

            //TODO implement message passing from chrome to rainmeter, either using chrome native message passing or if that wont work then by opening a websocket.

            return(currInfo);
        }
Ejemplo n.º 2
0
        private static musicInfo getSoundnodeInfo()
        {
            musicInfo currInfo = new musicInfo {
                Title = "Test Soundnode Song", Artist = "Test Soundnode Artist"
            };

            //TODO implement, not 100% sure if/how I will do this as I can never test soundnode with the API always being limited and with sound node not having any sort of API

            return(currInfo);
        }
Ejemplo n.º 3
0
 public Tuple <musicInfo, musicInfo[]> GetSimilar(musicInfo musicInfo)
 {
     throw new NotImplementedException();
 }