Skip to content

Commit

Permalink
Added aac cutoff frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
Vouk committed Dec 21, 2023
1 parent af22b36 commit c594c5c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
19 changes: 18 additions & 1 deletion Core/resources/encoders/aac.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,23 @@
}
}
]
},
{
"id": "aac.advanced",
"class": "advanced",
"properties": [
{
"id": "cutoff",
"parameter": "cutoff",
"control": {
"type": "integer",
"maximum": 65535,
"minimum": 1,
"singleStep": 1000,
"value": 20000
}
}
]
}
]
}
}
4 changes: 2 additions & 2 deletions Core/resources/encoders/libfdk_aac.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@
"class": "advanced",
"properties": [
{
"id": "libfdk_aac.misc.cutoff",
"id": "cutoff",
"parameter": "cutoff",
"control": {
"type": "integer",
"maximum": 65535,
"minimum": 1,
"singleStep": 1000,
"value": 17000
"value": 20000
}
},
{
Expand Down
3 changes: 3 additions & 0 deletions Core/resources/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1791,6 +1791,9 @@
"aac.standard.bitrate._item_6": "384 kbit/s",
"aac.standard.bitrate._item_7": "448 kbit/s",
"aac.standard.bitrate._item_8": "512 kbit/s",
"aac.misc": "Miscellaneous",
"aac.misc.cutoff._label": "Cut-Off frequency (in Hz)",
"aac.misc.cutoff._description": "Cut-Off frequency (in Hz) - or 0 for default",
"ac3.standard": "Standard",
"ac3.standard.bitrate._label": "Bitrate",
"ac3.standard.bitrate._description": "The bitrate used for encoding audio. Higher bitrate implies better quality.",
Expand Down

0 comments on commit c594c5c

Please sign in to comment.