Install the wowza IDE (form https://www.wowza.com/wowzaide4/)
The have some event module like onAppStart,onHTTPSessionCreate…
But,not found OnHTTPMPEGDashStreamingSession in the default module
Install the wowza IDE (form https://www.wowza.com/wowzaide4/)
The have some event module like onAppStart,onHTTPSessionCreate…
But,not found OnHTTPMPEGDashStreamingSession in the default module
Here is how you can access that module @sd gds. Let me know if it works for you.
package com.wowza.test;
import com.wowza.wms.httpstreamer.mpegdashstreaming.httpstreamer.HTTPStreamerSessionMPEGDash;
import com.wowza.wms.module.*;
public class MyModule extends ModuleBase
{
public void onHTTPMPEGDashStreamingSessionCreate(HTTPStreamerSessionMPEGDash httpMPEGDashStreamingSession) {
}
}