mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Update default transcoding commands (#2325)
Changes the default transcoding commands to only use the first audio stream, instead of the first arbitrary stream. Co-authored-by: Deluan Quintão <deluan@navidrome.org>
This commit is contained in:
parent
be12c12b28
commit
9b7fac5147
1 changed files with 3 additions and 3 deletions
|
@ -94,19 +94,19 @@ var (
|
||||||
"name": "mp3 audio",
|
"name": "mp3 audio",
|
||||||
"targetFormat": "mp3",
|
"targetFormat": "mp3",
|
||||||
"defaultBitRate": 192,
|
"defaultBitRate": 192,
|
||||||
"command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -",
|
"command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -f mp3 -",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "opus audio",
|
"name": "opus audio",
|
||||||
"targetFormat": "opus",
|
"targetFormat": "opus",
|
||||||
"defaultBitRate": 128,
|
"defaultBitRate": 128,
|
||||||
"command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -c:a libopus -f opus -",
|
"command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -c:a libopus -f opus -",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aac audio",
|
"name": "aac audio",
|
||||||
"targetFormat": "aac",
|
"targetFormat": "aac",
|
||||||
"defaultBitRate": 256,
|
"defaultBitRate": 256,
|
||||||
"command": "ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -c:a aac -f adts -",
|
"command": "ffmpeg -i %s -map 0:a:0 -b:a %bk -v 0 -c:a aac -f adts -",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue