mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-06 07:29:42 +00:00
- Add DAB Music as a new high-resolution audio source, including API integration, streaming, and download functionality. - Display the current audio playback quality in the UI. - Improve the performance of the desktop application, specifically its slow startup and shutdown times.
18 lines
502 B
Dart
18 lines
502 B
Dart
import 'package:spotube/models/metadata/metadata.dart';
|
|
import 'package:spotube/provider/metadata_plugin/audio_source.dart';
|
|
import 'package:spotube/provider/metadata_plugin/audio_source/dab_music_audio_source.dart';
|
|
|
|
void main() {
|
|
final plugin = SpotubePlugin(
|
|
name: 'DAB Music Audio Source',
|
|
author: 'jules-for-spotube',
|
|
version: '1.0.0',
|
|
description: 'Adds DAB Music as an audio source for Spotube.',
|
|
audioSources: [
|
|
DabMusicAudioSource(),
|
|
],
|
|
);
|
|
|
|
plugin.run();
|
|
}
|