VNAPNIC/flutter-wowza

Where to find applicationName

Closed this issue · 3 comments

Where to find applicationName

Configure the broadcast's connection to a Wowza Streaming Cloud live stream
In Wowza Streaming Cloud:
If you haven't already, add a live stream.
After adding the live stream, click the Overview tab.
Scroll down to Source Connection Information.
Note the source connection values. For example

cloud-connectioninfo

i have another problem, the camera overlay only show black screen

u need to set size it
Example:

SizedBox(
                height: 720,
                width: 1280,
                child: WOWZCameraView(
                  androidLicenseKey: "GOSK-xxxx-xxxx-xxxx-xxxx-xxxx",
                  iosLicenseKey: "GOSK-xxxx-xxxx-xxxx-xxxx-xxxx",
                  controller: controller,
                  statusCallback: (status) {
                    print(
                        "status: ${status.mState} | ${status.isStarting()} | ${status.isReady()}");
                  },
                  broadcastStatusCallback: (broadcastStatus) {
                    print(
                        "status: ${broadcastStatus.state.toString()} | ${broadcastStatus.message}");
                  },
                ),
              ),