internal Track(TempFile tempFile) { file = tempFile; tags = BassTags.BASS_TAG_GetFromFile(file.Path, true, true); }
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(); } } }