public ConversionStatus getConversionStatus() {
String trackName = this.getTrackName();
long progressValue = this.getProgressValue();
long maxProgressValue = this.getMaxProgressValue();
return new ConversionStatus(trackName, progressValue, maxProgressValue);
}