old mode 100644
new mode 100755
|  |  |  | 
|---|
|  |  |  | return hookSubscribe; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static HookSubscribeForRtpServerTimeout on_rtp_server_timeout(String stream, String ssrc, String mediaServerId) { | 
|---|
|  |  |  | HookSubscribeForRtpServerTimeout hookSubscribe = new HookSubscribeForRtpServerTimeout(); | 
|---|
|  |  |  | JSONObject subscribeKey = new com.alibaba.fastjson2.JSONObject(); | 
|---|
|  |  |  | subscribeKey.put("stream_id", stream); | 
|---|
|  |  |  | subscribeKey.put("ssrc", ssrc); | 
|---|
|  |  |  | subscribeKey.put("mediaServerId", mediaServerId); | 
|---|
|  |  |  | hookSubscribe.setContent(subscribeKey); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | return hookSubscribe; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static HookSubscribeForServerStarted on_server_started() { | 
|---|
|  |  |  | HookSubscribeForServerStarted hookSubscribe = new HookSubscribeForServerStarted(); | 
|---|
|  |  |  | hookSubscribe.setContent(new JSONObject()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | return hookSubscribe; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public static HookSubscribeForRecordMp4 on_record_mp4(String mediaServerId, String app, String stream) { | 
|---|
|  |  |  | HookSubscribeForRecordMp4 hookSubscribe = new HookSubscribeForRecordMp4(); | 
|---|
|  |  |  | JSONObject subscribeKey = new com.alibaba.fastjson2.JSONObject(); | 
|---|
|  |  |  | subscribeKey.put("app", app); | 
|---|
|  |  |  | subscribeKey.put("stream", stream); | 
|---|
|  |  |  | subscribeKey.put("mediaServerId", mediaServerId); | 
|---|
|  |  |  | hookSubscribe.setContent(subscribeKey); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | return hookSubscribe; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|