ffmpegexecutableazure-virtual-machineazure-security

would like to run a third party executable on Azure VM


I would like to run ffmpeg.exe and process media files on Azure VM. Do I need to add the exe anywhere in the VM settings? I have copied ffmpeg.exe to Azure VM and trying to run a command, but ffmpeg.exe --help also not returning anything, no error either. Do I have to whitelist the .exe in order to run it on Azure VM?


Solution

  • sudo apt update
    sudo apt install ffmpeg
    

    enter image description here