Ejemplo n.º 1
0
 internal Track(TempFile tempFile)
 {
     file = tempFile;
     tags = BassTags.BASS_TAG_GetFromFile(file.Path, true, true);
 }
Ejemplo n.º 2
0
        private void TrackAdded(TempFile tempFile)
        {
            Track track = new Track(tempFile);
            if (track != null && track.Tags != null)
            {
                Playlist.Add(track);

                TrackAdd(track);

                if (!Audio.Playing)
                {
                    Next();
                }
            }
        }