|
|
@ -149,6 +149,16 @@ class FfxController():
|
|
|
|
f"channelmap={FfxController.CHANNEL_MAP_5_1}",
|
|
|
|
f"channelmap={FfxController.CHANNEL_MAP_5_1}",
|
|
|
|
f"-b:a:{trackSubIndex}",
|
|
|
|
f"-b:a:{trackSubIndex}",
|
|
|
|
self.__context['bitrates']['ac3']]
|
|
|
|
self.__context['bitrates']['ac3']]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -ac 5 ?
|
|
|
|
|
|
|
|
if trackAudioLayout == AudioLayout.LAYOUT_5_0:
|
|
|
|
|
|
|
|
audioTokens += [f"-c:a:{trackSubIndex}",
|
|
|
|
|
|
|
|
'libopus',
|
|
|
|
|
|
|
|
f"-filter:a:{trackSubIndex}",
|
|
|
|
|
|
|
|
'channelmap=channel_layout=5.0',
|
|
|
|
|
|
|
|
f"-b:a:{trackSubIndex}",
|
|
|
|
|
|
|
|
self.__context['bitrates']['ac3']]
|
|
|
|
|
|
|
|
|
|
|
|
trackSubIndex += 1
|
|
|
|
trackSubIndex += 1
|
|
|
|
return audioTokens
|
|
|
|
return audioTokens
|
|
|
|
|
|
|
|
|
|
|
|