Skip to content

Commit

Permalink
Merge pull request #130 from pabloromeo/experimental
Browse files Browse the repository at this point in the history
Fix for #128
  • Loading branch information
pabloromeo authored Apr 13, 2022
2 parents bf07838 + 9051db2 commit 7c3c81e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pms/app/transcoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ if (TRANSCODE_OPERATING_MODE == 'local') {
}

let newArgs = process.argv.slice(2).map((v) => {
return v.replace('127.0.0.1:', `${PMS_IP}:`)
return v
.replace('127.0.0.1:', `${PMS_IP}:`)
.replace('aac_lc', 'aac'); // workaround for error -> Unknown decoder 'aac_lc'
})

if (TRANSCODER_VERBOSE == '1') {
Expand Down

0 comments on commit 7c3c81e

Please sign in to comment.