Share via


Deploy Azure Video Analyzer to a Windows device using EFLOW

edge icon
Alternatively, check out topics under Create video applications in the service.


Note

Azure Video Analyzer has been retired and is no longer available.

Azure Video Analyzer for Media is not affected by this retirement. It is now rebranded to Azure Video Indexer. Click here to read more.

In this article, you'll learn how to deploy Azure Video Analyzer on an edge device that has IoT Edge for Linux on Windows (EFLOW). Once you have finished following the steps in this document, you will be able to run a pipeline that detects motion in a video and emits such events to the IoT Hub. You can then switch out the pipeline for advanced scenarios and bring the power of Azure Video Analyzer to your Windows-based IoT Edge device.

Prerequisites

Deployment steps

The following depicts the overall flow of the document and in 5 simple steps you should be all set up to run Azure Video Analyzer on a Windows device that has EFLOW:

Diagram of IoT Edge for Linux on Windows (E FLOW).

  1. Install EFLOW on your Windows device using PowerShell.

    Note

    There are two ways to deploy EFLOW (PowerShell and Windows Admin Center) and two ways to provision the virtual machine (manual provisioning using the connection string and manual provisioning using X.509 certificates). Please follow the PowerShell deployment and provision the machine using the connection string from the IoT Hub.

  2. Once EFLOW is set up, type the command Connect-EflowVm into PowerShell (with administrative privilege) to connect. This will bring up a bash terminal within PowerShell to control the EFLOW VM, where you can run Linux commands including utilities like Top and Nano.

    Tip

    To exit the EFLOW VM, type exit within the terminal.

  3. Log into the EFLOW VM via PowerShell and type in the following commands:

    bash -c "$(curl -sL https://aka.ms/ava-edge/prep_device)"

    sudo iptables -I INPUT -p udp -j ACCEPT

    Video Analyzer needs certain local folders for storing application configuration data. For this how-to guide we are leveraging a RTSP simulator that relays a video feed in real time to the Video Analyzer module for analysis. This simulator takes as input pre-recorded video files from an input directory.

    The prep-device script used above automates these tasks away, so you can run one command and have all relevant input and configuration folders, video input files, and user accounts with privileges created seamlessly. Once the command finishes successfully, you should see the following folders created on your edge device.

    • /home/localedgeuser/samples
    • /home/localedgeuser/samples/input
    • /var/lib/videoanalyzer
    • /var/media

    Note the video files (*.mkv) in the /home/localedgeuser/samples/input folder, which serve as input files to be analyzed.

  4. Now that you have the edge device set up, registered to the hub, and running successfully with the correct folder structures created, the next step is to set up the following additional Azure resources and deploy the Video Analyzer module. The following deployment template will take care of the resource creation:

    Deploy to Azure

    The deployment process will take about 20 minutes. Upon completion, you will have certain Azure resources deployed in the Azure subscription, including:

    • Video Analyzer account - This cloud service is used to register the Video Analyzer edge module, and for playing back recorded video and video analytics.
    • Storage account - For storing recorded video and video analytics.
    • Managed Identity - This is the user assigned managed identity used to manage access to the above storage account.
    • IoT Hub - This acts as a central message hub for bi-directional communication between your IoT application, IoT Edge modules and the devices it manages.

    In the template, when asked if you need an edge device, choose the "Use and existing edge device" option since you created both the device and the IoT Hub earlier. You will also be prompted for your IoT Hub name and IoT Edge device ID in the subsequent steps.

    Use Existing Device

    Once finished, you can log back onto the EFLOW VM and run the following command.

    sudo iotedge list

    You should see the following four modules deployed and running on your edge device. Please note that the resource creation script deploys the AVA module along with IoT Edge modules (edgeAgent and edgeHub) and an RTSP simulator module to provide the simulated RTSP video feed.

    Deployed Modules

  5. With the modules deployed and set up, you are ready to run your first AVA pipeline on EFLOW. You can run a simple motion detection pipeline as below and visualize the results by executing the following steps:

    Video Analyzer based on motion detection

    1. Configure the Azure IoT Tools extension.

    2. Set the pipelineTopology, instantiate a livePipeline and activate it via these direct method calls.

    3. Observe the results on the Hub.

    4. Invoke clean up methods.

    5. Delete your resources if not needed further.

      Important

      Undeleted resources can still be active and incur Azure costs. Please ensure that you delete the resources you do not intend to use.

Next steps

  • Try motion detection along with recording relevant videos in the Cloud. Follow the steps from the detect motion and record video clips quickstart.

  • Use our VS Code extension to view additional pipelines.

  • Use an IP camera that supports RTSP instead of using the RTSP simulator. You can find IP cameras that support RTSP on the ONVIF conformant products page. Look for devices that conform with profiles G, S, or T.

  • Run AI on Live Video (you can skip the prerequisite setup as it has already been done above).

    Warning

    For advanced users who wish to run memory-intensive AI models like YOLO, you may have to increase the resources allotted to the EFLOW VM. First, exit the EFLOW VM and return to the Windows PowerShell terminal by typing exit. Then, run the command Set-EflowVM on PowerShell with elevated privilege. After running the command, input your desired parameters by following the prompts in PowerShell, for example cpuCount: 2, memoryInMB: 2048. After a few minutes, redeploy the Edge module(s) and reactivate the live pipeline to view inferences. If you are encountering connection issues (e.g., error 137 or 255 listed on IoT Hub), you may have to rerun this step.