mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
add flac format for audio
This commit is contained in:
parent
c6c02af4ff
commit
69c2f310c2
3 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
AUDIO_FORMATS = ("m4a", "mp3", "opus", "wav")
|
AUDIO_FORMATS = ("m4a", "mp3", "opus", "wav", "flac")
|
||||||
|
|
||||||
|
|
||||||
def get_format(format: str, quality: str) -> str:
|
def get_format(format: str, quality: str) -> str:
|
||||||
|
|
|
@ -113,7 +113,7 @@ export class AppComponent implements AfterViewInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
isAudioType() {
|
isAudioType() {
|
||||||
return this.quality == 'audio' || this.format == 'mp3' || this.format == 'm4a' || this.format == 'opus' || this.format == 'wav';
|
return this.quality == 'audio' || this.format == 'mp3' || this.format == 'm4a' || this.format == 'opus' || this.format == 'wav' || this.format == 'flac';
|
||||||
}
|
}
|
||||||
|
|
||||||
getMatchingCustomDir() : Observable<string[]> {
|
getMatchingCustomDir() : Observable<string[]> {
|
||||||
|
|
|
@ -66,6 +66,13 @@ export const Formats: Format[] = [
|
||||||
{ id: 'best', text: 'Best' },
|
{ id: 'best', text: 'Best' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'flac',
|
||||||
|
text: 'FLAC',
|
||||||
|
qualities: [
|
||||||
|
{ id: 'best', text: 'Best' },
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'thumbnail',
|
id: 'thumbnail',
|
||||||
text: 'Thumbnail',
|
text: 'Thumbnail',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue