Skip to content

Commit

Permalink
set channels to 6 if > 6
Browse files Browse the repository at this point in the history
  • Loading branch information
yajrendrag committed Jul 24, 2024
1 parent 11eaa1c commit cc4fab1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions source/encoder_audio_libfdk_aac/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

**<span style="color:#56adda">0.0.8</span>**
- set channels to 6 if channels > 6

**<span style="color:#56adda">0.0.7</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_libfdk_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.7"
"version": "0.0.8"
}
1 change: 1 addition & 0 deletions source/encoder_audio_libfdk_aac/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ 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 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 cc4fab1

Please sign in to comment.