|
|
|
@ -31,6 +31,7 @@ const details = (): IpluginDetails => ({
|
|
|
|
'eac3',
|
|
|
|
'eac3',
|
|
|
|
'dca',
|
|
|
|
'dca',
|
|
|
|
'flac',
|
|
|
|
'flac',
|
|
|
|
|
|
|
|
'libopus',
|
|
|
|
'mp2',
|
|
|
|
'mp2',
|
|
|
|
'libmp3lame',
|
|
|
|
'libmp3lame',
|
|
|
|
'truehd',
|
|
|
|
'truehd',
|
|
|
|
@ -192,6 +193,10 @@ const plugin = (args: IpluginInputArgs): IpluginOutputArgs => {
|
|
|
|
audioCodec = 'mp3';
|
|
|
|
audioCodec = 'mp3';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (audioEncoder === 'libopus') {
|
|
|
|
|
|
|
|
audioCodec = 'opus';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const addedOrExists = attemptMakeStream({
|
|
|
|
const addedOrExists = attemptMakeStream({
|
|
|
|
args,
|
|
|
|
args,
|
|
|
|
langTag,
|
|
|
|
langTag,
|
|
|
|
|