Skip to content

Commit

Permalink
Merge pull request #438 from Unmanic/pr-encoder_audio_aac
Browse files Browse the repository at this point in the history
[encoder_audio_aac] v0.0.7
  • Loading branch information
Josh5 authored Jan 30, 2025
2 parents 65471cc + 63a0b4e commit cb10cea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions source/encoder_audio_aac/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

**<span style="color:#56adda">0.0.6</span>**
- add check in calculate_bitrate and custom_stream_mapping to set channels to 6 if channels > 6. ffmpeg cannot encode > 6 channels of aac audio.

**<span style="color:#56adda">0.0.6</span>**
- add 'ac' parameter to ffmpeg command to ensure proper channel_layout field for compatiability with normalization plugin to avoid unsupported channel layout error

Expand Down
2 changes: 1 addition & 1 deletion source/encoder_audio_aac/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"on_worker_process": 0
},
"tags": "audio,encoder,ffmpeg,library file test",
"version": "0.0.6"
"version": "0.0.7"
}
4 changes: 4 additions & 0 deletions source/encoder_audio_aac/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ def set_default_values(self, settings, abspath, probe):
@staticmethod
def calculate_bitrate(stream_info: dict):
channels = stream_info.get('channels', 2)
if int(channels) > 6:
channels = 6
return int(channels) * 64

def test_stream_needs_processing(self, stream_info: dict):
Expand All @@ -152,6 +154,8 @@ def custom_stream_mapping(self, stream_info: dict, stream_id: int):
# Use 64K for the bitrate per channel
calculated_bitrate = self.calculate_bitrate(stream_info)
channels = int(stream_info.get('channels'))
if int(channels) > 6:
channels = 6
stream_encoding += [
'-ac:a:{}'.format(stream_id), '{}'.format(channels), '-b:a:{}'.format(stream_id), "{}k".format(calculated_bitrate)
]
Expand Down

0 comments on commit cb10cea

Please sign in to comment.