How to start video and audio streaming with Android SDL - CustomSDL/sdl_android_launcher GitHub Wiki

Note: Emulator should already be started at this point. HMI should be started and connected according to guide at this step.

Make sure you have started deploy server from sdl_hmi folder: ./deploy_server.sh

  1. If SDL library is running on emulator, you should perform some extra steps to allow external TCP connections. First of all, locate ADB tool which is by default in your SDK folder:

Android/Sdk/platform-tools

  1. To enable video streaming, run the following command from terminal:

./adb forward tcp:5050 tcp:5050

This will redirect TCP port 5050 from your host machine to 5050 port of your emulated device.

  1. To enable audio streaming, run the following command from terminal:

./adb forward tcp:5080 tcp:5080

This will redirect TCP port 5080 from your host machine to 5080 port of your emulated device.

  1. Register application with App HMI Type PROJECTION or NAVIGATION, and make sure that HMI Level is FULL:

navi_app_full

  1. Once app is activated, in your SPT open side menu and click Streaming Services.

  2. Start audio streaming by clicking start secure/unsecure audio service.

WebHMI shows prompt: "Would you like to start Audio Stream?". Respond with yes to the HMI Prompt.

Mobile app starts the audio streaming:

audio_stream

  1. Start video streaming by clicking start secure/unsecure video service.

WebHMI shows prompt: "Would you like to start Video Stream?". Respond with yes to the HMI Prompt.

Mobile app starts the video streaming:

video_streaming