Hi All,
I am new to cloud functions, and I’m trying to load the FFMPEG system package included in ubuntu (System Packages Included in Cloud Functions | Cloud Functions Documentation | Google Cloud)
Currently i am trying to load the FFMPEG system package like this: Process.Start(“ffmpeg”,“-i input.mp4 output.wav”); but i am getting this error (An error occurred trying to start process ‘ffmpeg’ with working directory ‘/layers/google.dotnet.publish/publish/bin’. No such file or directory).
I did this with python and it worked fine but i have a requirement to work with C#.
Thanks.