mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
19 lines
474 B
Dart
19 lines
474 B
Dart
import 'package:spotube/services/sourced_track/models/source_info.dart';
|
|
import 'package:spotube/services/sourced_track/models/source_map.dart';
|
|
|
|
enum SourceCodecs {
|
|
m4a._("M4a (Best for downloaded music)"),
|
|
weba._("WebA (Best for streamed music)\nDoesn't support audio metadata");
|
|
|
|
final String label;
|
|
const SourceCodecs._(this.label);
|
|
}
|
|
|
|
enum SourceQualities {
|
|
high,
|
|
medium,
|
|
low,
|
|
}
|
|
|
|
typedef SiblingType<T extends SourceInfo> = ({T info, SourceMap? source});
|