other fields
This commit is contained in:
parent
642a82f36a
commit
6c865de3e0
|
|
@ -25,11 +25,12 @@ module JamRuby
|
||||||
can_use_video: false,
|
can_use_video: false,
|
||||||
can_record_video: false,
|
can_record_video: false,
|
||||||
can_record_wave: false,
|
can_record_wave: false,
|
||||||
video_resolution: 0,
|
video_resolution: 1,
|
||||||
audio_max_bitrate: 1, # 128
|
audio_max_bitrate: 1, # 128
|
||||||
can_broadcast: false,
|
can_broadcast: false,
|
||||||
broadcasting_type: 3,
|
broadcasting_type: 3,
|
||||||
max_players: 4
|
max_players: 4,
|
||||||
|
pro_audio: false
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -44,7 +45,8 @@ module JamRuby
|
||||||
audio_max_bitrate: 2, #192
|
audio_max_bitrate: 2, #192
|
||||||
can_broadcast: true,
|
can_broadcast: true,
|
||||||
broadcasting_type: 3,
|
broadcasting_type: 3,
|
||||||
max_players: 6
|
max_players: 6,
|
||||||
|
pro_audio: false
|
||||||
}
|
}
|
||||||
|
|
||||||
GOLD_PLAN = {
|
GOLD_PLAN = {
|
||||||
|
|
@ -58,7 +60,8 @@ module JamRuby
|
||||||
audio_max_bitrate: 3, #256
|
audio_max_bitrate: 3, #256
|
||||||
can_broadcast: true,
|
can_broadcast: true,
|
||||||
broadcasting_type: 3,
|
broadcasting_type: 3,
|
||||||
max_players: nil
|
max_players: nil,
|
||||||
|
pro_audio: true
|
||||||
}
|
}
|
||||||
|
|
||||||
PLATINUM_PLAN = {
|
PLATINUM_PLAN = {
|
||||||
|
|
@ -72,7 +75,8 @@ module JamRuby
|
||||||
audio_max_bitrate: 5, #512
|
audio_max_bitrate: 5, #512
|
||||||
can_broadcast: true,
|
can_broadcast: true,
|
||||||
broadcasting_type: 3,
|
broadcasting_type: 3,
|
||||||
max_players: nil
|
max_players: nil,
|
||||||
|
pro_audio: true
|
||||||
}
|
}
|
||||||
|
|
||||||
def self.rules(plan_code)
|
def self.rules(plan_code)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue