I have a basic Dockerfile
as follows:
FROM ubuntu:16.04
RUN apt-get update \
&& apt-get install -y pulseaudio alsa-utils alsa-base ffmpeg
On my host, I am able to record an audio file as follows:
ffmpeg -f pulse -i default -f wav out.wav
I would like to do the same inside the docker container.
How do I go about this?
Thanks!