other fields

This commit is contained in:
Seth Call 2020-11-29 21:22:00 -06:00
parent 642a82f36a
commit 6c865de3e0
1 changed files with 9 additions and 5 deletions

View File

@ -25,11 +25,12 @@ module JamRuby
can_use_video: false,
can_record_video: false,
can_record_wave: false,
video_resolution: 0,
video_resolution: 1,
audio_max_bitrate: 1, # 128
can_broadcast: false,
broadcasting_type: 3,
max_players: 4
max_players: 4,
pro_audio: false
}
@ -44,7 +45,8 @@ module JamRuby
audio_max_bitrate: 2, #192
can_broadcast: true,
broadcasting_type: 3,
max_players: 6
max_players: 6,
pro_audio: false
}
GOLD_PLAN = {
@ -58,7 +60,8 @@ module JamRuby
audio_max_bitrate: 3, #256
can_broadcast: true,
broadcasting_type: 3,
max_players: nil
max_players: nil,
pro_audio: true
}
PLATINUM_PLAN = {
@ -72,7 +75,8 @@ module JamRuby
audio_max_bitrate: 5, #512
can_broadcast: true,
broadcasting_type: 3,
max_players: nil
max_players: nil,
pro_audio: true
}
def self.rules(plan_code)