Skip to content

Instantly share code, notes, and snippets.

@larryluoo
Created June 17, 2022 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larryluoo/c5324789d211e984474c19e076c1184d to your computer and use it in GitHub Desktop.
Save larryluoo/c5324789d211e984474c19e076c1184d to your computer and use it in GitHub Desktop.
1v1Layout
/** Create an input stream list. */
ArrayList<ZegoMixerInput> inputList = new ArrayList<>();
/** Configue the first input stream, including the streamID (the real ID of the input stream), input type, layout, etc.*/
ZegoMixerInput input_1 = new ZegoMixerInput("streamID_1", ZegoMixerInputContentType.VIDEO, new Rect(0, 0, 180, 640));
inputList.add(input_1);
/** Configue the second input stream. */
ZegoMixerInput input_2 = new ZegoMixerInput("streamID_2", ZegoMixerInputContentType.VIDEO, new Rect(180, 0, 360, 640));
inputList.add(input_2);
/** Set up the input steam list for the stream mixing task. */
task.setInputList(inputList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment